:root {
  
  --navy:          #0D315E;   
  --navy-deep:     #092446;
  --ink:           #0F2340;   
  --ink-muted:     #5A6478;   
  --accent:        #745727;   
  --accent-bright: #C9A961;   
  --accent-on-navy:#F0D9A0;   
  --cream:         #FFF8CF;   
  --paper:         #FBF9F4;   
  --white:         #FFFFFF;
  --line:          #E4DFD3;   
  --line-navy:     rgba(201,169,97,.28);
  --success:       #2E6B4F;

  
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script:  "Pinyon Script", "Cormorant Garamond", cursive;

  --t-h1:   clamp(2.75rem, 6.2vw, 4.75rem);
  --t-h2:   clamp(2rem, 4vw, 3rem);
  --t-h3:   clamp(1.375rem, 2.2vw, 1.75rem);
  --t-h4:   1.125rem;
  --t-body: 1rem;
  --t-lede: clamp(1.0625rem, 1.5vw, 1.1875rem);
  --t-sm:   .875rem;
  --t-xs:   .75rem;

  
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  --wrap:   1200px;
  --wrap-n: 760px;          
  --radius: 4px;
  --dur:    220ms;
  --ease:   cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

a { color: inherit; }

button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.15; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--cream);
  padding: var(--sp-2) var(--sp-3); font-size: var(--t-sm); font-weight: 600;
}
.skip:focus { left: var(--sp-2); top: var(--sp-2); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.wrap--narrow { max-width: var(--wrap-n); }

.section { padding-block: var(--sp-6); }
.section--tight { padding-block: var(--sp-5); }
.section--lg    { padding-block: var(--sp-7); }

.stack { display: flex; flex-direction: column; gap: var(--sp-2); }
.stack--lg     { gap: var(--sp-3); }
.stack--center { align-items: center; text-align: center; }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.row--lg     { gap: var(--sp-4); }
.row--center { justify-content: center; align-items: center; }
.row--between{ justify-content: space-between; align-items: center; }
.row--top    { align-items: flex-start; }
.row--middle { align-items: center; }

.col     { flex: 1 1 100%; min-width: 0; }
.col--2  { flex: 1 1 calc(50% - var(--sp-3)); min-width: 280px; }
.col--3  { flex: 1 1 calc(33.333% - var(--sp-3)); min-width: 260px; }
.col--4  { flex: 1 1 calc(25% - var(--sp-3)); min-width: 210px; }
.col--5  { flex: 1 1 calc(41.666% - var(--sp-3)); min-width: 280px; }
.col--7  { flex: 1 1 calc(58.333% - var(--sp-3)); min-width: 300px; }

.section--paper  { background: var(--paper); }
.section--white  { background: var(--white); }
.section--invert {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.section--invert::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(38deg,  rgba(255,255,255,.030) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-52deg, rgba(0,0,0,.055)      0 1px, transparent 1px 10px);
  pointer-events: none;
}
.section--invert::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(201,169,97,.16), transparent 62%),
    radial-gradient(90% 80% at 88% 96%, rgba(120,170,220,.10), transparent 60%);
  pointer-events: none;
}
.section--invert > * { position: relative; z-index: 1; }
.section--invert .lede,
.section--invert .text { color: rgba(255,248,207,.84); }
.section--invert .eyebrow { color: var(--accent-on-navy); }

.h1, .h2, .h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
.h1 { font-size: var(--t-h1); line-height: 1.02; }
.h2 { font-size: var(--t-h2); line-height: 1.08; }
.h3 { font-size: var(--t-h3); line-height: 1.2; }
.h4 {
  font-family: var(--font-body);
  font-size: var(--t-h4); font-weight: 600; line-height: 1.35;
  letter-spacing: -.005em;
}

.script { font-family: var(--font-script); font-weight: 400; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: var(--sp-2);
}

.eyebrow::after {
  content: ""; width: 46px; height: 1px; flex: none;
  background: currentColor; opacity: .5;
}
.stack--center .eyebrow { justify-content: center; }
.stack--center .eyebrow::before {
  content: ""; width: 46px; height: 1px; flex: none;
  background: currentColor; opacity: .5;
}

