:root {
  --teal-900: #075f5d;
  --teal-800: #0b706d;
  --teal-600: #0da19f;
  --gold: #a88a54;
  --gold-2: #d5bc89;
  --cream: #f7f4ee;
  --mint: #e9f4f1;
  --white: #ffffff;
  --ink: #243033;
  --muted: #687477;
  --line: #dfe7e4;
  --danger-soft: #fff5ec;
  --shadow: 0 22px 70px rgba(7, 95, 93, 0.13);
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Nunito Sans", sans-serif;
  --topbar-h: 38px;
  --header-h: 76px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] {
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 34px);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--topbar-h);
  background: var(--teal-900);
  color: var(--white);
  font-size: 0.86rem;
}
.topbar__inner, .header__inner, .section__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar__group { display: flex; gap: 18px; align-items: center; }
.topbar strong { color: var(--gold-2); }
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.topbar__actions a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--white);
}
.topbar__actions a:hover {
  background: rgba(255,255,255,.1);
}

.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 49;
  height: var(--header-h);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 95, 93, 0.12);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  color: var(--teal-900);
}
.brand img { width: 178px; height: 54px; object-fit: contain; border-radius: 0; }
.brand > span { display: none; }
.brand small { display: block; color: var(--gold); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.66rem; }
.nav { display: flex; align-items: center; gap: 22px; font-weight: 800; font-size: 0.92rem; }
.nav a { color: var(--teal-900); }
.nav a:hover { color: var(--gold); }
.nav .btn--primary,
.nav .btn--primary:hover {
  color: var(--white);
}
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal-800); color: var(--white); }
.btn--primary:hover { background: var(--teal-900); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--outline { border-color: rgba(7, 95, 93, 0.25); color: var(--teal-900); background: transparent; }
.btn--light { background: var(--white); color: var(--teal-900); }

.hero {
  color: var(--white);
}
.hero--home {
  min-height: min(780px, calc(100svh - 10px));
  display: grid;
  align-items: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 52px) 0 64px;
  background:
    linear-gradient(90deg, rgba(247,244,238,1) 0%, rgba(247,244,238,.96) 48%, rgba(233,244,241,.86) 48%, rgba(233,244,241,1) 100%),
    radial-gradient(circle at 12% 14%, rgba(168,138,84,.12), transparent 30%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.hero--home::before {
  content: "";
  position: absolute;
  inset: calc(var(--topbar-h) + var(--header-h) + 24px) auto auto 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,138,84,.48));
}
.hero--home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 58%;
  background: var(--teal-900);
  opacity: .08;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__layout {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, .72fr);
  gap: clamp(96px, 12vw, 168px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__portrait {
  align-self: center;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(7,95,93,.18);
  order: 2;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--white);
}
.hero__portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.58);
  z-index: 2;
  pointer-events: none;
}
.hero__portrait::after {
  display: none;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero__caption {
  position: static;
  z-index: 3;
  padding: 18px 22px;
  color: var(--teal-900);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.hero__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.hero__caption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.hero__content {
  padding: 0;
  color: var(--ink);
  order: 1;
  position: relative;
}
.hero__content::before {
  content: "Graciosa";
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: rgba(168,138,84,.28);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: .76;
}
.hero__content h1 {
  max-width: 690px;
  color: var(--teal-900);
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  letter-spacing: 0;
}
.hero__content .eyebrow {
  color: var(--gold);
}
.hero__content p {
  max-width: 600px;
  color: #4f5d60;
  font-size: 1.16rem;
}
.hero__content .btn--outline {
  background: rgba(255,255,255,.62);
  border-color: rgba(7,95,93,.28);
  color: var(--teal-900);
}
.hero__trust {
  display: grid;
  grid-template-columns: .7fr .7fr 1.15fr;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,95,93,.16);
  max-width: 660px;
}
.hero__trust div {
  min-height: 76px;
  padding: 15px 16px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
}
.hero__trust strong {
  display: block;
  color: var(--teal-900);
  font-size: 1.08rem;
  line-height: 1.2;
}
.hero__trust span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}
.hero__grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: block;
  width: fit-content;
  color: rgba(168,138,84,.82);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1, h2 { font-family: var(--font-display); }
