@font-face {
  font-family: "Bodoni Moda";
  src: url("fonts/bodoni.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("fonts/spartan.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --focus: #1668b2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #efede7;
}

body[data-lens="impeccable"] .lens-taste,
body[data-lens="taste"] .lens-impeccable { display: none; }

img { max-width: 100%; }

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.lens {
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}

.lens ::selection {
  color: var(--paper);
  background: var(--accent);
}

.shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 132px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  min-width: 0;
}

.nav-links a {
  font-size: .82rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid var(--accent);
  border-radius: var(--control-radius, 0);
  color: var(--cta-ink);
  background: var(--accent);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.cta:hover { color: var(--accent); background: transparent; }
.cta:active { transform: translateY(1px); }

.cta-pending:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.cta-pending:disabled:hover {
  color: var(--cta-ink);
  background: var(--accent);
}

.cta-quiet {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.cta-quiet:hover { color: var(--paper); background: var(--ink); }

.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-title,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--display-weight, 600);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero p,
.section-intro,
.final-cta p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.micro-data {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .68rem;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-placeholder,
.media-placeholder {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--slot-ink);
  background: var(--slot);
}

.hero-placeholder::after,
.media-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle, currentColor 0 1px, transparent 1.2px);
  background-size: 7px 7px;
  opacity: .12;
}

.placeholder-copy {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  max-width: 30ch;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .65rem;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.proof-item {
  min-width: 0;
  padding: 28px clamp(20px, 4vw, 54px);
}

.proof-item + .proof-item { border-left: 1px solid var(--line); }

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
}

.proof-item span { color: var(--muted); font-size: .83rem; line-height: 1.4; }

.content-section {
  padding-block: clamp(88px, 12vw, 160px);
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .94;
}

.section-intro { margin-top: 22px; }

.quote-slot {
  position: relative;
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius, 0);
}

.quote-slot p {
  max-width: 30ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  line-height: 1.1;
}

.quote-slot span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--muted);
  font-size: .72rem;
}

.empty-note {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
}

.final-cta {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: min(720px, 85dvh);
  padding: clamp(70px, 11vw, 150px) max(24px, calc((100vw - 1232px) / 2));
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: .92;
}

.final-cta p { margin: 26px 0 34px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
}

/* V1: minimal y premium */
.v1 .impec {
  --paper: #e9e5dc;
  --ink: #163d57;
  --muted: #566875;
  --line: #95a3aa;
  --accent: #2f6f54;
  --cta-ink: #fff8ed;
  --slot: #cbc8c0;
  --slot-ink: #163d57;
  --display: "Bodoni Moda", serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 500;
  --card-radius: 0;
  --control-radius: 0;
}

.v1 .impec .site-nav { background: rgba(233, 229, 220, .96); }

.v1 .impec .hero {
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(0, 58%);
  align-items: stretch;
}

.v1 .impec .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 80px);
}

.v1 .impec .hero h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: .88;
}

.v1 .impec .hero-copy > p { max-width: 34ch; margin: 30px 0; }

.v1 .impec .sculpture-slot { min-height: 660px; border-left: 1px solid var(--line); }

.v1 .impec .coordinate {
  position: absolute;
  z-index: 1;
  padding: 12px;
}

.v1 .impec .coordinate.top { top: 12px; left: 12px; }
.v1 .impec .coordinate.bottom { right: 12px; bottom: 12px; text-align: right; }

.v1 .impec .editorial-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .65fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.v1 .impec .quote-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 58px;
}

.v1 .impec .quote-slot:first-child { grid-column: 1 / -1; min-height: 260px; }
.v1 .impec .video-slot { min-height: 520px; }

.v1 .impec .journey-ledger,
.v1 .taste .journey-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.v1 .impec .journey-ledger article,
.v1 .taste .journey-ledger article { padding: 26px 24px 40px 0; }
.v1 .impec .journey-ledger article + article,
.v1 .taste .journey-ledger article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.v1 .impec .journey-ledger h3,
.v1 .taste .journey-ledger h3 { margin: 0 0 13px; font: 500 1.5rem/1.05 var(--display); }
.v1 .impec .journey-ledger p,
.v1 .taste .journey-ledger p { margin: 0; color: var(--muted); line-height: 1.5; }