.lede { font-size: var(--t-lede); color: var(--ink-muted); line-height: 1.65; max-width: 62ch; }
.text { color: var(--ink-muted); }
.text--sm { font-size: var(--t-sm); }
.stack--center .lede { margin-inline: auto; }

.prose > * + * { margin-top: var(--sp-3); }
.prose h2 { font-family: var(--font-display); font-size: var(--t-h3); margin-top: var(--sp-5); }
.prose h3 { font-family: var(--font-body); font-size: var(--t-h4); margin-top: var(--sp-4); }
.prose p, .prose li { color: var(--ink-muted); }
.prose ul { padding-left: 1.25rem; list-style: disc; }
.prose li + li { margin-top: var(--sp-1); }
.prose a { color: var(--accent); text-underline-offset: 3px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px;                      
  padding: .85rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--t-sm); font-weight: 600; letter-spacing: .04em;
  text-decoration: none; text-align: center;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy); color: var(--cream); }
.btn--primary:hover { background: var(--navy-deep); }

.btn--gold { background: var(--accent-bright); color: var(--navy); }
.btn--gold:hover { background: #D9BC7C; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: var(--white); }

.btn--on-navy { background: transparent; color: var(--cream); border-color: var(--line-navy); }
.btn--on-navy:hover { background: rgba(255,248,207,.10); border-color: var(--accent-bright); }

.btn--wa { background: var(--success); color: var(--white); }
.btn--wa:hover { background: #24563E; }

.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: .6rem 1.15rem; font-size: var(--t-xs); }

.link {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px;
  font-size: var(--t-sm); font-weight: 600; letter-spacing: .04em;
  color: var(--accent); text-decoration: none;
}
.link svg { transition: transform var(--dur) var(--ease); }
.link:hover svg { transform: translateX(4px); }
.section--invert .link { color: var(--accent-on-navy); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,244,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  min-height: 72px;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 46px; width: auto; flex: none; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--sp-3); list-style: none; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: var(--t-sm); font-weight: 500; letter-spacing: .02em;
  text-decoration: none; color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link[aria-current="page"] { color: var(--navy); border-bottom-color: var(--accent-bright); }

.header__actions { display: flex; align-items: center; gap: var(--sp-2); }

.lang { display: flex; align-items: center; gap: .25rem; font-size: var(--t-xs); font-weight: 600; }
.lang a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; min-height: 44px; padding-inline: .3rem;
  text-decoration: none; color: var(--ink-muted); letter-spacing: .06em;
}
.lang a[aria-current="true"] { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.lang span { color: var(--line); }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius);
}
.burger__bars { position: relative; width: 20px; height: 2px; background: var(--navy); display: block; }
.burger__bars::before, .burger__bars::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy);
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.burger__bars::before { top: -6px; }
.burger__bars::after  { top: 6px; }

.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy); color: var(--cream);
  display: flex; flex-direction: column;
  padding: var(--sp-3);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.drawer[data-open="true"] { transform: translateX(0); visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }

.drawer .brand img { height: 42px; }
.footer .brand img { height: 54px; }
.drawer__close {
  width: 48px; height: 48px; background: transparent;
  border: 1px solid var(--line-navy); border-radius: var(--radius); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
}
.drawer__list { list-style: none; margin-top: var(--sp-4); display: flex; flex-direction: column; }
.drawer__link {
  display: flex; align-items: center; gap: var(--sp-2);
  min-height: 60px; padding-block: .5rem;
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 500;
  text-decoration: none; color: var(--cream);
  border-bottom: 1px solid var(--line-navy);
}
.drawer__link span { font-family: var(--font-body); font-size: var(--t-xs); color: var(--accent-bright); letter-spacing: .1em; }
.drawer__foot { margin-top: auto; padding-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }

@media (min-width: 1024px) {
  .nav { display: block; }
  .burger { display: none; }
}

@media (max-width: 1023px) {
  .header__actions > .btn { display: none; }
  .brand img { height: 38px; }
  .header__inner { gap: var(--sp-2); min-height: 64px; }
  .lang a { min-width: 28px; }
}

@media (max-width: 359px) {
  .brand img { height: 32px; }
}