h1 { font-size: clamp(2.35rem, 5vw, 5.2rem); margin-top: 20px; max-width: 860px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); color: var(--teal-900); }
h3 { font-size: 1.2rem; color: var(--teal-900); }
.hero p { max-width: 680px; font-size: 1.14rem; color: rgba(255,255,255,.88); }
.hero--home .hero__content p {
  color: #4f5d60;
}
.hero__actions, .section__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero__card {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); object-position: center 20%; }
.hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.fact { padding: 14px; background: var(--mint); border-radius: var(--radius); }
.fact strong { display: block; color: var(--teal-900); font-size: 1.25rem; }
.fact span { color: var(--muted); font-size: .9rem; }

section { padding: 88px 0; }
.section__head {
  max-width: 820px;
  margin-bottom: 38px;
  display: block;
}
.section__inner > .section__head {
  display: block;
}
.section__head .eyebrow {
  margin: 0 0 12px;
}
.section__head h2 {
  max-width: 760px;
}
.section__head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}
.section__head h2 + p {
  margin-top: 16px;
}
.section--white { background: var(--white); }
.section--mint { background: var(--mint); }
.section--cream { background: var(--cream); }
.section--soft { background: #f1f7f4; }
.section--dark { background: var(--teal-900); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .section__head p, .section--dark p { color: rgba(255,255,255,.78); }
.section--dark .eyebrow { color: rgba(213,188,137,.86); }

.services {
  counter-reset: service;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card, .review-card, .value-card, .info-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(36,48,51,.05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
  overflow-wrap: anywhere;
}
.service-card:hover, .review-card:hover, .value-card:hover, .info-card:hover {
  border-color: rgba(7,95,93,.26);
  box-shadow: 0 22px 55px rgba(7,95,93,.12);
}
.service-card {
  counter-increment: service;
  overflow: hidden;
}
.service-card::after {
  content: "0" counter(service);
  position: absolute;
  right: 18px;
  bottom: 4px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(7,95,93,.08);
}
.services .service-card:nth-child(2n) {
  background: #fbfaf6;
}
.services .service-card:nth-child(2) { margin-top: 18px; }
.services .service-card:nth-child(3) { margin-top: 36px; }
.services .service-card:nth-child(4) { margin-top: 54px; }
.service-card p, .review-card p, .value-card p, .info-card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  border: 1px solid rgba(7,95,93,.18);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.service-card:hover .icon {
  transform: translateY(-3px) rotate(-3deg);
  background: var(--teal-900);
  color: var(--white);
}

.notice {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--danger-soft);
  border: 1px solid #efd3b8;
  border-radius: var(--radius);
  color: #6b4b24;
  font-weight: 800;
}

.exams-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.exams-layout .section__head {
  margin-bottom: 0;
  display: block;
}
.exams-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.exam-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7,95,93,.14);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.84)),
    radial-gradient(circle at 18% 20%, rgba(13,161,159,.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(168,138,84,.2), transparent 30%);
  box-shadow: 0 14px 36px rgba(7,95,93,.08);
}
.exam-card::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(7,95,93,.2);
  background: rgba(255,255,255,.66);
}
.exam-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(7,95,93,.08);
  color: var(--teal-900);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.exam-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.exams-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -16px;
  padding: 15px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.72);
  color: var(--muted);
}
.exams-note strong {
  flex: 0 0 auto;
  color: var(--teal-900);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.split__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story p { color: var(--muted); }
.quote-line {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
  font-family: var(--font-display);
  color: var(--teal-900);
  font-size: 1.45rem;
}

.values, .reviews, .structure, .brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 1px; }
.review-card strong { color: var(--teal-900); }
.review-card {
  min-width: 310px;
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card__top small {
  display: block;
  color: var(--muted);
  font-size: .86rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--white);
  font-weight: 900;
}
.reviews--slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.reviews--slider .review-card {
  flex: 0 0 calc(33.333% - 11px);
  scroll-snap-align: start;
}
.reviews-showcase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  min-width: 0;
}
.reviews-showcase--ads {
  grid-template-columns: 300px 1fr;
}
.review-summary-card {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.review-summary-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #f2b84b;
  font-size: 1.5rem;
}
.review-summary-card__stars span {
  display: inline-block;
  animation: star-pop .55s var(--ease) both;
}
.review-summary-card__stars span:nth-child(2) { animation-delay: .08s; }
.review-summary-card__stars span:nth-child(3) { animation-delay: .16s; }
.review-summary-card__stars span:nth-child(4) { animation-delay: .24s; }
.review-summary-card__stars span:nth-child(5) { animation-delay: .32s; }
.review-summary-card h3 {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 2.45rem;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}
.review-summary-card small {
  font-size: 1.25rem;
  color: var(--muted);
  white-space: nowrap;
}
.review-summary-card p {
  color: var(--muted);
  margin: 12px 0 0;
}
.testimonials-mask {
  position: relative;
  height: 620px;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.testimonials-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  animation: testimonials-scroll var(--duration, 44s) linear infinite;
}
.testimonials-column:nth-child(2) { --duration: 46s; }
.testimonials-column:nth-child(3) { --duration: 40s; }
.testimonials-mask:hover .testimonials-column {
  animation-play-state: paused;
}
.testimonial-card {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 16px 34px rgba(7,95,93,.08);
  overflow-wrap: anywhere;
}
.testimonial-card p {
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.testimonial-card__author small {
  display: block;
  color: var(--muted);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--white);
  font-weight: 900;
}
.review-link { margin-top: 18px; display: inline-flex; color: var(--teal-800); font-weight: 900; }
.widget-slot {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px dashed rgba(7,95,93,.35);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  color: var(--muted);
}
.widget-slot strong { display: block; color: var(--teal-900); }

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}
.gallery img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: var(--radius); }
.gallery img:first-child { grid-row: span 2; min-height: 536px; }
.gallery img {
  filter: saturate(.92) contrast(.98);
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.gallery img:hover {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}

.form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.wa-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.wa-form h2 {
  font-family: var(--font-display);
  color: var(--teal-900);
  font-size: 1.8rem;
  margin: 0 0 16px;
}
.wa-form--ads {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 18px);
}
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-weight: 900; color: var(--teal-900); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 10px 12px;
  background: #fbfbfa;
  color: var(--ink);
}
.field textarea { min-height: 96px; resize: vertical; }