.v1 .taste {
  --paper: #eeebe4;
  --ink: #153f5b;
  --muted: #576b78;
  --line: #a3adb1;
  --accent: #35795a;
  --cta-ink: #fff9f1;
  --slot: #d0cdc6;
  --slot-ink: #153f5b;
  --display: "Bodoni Moda", serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 650;
  --card-radius: 0;
  --control-radius: 0;
}

.v1 .taste .site-nav { padding-inline: clamp(20px, 4vw, 60px); }

.v1 .taste .hero {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  padding: 28px clamp(20px, 4vw, 60px) 50px;
}

.v1 .taste .hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding-right: clamp(28px, 5vw, 70px);
}

.v1 .taste .hero h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: .9;
}

.v1 .taste .hero-copy > p { margin: 26px 0 30px; max-width: 36ch; }
.v1 .taste .product-slot { min-height: 620px; }

.v1 .taste .coordinate {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
}

.v1 .taste .reference-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(280px, calc(100% - 48px));
  padding: 20px;
  color: var(--paper);
  background: var(--ink);
}

.v1 .taste .reference-card strong { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 1.5rem; }

.v1 .taste .social-proof-layout {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 8vw, 110px);
}

.v1 .taste .testimonial-stack { display: grid; gap: 16px; }
.v1 .taste .quote-slot:nth-child(2) { margin-left: 12%; }
.v1 .taste .quote-slot:nth-child(3) { margin-right: 12%; }

.v1 .taste .service-statement {
  padding: clamp(80px, 12vw, 150px) 24px;
  color: var(--paper);
  background: var(--ink);
}

.v1 .taste .service-statement blockquote {
  width: min(1080px, 100%);
  margin: 0 auto;
  font: 550 clamp(3rem, 7vw, 6rem)/.95 var(--display);
  letter-spacing: -.035em;
}

.v1 .taste .service-statement em { color: var(--accent); font-style: normal; }

@media (prefers-reduced-motion: no-preference) {
  .lens .hero-copy { animation: copy-in .72s cubic-bezier(.16, 1, .3, 1) both; }
  .lens .hero-placeholder { animation: field-in .9s cubic-bezier(.16, 1, .3, 1) both; }
}

@keyframes copy-in {
  from { filter: blur(8px); transform: translateY(18px); }
  to { filter: blur(0); transform: translateY(0); }
}

@keyframes field-in {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0); }
}

/* V2: cálido y humano */
.v2 .impec {
  --paper: #eeeae1;
  --ink: #164b6c;
  --muted: #56666d;
  --line: #a7aaa5;
  --accent: #2f7d5b;
  --cta-ink: #fff8ed;
  --slot: #b9cad1;
  --slot-ink: #164b6c;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 650;
  --card-radius: 16px;
  --control-radius: 999px;
}

.v2 .impec .site-nav { background: rgba(238, 234, 225, .96); }

.v2 .impec .hero {
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: stretch;
  padding: 24px 24px 52px;
}

.v2 .impec .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(100% + 110px);
  padding: 50px 0 50px clamp(12px, 4vw, 58px);
}

.v2 .impec .hero h1 {
  max-width: 8ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: .92;
}

.v2 .impec .hero-copy > p {
  max-width: 31ch;
  margin: 28px 0;
  padding: 14px;
  color: var(--ink);
  background: rgba(238, 234, 225, .88);
  border-radius: 12px;
}

.v2 .impec .reunion-slot {
  min-height: 640px;
  border-radius: 16px;
}

.v2 .impec .route-line {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 8%;
  width: 78%;
  border-top: 2px dashed var(--accent);
  transform: rotate(-7deg);
}

.v2 .impec .arrival-stamp {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: 132px;
  padding: 18px 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font: 700 .72rem/1.25 ui-monospace, monospace;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.v2 .impec .story-grid {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 9vw, 120px);
}

.v2 .impec .story-quotes {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}