.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--cream); }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}

@keyframes tyr-kenburns {
  from { transform: scale(1)     translate3d(0, 0, 0); }
  to   { transform: scale(1.055) translate3d(-1.2%, -1%, 0); }
}
.hero__media img {
  animation: tyr-kenburns 8s var(--ease) forwards;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
}

.hero__scrim {
  position: absolute; inset: 0;
  
  
  background: linear-gradient(100deg,
    rgba(9,36,70,.82) 0%, rgba(9,36,70,.74) 40%, rgba(9,36,70,.44) 70%, rgba(9,36,70,.14) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 78vh; padding-block: var(--sp-6);
}

.hero__copy { max-width: 48ch; display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start; }
.hero .eyebrow { color: var(--accent-on-navy); }
.hero__title { font-family: var(--font-display); font-size: var(--t-h1); line-height: .98; color: var(--cream); }
.hero__title .script { color: var(--accent-bright); display: block; font-size: 1.15em; line-height: .9; }
.hero__lede { font-size: var(--t-lede); color: rgba(255,248,207,.88); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.ticker {
  background: var(--navy-deep); color: var(--accent-on-navy);
  border-top: 1px solid var(--line-navy); border-bottom: 1px solid var(--line-navy);
}
.ticker__list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: var(--sp-2) var(--sp-4);
  list-style: none; padding-block: var(--sp-2);
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}

.card {
  display: flex; flex-direction: column;
  height: 100%;               
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { border-color: var(--accent-bright); transform: translateY(-3px); }
.card__media { background: var(--paper); overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 420ms var(--ease); }
.card:hover .card__media img { transform: scale(1.035); }
.card__body { display: flex; flex-direction: column; gap: .6rem; padding: var(--sp-3); flex: 1; }
.card__step {
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.15; }
.card__size { font-size: var(--t-xs); color: var(--ink-muted); letter-spacing: .08em; text-transform: uppercase; }
.card__text { font-size: var(--t-sm); color: var(--ink-muted); flex: 1; }
.card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.card__foot { margin-top: auto; padding-top: var(--sp-2); }

.card--article .card__media img { aspect-ratio: 16 / 9; }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; }
.chip {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .6rem; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-muted); background: var(--paper);
}

.iconbox { display: flex; flex-direction: column; gap: .75rem; }
.iconbox__icon {
  width: 48px; height: 48px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent-bright); border-radius: 50%;
  color: var(--accent);
}
.iconbox__icon svg { width: 22px; height: 22px; }
.iconbox__title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; }
.iconbox__text { font-size: var(--t-sm); color: var(--ink-muted); }

.section--invert .iconbox__icon { border-color: var(--line-navy); color: var(--accent-bright); }
.section--invert .iconbox__text { color: rgba(255,248,207,.80); }

.iconbox--row { flex-direction: row; align-items: flex-start; gap: var(--sp-2); }
.iconbox--row .iconbox__body { display: flex; flex-direction: column; gap: .3rem; }

.step { display: flex; gap: var(--sp-3); align-items: flex-start; }
.step__num {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 600;
  color: var(--accent-bright); line-height: 1; flex: none; min-width: 2.5rem;
}
.step__body { display: flex; flex-direction: column; gap: .4rem; }
.step__title { font-family: var(--font-body); font-size: var(--t-h4); font-weight: 600; }
.step__text { font-size: var(--t-sm); color: var(--ink-muted); }
.section--invert .step__text { color: rgba(255,248,207,.80); }

.trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-3) var(--sp-5);
  list-style: none;
}
.trust__item { display: flex; align-items: center; gap: .65rem; }
.trust__mark {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent-bright); border-radius: 50%;
  color: var(--accent-bright);
}
.trust__mark svg { width: 20px; height: 20px; }
.trust__label { display: flex; flex-direction: column; }
.trust__label b { font-size: var(--t-sm); font-weight: 600; letter-spacing: .04em; }
.trust__label span { font-size: var(--t-xs); color: rgba(255,248,207,.72); }