.map-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer {
  background: #053f3e;
  color: rgba(255,255,255,.78);
  padding: 42px 0;
}
.footer__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}
.footer img { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; }
.footer strong { color: var(--white); }
.footer-credit {
  margin: 0;
  color: rgba(255,255,255,.34);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: right;
}
.footer-credit a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-credit a:hover {
  color: rgba(255,255,255,.58);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37,211,102,.3);
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

.ads-hero {
  padding-top: calc(var(--topbar-h) + var(--header-h) + 44px);
  background: var(--teal-900);
  color: var(--white);
}
.ads-hero h1 { font-size: clamp(2.1rem, 4vw, 4.2rem); }
.ads-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 40px;
  align-items: start;
}
.quick-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.quick-list span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 12px; font-weight: 800; }
.ads-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.14);
}
.ads-trust span {
  padding: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}
.ads-trust strong {
  display: block;
  color: var(--white);
}
.cred-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cred-strip span {
  background: var(--white);
  padding: 20px;
  color: var(--muted);
}
.cred-strip strong {
  display: block;
  color: var(--teal-900);
  font-size: 1.08rem;
}

.brand-hero {
  padding-top: calc(var(--topbar-h) + var(--header-h) + 56px);
  background: var(--cream);
}
.swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.swatch { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.swatch__color { height: 120px; }
.swatch__body { padding: 14px; font-weight: 900; }
.mockups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mockup {
  min-height: 360px;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mockup--post { aspect-ratio: 1/1; background: var(--teal-900); color: var(--white); }
.mockup--story { aspect-ratio: 9/16; background: var(--mint); }
.mockup--sign { background: var(--white); border: 10px solid var(--teal-900); }
.mockup h3 { font-family: var(--font-display); font-size: 2rem; color: inherit; }
.mockup img { width: 74px; height: 74px; object-fit: cover; border-radius: 50%; }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-item summary {
  cursor: pointer;
  color: var(--teal-900);
  font-weight: 900;
}
.faq-item p {
  color: var(--muted);
  margin: 10px 0 0;
}

.brand-manual .section__head {
  max-width: 900px;
}
.manual-hero {
  padding: calc(var(--topbar-h) + var(--header-h) + 70px) 0 82px;
  background:
    linear-gradient(135deg, rgba(7,95,93,.96), rgba(7,95,93,.82)),
    url("../assets/photos/photo-08.jpeg") center/cover;
  color: var(--white);
}
.manual-hero h1 {
  color: var(--white);
}
.manual-hero p {
  color: rgba(255,255,255,.82);
  max-width: 690px;
}
.manual-hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.manual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.manual-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
  font-size: .86rem;
}
.manual-cover {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--teal-900);
  box-shadow: var(--shadow);
}
.manual-cover img {
  width: 100%;
  border-radius: var(--radius);
}
.manual-cover strong {
  max-width: 260px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.12;
}
.manual-principles,
.voice-grid,
.rules-grid,
.content-pillars,
.physical-grid,
.print-grid {
  display: grid;
  gap: 16px;
}
.manual-principles,
.content-pillars {
  grid-template-columns: repeat(4, 1fr);
}
.voice-grid,
.rules-grid,
.print-grid {
  grid-template-columns: repeat(3, 1fr);
}
.manual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
}
.manual-card > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.manual-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.swatches--manual {
  grid-template-columns: repeat(6, 1fr);
}
.swatch__body small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.logo-system {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 16px;
  margin-bottom: 18px;
}
.logo-tile {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.logo-tile--dark {
  background: var(--teal-900);
  color: var(--white);
}
.logo-tile img {
  max-height: 120px;
  width: fit-content;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}
.logo-tile strong {
  display: block;
  margin-top: auto;
  color: inherit;
  font-size: 1.15rem;
}
.logo-tile span {
  color: var(--muted);
}
.logo-tile--dark span {
  color: rgba(255,255,255,.72);
}
.manual-subhead {
  margin-top: 58px;
  margin-bottom: 24px;
}
.post-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ig-post {
  min-height: 410px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(7,95,93,.14);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7,95,93,.08);
}
.ig-post h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}
.ig-post p {
  color: inherit;
  opacity: .78;
}
.ig-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 900;
}
.ig-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.ig-post--authority {
  background: var(--teal-900);
  color: var(--white);
}
.ig-post--photo {
  padding: 0;
  background: var(--teal-900);
  color: var(--white);
}
.ig-post--photo img {
  height: 62%;
  width: 100%;
  object-fit: cover;
}
.ig-post--photo div {
  padding: 22px;
}
.ig-post--review {
  background: var(--cream);
  color: var(--teal-900);
}
.ig-post--review span {
  color: #f2b84b;
  letter-spacing: 2px;
}
.ig-post--service {
  background: var(--gold);
  color: var(--white);
}
.ig-post--minimal {
  align-items: flex-start;
  background: var(--white);
  color: var(--teal-900);
}
.ig-post--minimal img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
}
.ig-post--checklist {
  background: var(--mint);
  color: var(--teal-900);
}
.ig-post--checklist ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 800;
}
.story-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.story-frame {
  min-height: 560px;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--teal-900);
  color: var(--white);
  box-shadow: var(--shadow);
}
.story-frame img {
  width: calc(100% + 44px);
  height: 58%;
  margin: -22px -22px 20px;
  object-fit: cover;
}
.story-frame span {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
}
.story-frame h3 {
  color: inherit;
  font-family: var(--font-display);
  font-size: 2rem;
}
.story-frame strong {
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--teal-900);
}
.story-frame--light {
  background: var(--white);
  color: var(--teal-900);
}
.story-frame--light strong {
  background: var(--teal-900);
  color: var(--white);
}
.story-frame--gold {
  background: var(--gold);
}
.physical-grid {
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
}
.signage {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 10px solid var(--teal-900);
  border-radius: var(--radius);
  background: var(--white);
}
.signage--front {
  background: var(--cream);
}
.signage img {
  max-width: 230px;
  border-radius: var(--radius);
}
.signage p {
  color: var(--muted);
}
.signage span {
  color: var(--gold);
  font-weight: 900;
}
.print-piece {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    radial-gradient(circle at 100% 0%, rgba(168,138,84,.22), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
}
.print-piece span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.print-piece p {
  color: var(--muted);
}
.paper-system {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.paper {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7,95,93,.08);
  overflow: hidden;
}
.paper--prescription {
  padding: 28px;
}
.paper__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.paper__head img {
  max-width: 210px;
  max-height: 70px;
  object-fit: contain;
  border-radius: var(--radius);
}
.paper__head span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  text-align: right;
}
.paper__lines {
  display: grid;
  gap: 18px;
  padding: 34px 0 46px;
}
.paper__lines i {
  display: block;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(7,95,93,.18), rgba(7,95,93,.18) 12px, transparent 12px, transparent 18px);
}
.paper__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.paper__footer strong {
  color: var(--teal-900);
}
.paper--card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.82)),
    radial-gradient(circle at 100% 0, rgba(168,138,84,.2), transparent 38%);
}
.paper--card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}
.paper--card p {
  color: var(--muted);
}
.paper__date {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.paper__date span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.paper__date strong {
  color: var(--teal-900);
  font-size: 1.4rem;
}
.paper--folder {
  grid-column: 1 / -1;
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  gap: 1px;
}
.folder-panel {
  padding: 28px;
  background: var(--white);
}
.folder-panel--cover {
  background: var(--teal-900);
  color: var(--white);
}
.folder-panel--cover h3,
.folder-panel--cover p {
  color: inherit;
}
.folder-panel img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin-bottom: 48px;
}
.folder-panel span {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}
.folder-panel strong {
  display: block;
  color: var(--teal-900);
  font-size: 1.15rem;
}
.folder-panel h4 {
  margin: 0 0 14px;
  color: var(--teal-900);
  font-size: 1.45rem;
}
.folder-panel p {
  color: var(--muted);
}
.paper--vaccine {
  padding: 26px;
}
.vaccine-table {
  display: grid;
  gap: 1px;
  margin: 24px 0;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.vaccine-table div {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 1px;
}
.vaccine-table strong,
.vaccine-table span {
  padding: 12px;
  background: var(--white);
}
.vaccine-table strong {
  color: var(--teal-900);
}
.vaccine-table span {
  color: var(--muted);
}
.paper--vaccine p {
  color: var(--muted);
}
.print-grid--support {
  margin-top: 18px;
}
.paper__downloads {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.paper__downloads a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--teal-900);
  color: var(--white);
  font-weight: 900;
  font-size: .86rem;
}
.paper__downloads a:first-child {
  background: transparent;
  color: var(--teal-900);
  border: 1px solid rgba(7,95,93,.24);
}
.paper__downloads--folder {
  grid-column: 1 / -1;
  padding: 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.delivery-page {
  background: var(--cream);
  overflow-x: hidden;
}
.delivery-hero {
  padding: 92px 0 80px;
  background: var(--teal-900);
  color: var(--white);
}
.verso-mark {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.delivery-hero h1 {
  max-width: 900px;
  color: var(--white);
}
.delivery-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
}
.delivery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.delivery-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.delivery-card,
.delivery-preview,
.delivery-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
}
.delivery-steps article,
.delivery-anatomy article,
.delivery-access article,
.delivery-stack article,
.delivery-materials article {
  position: relative;
  overflow: hidden;
}
.delivery-steps article::before,
.delivery-access article::before,
.delivery-stack article::before,
.delivery-materials article::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 8.5;
  margin: -28px -28px 20px;
  background:
    linear-gradient(135deg, rgba(7,95,93,.7), rgba(213,188,137,.45)),
    var(--delivery-image, url("../assets/photos/photo-18.jpeg")) center / cover;
}
.delivery-access article::before {
  margin: -24px -26px 18px;
}
.delivery-stack article::before {
  margin: -24px -28px 18px;
}
.delivery-materials article::before {
  margin: -24px -26px 16px;
}
.delivery-steps article:nth-child(1),
.delivery-access article:nth-child(1),
.delivery-stack article:nth-child(1),
.delivery-materials article:nth-child(1) {
  --delivery-image: url("../assets/photos/photo-18.jpeg");
}
.delivery-steps article:nth-child(2),
.delivery-access article:nth-child(2),
.delivery-stack article:nth-child(2),
.delivery-materials article:nth-child(2) {
  --delivery-image: url("../assets/photos/photo-21.jpeg");
}
.delivery-steps article:nth-child(3),
.delivery-access article:nth-child(3),
.delivery-stack article:nth-child(3),
.delivery-materials article:nth-child(3) {
  --delivery-image: url("../assets/logos/logo-horizontal.jpeg");
}
.delivery-steps article:nth-child(4),
.delivery-access article:nth-child(4),
.delivery-stack article:nth-child(4),
.delivery-materials article:nth-child(4) {
  --delivery-image: url("../assets/photos/photo-20.jpeg");
}
.delivery-steps article:nth-child(5),
.delivery-materials article:nth-child(5) {
  --delivery-image: url("../assets/photos/photo-19.jpeg");
}
.delivery-steps article:nth-child(6),
.delivery-materials article:nth-child(6) {
  --delivery-image: url("../assets/photos/photo-22.jpeg");
}
.delivery-materials article::before,
.delivery-stack article:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(247,244,238,.72), rgba(233,244,241,.76)),
    var(--delivery-image) center / cover;
}
.delivery-card > span,
.delivery-steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.delivery-card p,
.delivery-preview p,
.delivery-steps p {
  color: var(--muted);
}
.delivery-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.delivery-preview strong {
  color: var(--teal-900);
  font-size: 1.2rem;
}
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.delivery-steps--six {
  grid-template-columns: repeat(3, 1fr);
}
.delivery-steps--three {
  grid-template-columns: repeat(3, 1fr);
}
.delivery-steps article h3 {
  margin: 4px 0 8px;
  color: var(--teal-900);
  font-size: 1.12rem;
}
.delivery-anatomy {
  display: grid;
  gap: 18px;
}
.delivery-anatomy article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 240px 28px 30px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
  min-height: 188px;
}
.delivery-anatomy article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 180px;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(7,95,93,.28), rgba(213,188,137,.18)),
    var(--delivery-image, url("../assets/photos/photo-18.jpeg")) center / cover;
}
.delivery-anatomy article:nth-child(1) { --delivery-image: url("../assets/photos/photo-18.jpeg"); }
.delivery-anatomy article:nth-child(2) { --delivery-image: url("../assets/photos/photo-20.jpeg"); }
.delivery-anatomy article:nth-child(3) { --delivery-image: url("../assets/photos/photo-21.jpeg"); }
.delivery-anatomy article:nth-child(4) { --delivery-image: url("../assets/logos/logo-horizontal.jpeg"); }
.delivery-anatomy article:nth-child(5) { --delivery-image: url("../assets/photos/photo-22.jpeg"); }
.delivery-anatomy article:nth-child(6) { --delivery-image: url("../assets/photos/photo-19.jpeg"); }
.delivery-anatomy article:nth-child(7) { --delivery-image: url("../assets/photos/photo-18.jpeg"); }
.delivery-anatomy article:nth-child(8) { --delivery-image: url("../assets/photos/photo-21.jpeg"); }
.delivery-anatomy article:nth-child(9) { --delivery-image: url("../assets/logos/logo-round-teal.jpeg"); }
.delivery-anatomy article:nth-child(10) { --delivery-image: url("../assets/photos/photo-20.jpeg"); }
.delivery-anatomy article:nth-child(11) { --delivery-image: url("../assets/photos/photo-22.jpeg"); }
.delivery-anatomy article:nth-child(12) { --delivery-image: url("../assets/photos/photo-19.jpeg"); }
.delivery-anatomy article:nth-child(13) { --delivery-image: url("../assets/logos/logo-horizontal.jpeg"); }
.delivery-anatomy article:nth-child(14) { --delivery-image: url("../assets/photos/photo-20.jpeg"); }
.delivery-anatomy article:nth-child(15) { --delivery-image: url("../assets/photos/photo-18.jpeg"); }
.delivery-anatomy article:nth-child(4n)::after,
.delivery-anatomy article:nth-child(9)::after,
.delivery-anatomy article:nth-child(13)::after {
  background:
    linear-gradient(135deg, rgba(247,244,238,.72), rgba(233,244,241,.8)),
    var(--delivery-image) center / contain no-repeat;
  border: 1px solid var(--line);
}
.delivery-anatomy article > span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  padding-top: 6px;
  border-top: 2px solid var(--gold);
  display: inline-block;
}
.delivery-anatomy h3 {
  margin: 0 0 10px;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.25;
}
.delivery-anatomy p {
  margin: 0;
  color: var(--ink);
}
.delivery-access {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.delivery-access article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
}
.delivery-access h3 {
  margin: 0 0 8px;
  color: var(--teal-900);
  font-size: 1.1rem;
}
.delivery-access p {
  margin: 0 0 12px;
  color: var(--muted);
}
.access-link {
  display: inline-block;
  color: var(--teal-800);
  font-weight: 800;
  border-bottom: 1px solid rgba(7,95,93,.3);
  padding-bottom: 2px;
  word-break: break-all;
}
.access-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.delivery-checklist {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
}
.delivery-checklist h3 {
  margin: 0 0 14px;
  color: var(--teal-900);
  font-size: 1.12rem;
}
.delivery-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.delivery-checklist li {
  color: var(--ink);
  padding-left: 4px;
}
.delivery-checklist li strong {
  color: var(--gold);
  margin-right: 6px;
}
.delivery-checklist--cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.delivery-checklist--cols ul li {
  list-style: disc;
  margin-left: 18px;
}
.delivery-checklist--cols h3 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.delivery-stack {
  display: grid;
  gap: 16px;
}
.delivery-stack article {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
}
.delivery-stack h3 {
  margin: 0 0 8px;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.18rem;
}
.delivery-stack p {
  margin: 0;
  color: var(--ink);
}
.delivery-materials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.delivery-materials article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 14px 38px rgba(7,95,93,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.delivery-materials strong {
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.delivery-materials p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}
.delivery-signoff {
  text-align: center;
}
.delivery-signoff .section__head {
  max-width: 760px;
  margin: 0 auto;
}
.delivery-meta--light {
  justify-content: center;
  margin-top: 32px;
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal:nth-child(2n) { transform: translateX(34px); }
.reveal:nth-child(3n) { transform: translateX(-34px); }
.reveal.active { opacity: 1; transform: none; }

@keyframes testimonials-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes star-pop {
  from { opacity: 0; transform: scale(.45); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .hero__grid, .split, .form-wrap, .ads-grid, .exams-layout { grid-template-columns: 1fr; }
  .hero--home {
    background:
      linear-gradient(180deg, rgba(233,244,241,.88), rgba(247,244,238,1)),
      var(--cream);
  }
  .hero--home::before,
  .hero--home::after {
    display: none;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero__portrait {
    min-height: 420px;
    order: 2;
    border-radius: var(--radius);
  }
  .hero__content {
    order: 2;
    padding: 0;
  }
  .hero__portrait {
    order: 1;
  }
  .services .service-card:nth-child(2),
  .services .service-card:nth-child(3),
  .services .service-card:nth-child(4) {
    margin-top: 0;
  }
  .hero__card { max-width: 520px; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .values, .reviews, .structure, .brand-grid, .mockups { grid-template-columns: 1fr 1fr; }
  .manual-hero__grid,
  .logo-system {
    grid-template-columns: 1fr;
  }
  .manual-principles,
  .content-pillars,
  .swatches--manual,
  .post-showcase,
  .physical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .voice-grid,
  .rules-grid,
  .print-grid,
  .paper-system,
  .story-board {
    grid-template-columns: 1fr;
  }
  .paper--folder {
    grid-template-columns: 1fr;
  }
  .story-frame {
    min-height: 500px;
    max-width: 360px;
  }
  .delivery-grid,
  .delivery-steps,
  .delivery-steps--six,
  .delivery-steps--three,
  .delivery-access,
  .delivery-materials,
  .delivery-checklist--cols {
    grid-template-columns: 1fr;
  }
  .delivery-anatomy article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
    min-height: 0;
  }
  .delivery-anatomy article::after {
    position: static;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    order: -1;
    margin-bottom: 4px;
  }
}

@media (max-width: 767px) {
  :root { --topbar-h: 84px; --header-h: 64px; }
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .topbar {
    font-size: .74rem;
  }
  .topbar__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 6px;
    padding: 7px 0;
  }
  .topbar__group {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    line-height: 1.18;
    text-align: center;
  }
  .topbar__group span {
    max-width: 100%;
    min-width: 0;
  }
  .topbar__group span:first-child {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
    font-size: .72rem;
  }
  .topbar__group span:nth-child(2) {
    display: block;
    width: 100%;
    font-size: .68rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .topbar__actions {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .topbar__actions a {
    min-width: 0;
    min-height: 28px;
    justify-content: center;
    padding: 0 8px;
    font-size: .72rem;
  }
  .topbar__actions a[href^="tel"] { display: none; }
  .header__inner {
    gap: 10px;
  }
  .brand img {
    width: 142px;
    height: 44px;
  }
  .brand span span { display: none; }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--topbar-h) + var(--header-h) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--teal-900);
  }
  .hero, .ads-hero, .brand-hero { padding-bottom: 56px; }
  .hero--home {
    min-height: auto;
    padding-top: calc(var(--topbar-h) + var(--header-h) + 28px);
    padding-bottom: 46px;
    background:
      linear-gradient(180deg, rgba(233,244,241,.8), rgba(247,244,238,1)),
      var(--cream);
  }
  .hero__grid, .hero__layout, .topbar__inner, .header__inner, .section__inner, .footer__inner { width: min(100% - 28px, 1160px); }
  .hero__layout {
    gap: 24px;
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .hero__portrait {
    min-height: 0;
    aspect-ratio: 4 / 4.35;
    border-radius: var(--radius);
    order: 2;
  }
  .hero__portrait::before { inset: 12px; }
  .hero__caption {
    padding: 16px 18px;
  }
  .hero__content::before {
    margin-bottom: 14px;
    font-size: clamp(2rem, 12vw, 3.35rem);
  }
  .hero__content {
    padding: 0;
    order: 1;
    max-width: 100%;
    min-width: 0;
  }
  .hero__content h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.32rem);
    max-width: 10.5ch;
  }
  .hero--home .hero__content p {
    font-size: 1rem;
    max-width: 32ch;
  }
  .hero__actions {
    gap: 10px;
  }
  .hero__trust {
    grid-template-columns: 1fr 1fr;
  }
  .hero__trust div {
    min-height: 68px;
    padding: 12px;
  }
  .hero__trust div:nth-child(3) {
    grid-column: 1 / -1;
  }
  h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  h2 { font-size: clamp(1.72rem, 8vw, 2.35rem); }
  .section__inner > .section__head {
    display: block;
  }
  .hero__actions, .section__actions, .map-actions { flex-direction: column; }
  .btn { width: 100%; }
  section { padding: 62px 0; }
  .services, .values, .reviews, .structure, .brand-grid, .mockups, .swatches, .quick-list { grid-template-columns: 1fr; }
  .ads-trust { grid-template-columns: 1fr 1fr; }
  .manual-principles,
  .content-pillars,
  .swatches--manual,
  .post-showcase,
  .physical-grid {
    grid-template-columns: 1fr;
  }
  .manual-hero {
    padding-top: calc(var(--topbar-h) + var(--header-h) + 48px);
  }
  .manual-cover {
    min-height: 330px;
    padding: 22px;
  }
  .manual-cover strong {
    font-size: 1.6rem;
  }
  .ig-post {
    min-height: 340px;
  }
  .story-frame {
    min-height: 520px;
    max-width: none;
  }
  .signage {
    min-height: 260px;
    border-width: 7px;
  }
  .paper {
    min-height: auto;
  }
  .paper__head,
  .paper__footer,
  .paper__date {
    display: block;
  }
  .paper__head span,
  .paper__footer span {
    display: block;
    margin-top: 10px;
    text-align: left;
  }
  .paper__date strong {
    display: block;
    margin-top: 8px;
  }
  .vaccine-table {
    font-size: .86rem;
  }
  .delivery-hero {
    padding: 58px 0 54px;
  }
  .delivery-meta {
    display: grid;
  }
  .exams-list { grid-template-columns: 1fr; }
  .exam-card { min-height: 168px; }
  .exams-note {
    display: block;
    margin-top: 2px;
  }
  .exams-note strong {
    display: block;
    margin-bottom: 4px;
  }
  .services .service-card:nth-child(2n) { margin-top: 0; }
  .reviews--slider .review-card { flex-basis: 88%; }
  .reviews-showcase, .reviews-showcase--ads { grid-template-columns: 1fr; }
  .review-summary-card { padding: 22px 18px; }
  .review-summary-card h3 { font-size: 2.1rem; }
  .review-summary-card small { font-size: 1rem; }
  .testimonials-mask { height: 520px; }
  .testimonials-columns { grid-template-columns: 1fr; }
  .testimonials-column:nth-child(2), .testimonials-column:nth-child(3) { display: none; }
  .testimonial-card { padding: 18px; }
  .cred-strip { grid-template-columns: 1fr; }
  .wa-form--ads { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img:first-child { grid-row: auto; min-height: 300px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer-credit {
    text-align: left;
    margin-top: 10px;
  }
  .delivery-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(1.95rem, 9vw, 2.38rem);
  }
  .delivery-hero p {
    max-width: 34ch;
    font-size: 1rem;
  }
  .delivery-hero .section__inner {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .delivery-meta span {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 18px;
    font-size: .82rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .verso-mark {
    max-width: 24ch;
    white-space: normal;
    line-height: 1.35;
  }
}