.v2 .impec .story-quotes .quote-slot:first-child { grid-row: span 2; min-height: 430px; }
.v2 .impec .story-quotes .quote-slot { background: #f6f2ea; }

.v2 .impec .care-sequence {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.v2 .impec .care-sequence article {
  min-height: 230px;
  padding: 28px;
  border-radius: 16px;
  background: #dbe2e1;
}

.v2 .impec .care-sequence article:nth-child(2) { color: #fff8ee; background: var(--accent); }
.v2 .impec .care-sequence h3 { margin: 0 0 12px; font: 650 1.6rem/1 var(--display); }
.v2 .impec .care-sequence p { margin: 0; line-height: 1.5; }

.v2 .taste {
  --paper: #f0ece4;
  --ink: #124968;
  --muted: #56666d;
  --line: #9fa8aa;
  --accent: #2b7656;
  --cta-ink: #fff8ed;
  --slot: #c7d3d5;
  --slot-ink: #124968;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 760;
  --card-radius: 16px;
  --control-radius: 999px;
}

.v2 .taste .hero {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
  padding: 30px clamp(20px, 4vw, 56px) 60px;
}

.v2 .taste .hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  width: calc(100% + 76px);
}

.v2 .taste .hero h1 { max-width: 8ch; font-size: clamp(3.7rem, 7.5vw, 6rem); line-height: .92; }
.v2 .taste .hero-copy > p { max-width: 30ch; margin: 26px 0 30px; }
.v2 .taste .documentary-slot { min-height: 620px; border-radius: 16px; }

.v2 .taste .trust-ribbon {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  max-width: 300px;
  padding: 18px 20px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(240, 236, 228, .92);
  font-size: .8rem;
  line-height: 1.45;
}

.v2 .taste .voices-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.v2 .taste .voice-feature { min-height: 520px; border-radius: 16px; }
.v2 .taste .voice-list { display: grid; gap: 14px; }

.v2 .taste .human-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  padding-block: clamp(90px, 13vw, 170px);
}

.v2 .taste .human-promise strong {
  display: block;
  max-width: 11ch;
  font: 700 clamp(3rem, 7vw, 6rem)/.95 var(--display);
  letter-spacing: -.035em;
}

.v2 .taste .human-promise p { max-width: 38ch; margin: 0; color: var(--muted); line-height: 1.6; }

/* V3: colorido e ilustrado */
.v3 .impec {
  --paper: #f0eddd;
  --ink: #0f5f91;
  --muted: #4f6f80;
  --line: #7e9aaa;
  --accent: #1e7f59;
  --cta-ink: #fff8ed;
  --slot: #a9cfe0;
  --slot-ink: #0f5f91;
  --display: "League Spartan", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 850;
  --card-radius: 0;
  --control-radius: 0;
}

.v3 .impec .site-nav { border-bottom-width: 3px; }

.v3 .impec .hero { min-height: 780px; padding: 44px clamp(24px, 5vw, 72px); }
.v3 .impec .hero-copy { position: absolute; z-index: 2; top: 9%; left: clamp(24px, 5vw, 72px); width: min(560px, 50%); }
.v3 .impec .hero h1 { max-width: 9ch; font-size: clamp(4.2rem, 9vw, 6rem); line-height: .84; text-transform: uppercase; }
.v3 .impec .hero-copy > p { max-width: 31ch; margin: 24px 0 28px; color: var(--ink); }

.v3 .impec .poster-slot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74%;
  height: 83%;
  box-shadow: inset 3px 0 var(--ink), inset 0 3px var(--ink);
}

.v3 .impec .poster-slot::before {
  position: absolute;
  top: 16%;
  left: 11%;
  width: 54%;
  height: 44%;
  border: 3px dashed var(--accent);
  content: "";
  transform: rotate(-10deg);
}

.v3 .impec .poster-label {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  color: var(--paper);
  background: var(--ink);
}

.v3 .impec .poster-label.origin { top: 16%; left: 10%; }
.v3 .impec .poster-label.destination { right: 8%; bottom: 18%; background: var(--accent); }