.acc { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  width: 100%; min-height: 64px; padding: var(--sp-2) 0;
  background: transparent; border: 0; text-align: left;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--ink);
}
.acc__btn:hover { color: var(--accent); }
.acc__icon { flex: none; width: 20px; height: 20px; color: var(--accent); transition: transform var(--dur) var(--ease); }
.acc__btn[aria-expanded="true"] .acc__icon { transform: rotate(45deg); }
.acc__panel { display: none; padding-bottom: var(--sp-3); }
.acc__panel[data-open="true"] { display: block; }
.acc__panel p { color: var(--ink-muted); font-size: var(--t-sm); max-width: 70ch; }
.acc__panel p + p { margin-top: var(--sp-2); }

.quote {
  display: flex; flex-direction: column; gap: var(--sp-2);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-3);
}
.quote__text { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.45; }
.quote__meta { font-size: var(--t-xs); color: var(--ink-muted); letter-spacing: .08em; text-transform: uppercase; }

.stars { display: inline-flex; gap: 2px; color: var(--accent-bright); }
.stars svg { width: 18px; height: 18px; }

.pullquote {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  text-align: center;
}
.pullquote__rule { width: 60px; height: 1px; background: var(--accent-bright); opacity: .6; }
.pullquote__text {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3; max-width: 24ch;
}
.pullquote__by { font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-on-navy); }