.v3 .impec .poster-proof {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.v3 .impec .poster-proof .quote-slot:first-child { min-height: 430px; color: var(--paper); background: var(--ink); }
.v3 .impec .poster-proof .quote-stack { display: grid; gap: 18px; }

.v3 .impec .route-poster {
  position: relative;
  min-height: 560px;
  padding: clamp(42px, 7vw, 90px);
  color: var(--paper);
  background: var(--accent);
}

.v3 .impec .route-poster h2 { max-width: 10ch; font: 850 clamp(3.2rem, 8vw, 6rem)/.85 var(--display); text-transform: uppercase; }
.v3 .impec .route-poster p { max-width: 34ch; margin: 24px 0 0; line-height: 1.5; }
.v3 .impec .route-poster .micro-data { position: absolute; right: 7%; bottom: 10%; max-width: 24ch; }

.v3 .taste {
  --paper: #f4f0df;
  --ink: #0d5788;
  --muted: #526f7d;
  --line: #8da4af;
  --accent: #247553;
  --cta-ink: #fff8ed;
  --slot: #b8d3dc;
  --slot-ink: #0d5788;
  --display: "League Spartan", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 780;
  --card-radius: 0;
  --control-radius: 0;
}

.v3 .taste .hero { min-height: 780px; padding: 50px clamp(24px, 5vw, 70px); }
.v3 .taste .hero-copy { position: relative; z-index: 3; width: min(580px, 49%); }
.v3 .taste .hero h1 { max-width: 10ch; font-size: clamp(4rem, 8vw, 6rem); line-height: .86; text-transform: uppercase; }
.v3 .taste .hero-copy > p { max-width: 29ch; margin: 24px 0 28px; color: var(--ink); }

.v3 .taste .campaign-slot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 88%;
  border: 3px solid var(--ink);
}

.v3 .taste .campaign-slot::before {
  position: absolute;
  top: 24%;
  right: 9%;
  width: 62%;
  border-top: 4px dashed var(--accent);
  content: "";
  transform: rotate(13deg);
}

.v3 .taste .poster-testimonials {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.v3 .taste .poster-testimonials .section-lead { padding: clamp(34px, 6vw, 74px); color: var(--paper); background: var(--ink); }
.v3 .taste .poster-testimonials .section-title { font-size: clamp(3rem, 7vw, 5.6rem); }
.v3 .taste .testimonial-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.v3 .taste .testimonial-collage .quote-slot:first-child { grid-column: 1 / -1; min-height: 260px; background: #fffaf0; }
.v3 .taste .testimonial-collage .quote-slot:nth-child(2) { background: var(--accent); color: var(--paper); }
.v3 .taste .testimonial-collage .quote-slot:nth-child(2) span { color: #fff8ed; }

.v3 .taste .global-map-placeholder {
  min-height: 560px;
  padding: clamp(48px, 9vw, 110px);
  color: var(--paper);
  background: var(--ink);
}

.v3 .taste .global-map-placeholder h2 { max-width: 10ch; margin: 0; font: 800 clamp(3rem, 7vw, 6rem)/.9 var(--display); text-transform: uppercase; }
.v3 .taste .global-map-placeholder p { max-width: 34ch; margin-top: 24px; line-height: 1.5; }

/* V4: corporativo clásico */
.v4 .impec {
  --paper: #0a2d43;
  --ink: #eef4f3;
  --muted: #b8cbd2;
  --line: #517084;
  --accent: #62a979;
  --cta-ink: #102f42;
  --slot: #315a70;
  --slot-ink: #eef4f3;
  --display: "Barlow Condensed", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 700;
  --card-radius: 0;
  --control-radius: 0;
  color-scheme: dark;
}

.v4 .impec .site-nav { background: #0a2d43; }
.v4 .impec .brand-lockup { padding: 4px 8px; background: #fff; }

.v4 .impec .hero { min-height: 760px; }
.v4 .impec .manifest-slot { position: absolute; inset: 0; }
.v4 .impec .manifest-slot::before { position: absolute; inset: 0 55% 0 0; z-index: 1; content: ""; background: rgba(7, 28, 40, .9); }
.v4 .impec .hero-copy { display: grid; align-content: center; justify-items: start; min-height: 760px; width: 48%; padding: 70px clamp(24px, 5vw, 70px); }
.v4 .impec .hero h1 { max-width: 8ch; font-size: clamp(4rem, 8vw, 6rem); line-height: .84; text-transform: uppercase; }
.v4 .impec .hero-copy > p { max-width: 31ch; margin: 26px 0 30px; color: var(--ink); }
.v4 .impec .manifest-code { position: absolute; z-index: 2; right: 22px; top: 22px; padding: 12px; border: 1px solid currentColor; }
.v4 .impec .manifest-status { position: absolute; z-index: 2; right: 22px; bottom: 22px; padding: 14px; color: #0a2d43; background: var(--accent); }

.v4 .impec .ops-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1px; margin-top: 58px; background: var(--line); }
.v4 .impec .ops-grid article { min-height: 230px; padding: 30px; background: var(--paper); }
.v4 .impec .ops-grid article:first-child { grid-row: span 2; min-height: 460px; }
.v4 .impec .ops-grid h3 { margin: 0 0 14px; font: 700 2rem/1 var(--display); text-transform: uppercase; }
.v4 .impec .ops-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.v4 .impec .dispatch-board { border-block: 1px solid var(--line); }
.v4 .impec .dispatch-row { display: grid; grid-template-columns: .65fr 1.35fr .8fr; gap: 20px; padding: 22px 0; }
.v4 .impec .dispatch-row + .dispatch-row { border-top: 1px solid var(--line); }

.v4 .taste {
  --paper: #e8eef0;
  --ink: #123d59;
  --muted: #506d7c;
  --line: #90a6b0;
  --accent: #438b65;
  --cta-ink: #001018;
  --slot: #446f85;
  --slot-ink: #eef4f3;
  --display: "Barlow Condensed", sans-serif;
  --body: "Bricolage Grotesque", sans-serif;
  --display-weight: 700;
  --card-radius: 0;
  --control-radius: 0;
}

.v4 .taste .hero { min-height: 760px; }
.v4 .taste .airport-slot { position: absolute; inset: 0; }
.v4 .taste .airport-slot::before { position: absolute; inset: 0 58% 0 0; z-index: 1; content: ""; background: rgba(11, 42, 59, .9); }
.v4 .taste .hero-copy { display: grid; align-content: center; justify-items: start; min-height: 760px; width: 45%; padding: 70px clamp(24px, 5vw, 70px); color: #f4f6f4; }
.v4 .taste .hero h1 { max-width: 8ch; font-size: clamp(3.9rem, 7.5vw, 6rem); line-height: .86; text-transform: uppercase; }
.v4 .taste .hero-copy > p { max-width: 30ch; margin: 26px 0 30px; color: #d7e2e5; }
.v4 .taste .flight-meta { position: absolute; z-index: 2; right: 24px; top: 24px; width: 240px; padding: 18px; border: 1px solid #dce9eb; color: #f4f6f4; }

.v4 .taste .confidence-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(34px, 8vw, 100px); }
.v4 .taste .confidence-list { display: grid; gap: 1px; background: var(--line); }
.v4 .taste .confidence-list article { padding: 28px; background: var(--paper); }
.v4 .taste .confidence-list h3 { margin: 0 0 10px; font: 700 1.75rem/1 var(--display); text-transform: uppercase; }
.v4 .taste .confidence-list p { margin: 0; color: var(--muted); line-height: 1.5; }

.v4 .taste .testimony-manifest { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 50px; background: var(--line); }
.v4 .taste .testimony-manifest .quote-slot { border: 0; background: var(--paper); }
.v4 .taste .testimony-manifest .quote-slot:first-child { grid-column: 1 / -1; min-height: 280px; }

@media (max-width: 740px) {
  .shell { width: min(100% - 28px, 1280px); }
  .site-nav { min-height: 64px; padding-inline: 14px; }
  .brand-logo { width: 104px; height: 36px; }
  .nav-links { display: none; }
  .hero { min-height: calc(100dvh - 64px); }
  .proof-band { grid-template-columns: 1fr; }
  .proof-item + .proof-item { border-top: 1px solid var(--line); border-left: 0; }
  .content-section { padding-block: 76px; }
  .section-title, .final-cta h2 { font-size: clamp(2.8rem, 15vw, 4.7rem); }
  .quote-slot { min-height: 180px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .hero-placeholder { width: 100%; max-width: 100%; }
  .hero-placeholder .micro-data {
    max-width: calc(100% - 28px);
    overflow-wrap: anywhere;
  }

  .v1 .impec .hero,
  .v1 .taste .hero,
  .v2 .impec .hero,
  .v2 .taste .hero { grid-template-columns: 1fr; }

  .v1 .impec .hero-copy,
  .v1 .taste .hero-copy,
  .v2 .impec .hero-copy,
  .v2 .taste .hero-copy { width: 100%; min-height: 470px; padding: 56px 14px; }

  .v1 .impec .sculpture-slot,
  .v1 .taste .product-slot,
  .v2 .impec .reunion-slot,
  .v2 .taste .documentary-slot { min-height: 68dvh; }

  .v1 .impec .editorial-proof,
  .v1 .taste .social-proof-layout,
  .v2 .impec .story-grid,
  .v2 .taste .voices-layout,
  .v2 .taste .human-promise { grid-template-columns: 1fr; }

  .v1 .impec .quote-wall,
  .v2 .impec .story-quotes,
  .v2 .impec .care-sequence { grid-template-columns: 1fr; }

  .v1 .impec .quote-slot:first-child,
  .v2 .impec .story-quotes .quote-slot:first-child { grid-column: auto; grid-row: auto; min-height: 220px; }

  .v1 .impec .video-slot,
  .v2 .taste .voice-feature { min-height: 56dvh; }

  .v1 .impec .journey-ledger,
  .v1 .taste .journey-ledger { grid-template-columns: 1fr; }
  .v1 .impec .journey-ledger article + article,
  .v1 .taste .journey-ledger article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .v1 .taste .quote-slot:nth-child(2),
  .v1 .taste .quote-slot:nth-child(3) { margin: 0; }
  .v1 .taste .service-statement blockquote { font-size: clamp(2.8rem, 14vw, 4.8rem); }
  .v1 .taste .hero h1 { font-size: 3rem; }

  .v3 .impec .hero,
  .v3 .taste .hero { min-height: 900px; padding-inline: 14px; }
  .v3 .impec .hero-copy,
  .v3 .taste .hero-copy { position: relative; top: auto; left: auto; width: 100%; }
  .v3 .impec .poster-slot,
  .v3 .taste .campaign-slot { width: 92%; height: 54%; }
  .v2 .impec .reunion-slot > .micro-data,
  .v2 .taste .documentary-slot > .micro-data,
  .v3 .impec .poster-slot > .micro-data,
  .v3 .taste .campaign-slot > .micro-data {
    right: 14px !important;
    max-width: 24ch;
    text-align: right;
  }
  .v3 .impec .poster-proof,
  .v3 .taste .poster-testimonials { grid-template-columns: 1fr; }
  .v3 .taste .testimonial-collage { grid-template-columns: 1fr; }
  .v3 .taste .testimonial-collage .quote-slot:first-child { grid-column: auto; }

  .v4 .impec .hero-copy,
  .v4 .taste .hero-copy { width: 72%; padding-inline: 20px; }
  .v4 .impec .manifest-slot::before,
  .v4 .taste .airport-slot::before { inset: 0 26% 0 0; }
  .v4 .impec .ops-grid,
  .v4 .taste .confidence-layout,
  .v4 .taste .testimony-manifest { grid-template-columns: 1fr; }
  .v4 .impec .ops-grid article:first-child,
  .v4 .taste .testimony-manifest .quote-slot:first-child { grid-column: auto; grid-row: auto; min-height: 260px; }
  .v4 .impec .dispatch-row { grid-template-columns: 1fr; }
  .v4 .taste .flight-meta { display: none; }
  .v4 .impec .manifest-code,
  .v4 .impec .manifest-status {
    right: 14px;
    max-width: calc(100% - 28px);
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