.pdp { display: flex; flex-wrap: wrap; gap: var(--sp-5); align-items: flex-start; }
.pdp__media { flex: 1 1 44%; min-width: 300px; display: flex; flex-direction: column; gap: var(--sp-2); }
.pdp__media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); }
.pdp__info  { flex: 1 1 44%; min-width: 300px; display: flex; flex-direction: column; gap: var(--sp-3); }
.pdp__price { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; color: var(--navy); line-height: 1; }
.pdp__buy   { display: flex; flex-direction: column; gap: var(--sp-2); }
.pdp__spec  { list-style: none; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.pdp__spec li {
  display: flex; flex-wrap: wrap; gap: .5rem var(--sp-2);
  padding-block: .85rem; border-bottom: 1px solid var(--line); font-size: var(--t-sm);
}
.pdp__spec b { flex: 0 0 130px; font-weight: 600; }
.pdp__spec span { flex: 1 1 200px; color: var(--ink-muted); }

.gallery { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.gallery img { flex: 1 1 calc(50% - var(--sp-2)); min-width: 140px; border-radius: var(--radius); border: 1px solid var(--line); }

.steps-ol { list-style: none; counter-reset: s; display: flex; flex-direction: column; gap: var(--sp-2); }
.steps-ol li {
  counter-increment: s; display: flex; gap: var(--sp-2); align-items: flex-start;
  font-size: var(--t-sm); color: var(--ink-muted);
}
.steps-ol li::before {
  content: counter(s,decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--accent); flex: none; min-width: 1.8rem; line-height: 1.5;
}

.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; list-style: none; font-size: var(--t-xs); color: var(--ink-muted); }
.crumb a { text-decoration: none; color: var(--ink-muted); }
.crumb a:hover { color: var(--accent); }
.crumb li[aria-current="page"] { color: var(--ink); }

.pagehead { padding-top: var(--sp-5); padding-bottom: var(--sp-4); }
.pagehead .stack { gap: var(--sp-3); }

.channel {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  padding: var(--sp-3);
  border: 1px solid var(--line-navy); border-radius: var(--radius);
  text-decoration: none; color: inherit;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  height: 100%;
}
.channel:hover { border-color: var(--accent-bright); background: rgba(255,248,207,.06); }
.channel__body { display: flex; flex-direction: column; gap: .3rem; }
.channel__title { font-family: var(--font-body); font-size: var(--t-h4); font-weight: 600; }
.channel__text  { font-size: var(--t-sm); color: rgba(255,248,207,.78); }
.section--paper .channel, .section--white .channel { border-color: var(--line); }
.section--paper .channel__text, .section--white .channel__text { color: var(--ink-muted); }
.section--paper .channel:hover, .section--white .channel:hover { background: var(--white); }

.footer { background: var(--navy-deep); color: var(--cream); padding-block: var(--sp-6) var(--sp-3); }
.footer__top { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer__brand { flex: 1 1 280px; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__cols { flex: 2 1 480px; display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer__col { flex: 1 1 140px; display: flex; flex-direction: column; gap: .5rem; }
.footer__h {
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: .25rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; }
.footer__list a {
  display: inline-flex; align-items: center; min-height: 40px;
  font-size: var(--t-sm); text-decoration: none; color: rgba(255,248,207,.82);
}
.footer__list a:hover { color: var(--accent-bright); }
.footer__text { font-size: var(--t-sm); color: rgba(255,248,207,.72); max-width: 34ch; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: space-between; align-items: center;
  margin-top: var(--sp-5); padding-top: var(--sp-3);
  border-top: 1px solid var(--line-navy);
  font-size: var(--t-xs); color: rgba(255,248,207,.62);
}
.social { display: flex; gap: .5rem; list-style: none; }
.social a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-navy); border-radius: 50%; color: var(--cream);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.social a:hover { border-color: var(--accent-bright); color: var(--accent-bright); }
.social svg { width: 18px; height: 18px; }

.wa-float {
  position: fixed; right: 16px; z-index: 90;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--success); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(15,35,64,.28);
  text-decoration: none;
}
.wa-float svg { width: 27px; height: 27px; }
.wa-float:hover { background: #24563E; }

.js [data-reveal] { opacity: 0; transform: translateY(14px); }
.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 767px) {
  :root { --t-h1: clamp(2.5rem, 11vw, 3.25rem); }
  .section    { padding-block: var(--sp-5); }
  .section--lg{ padding-block: var(--sp-6); }
  .hero__inner{ min-height: 72vh; }
  .hero__actions .btn { flex: 1 1 100%; }
  .row        { gap: var(--sp-2); }
  .col--2, .col--3, .col--4, .col--5, .col--7 { flex: 1 1 100%; min-width: 0; }
  .pdp        { gap: var(--sp-4); }
  .pdp__spec b{ flex: 1 1 100%; }
  .footer__bottom { justify-content: flex-start; }
  body { padding-bottom: 0; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .col--4 { flex: 1 1 calc(50% - var(--sp-3)); }
}

@media print {
  .header, .drawer, .wa-float, .hero__media { display: none; }
  body { background: #fff; }
}

.storyvid {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-navy);
  background: var(--navy-deep);
}
.storyvid video {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
}

.storyvid::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg,
    transparent 38%, rgba(201,169,97,.14) 47%, transparent 56%);
  transform: translateX(-120%);
  animation: tyr-sheen 9s var(--ease) 1.5s infinite;
}
@keyframes tyr-sheen {
  0%, 72% { transform: translateX(-120%); }
  88%, 100% { transform: translateX(120%); }
}

.img-soft {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.section--invert .img-soft { border-color: var(--line-navy); }

.js .row > [data-reveal]:nth-child(2)  { transition-delay: .07s; }
.js .row > [data-reveal]:nth-child(3)  { transition-delay: .14s; }
.js .row > [data-reveal]:nth-child(4)  { transition-delay: .21s; }

.js [data-reveal] .img-soft,
.js [data-reveal] .storyvid { transform: scale(1.015); }
.js [data-reveal].is-in .img-soft,
.js [data-reveal].is-in .storyvid {
  transform: scale(1);
  transition: transform 1.1s var(--ease);
}

.js [data-reveal] .eyebrow::before,
.js [data-reveal] .eyebrow::after { transform: scaleX(0); transform-origin: left; }
.js [data-reveal].is-in .eyebrow::before,
.js [data-reveal].is-in .eyebrow::after {
  transform: scaleX(1);
  transition: transform .7s var(--ease) .25s;
}

.card { transition: border-color .3s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -24px rgba(13,49,94,.45); }

@media (prefers-reduced-motion: reduce) {
  .storyvid::after { animation: none; }
  .js .row > [data-reveal] { transition-delay: 0s !important; }
  .js [data-reveal] .img-soft,
  .js [data-reveal] .storyvid { transform: none; }
  .js [data-reveal] .eyebrow::before,
  .js [data-reveal] .eyebrow::after { transform: scaleX(1); }
  .card:hover { transform: none; box-shadow: none; }
}
