/* ============================================================
   PARADISE & BEYOND — design system v3 "sticker pop"
   Layout language mirrored from karinsevents.com, reimplemented
   from scratch. White-red palette, Outfit display + Caveat script.
   ============================================================ */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/caveat-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/caveat-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper:     #FAF7F1;
  --white:     #FFFFFF;
  --cream:     #F3EDE3;
  --ink:       #1C1815;
  --ink-2:     #46403A;
  --ink-3:     #736B62;
  --line:      #E5DDD1;
  --red:       #B32C24;
  --red-deep:  #8E1F19;
  --red-pop:   #C9463C;
  --red-tint:  #F9ECEA;
  --night:     #17130F;
  --night-2:   #221D18;

  --font: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Caveat', cursive;

  --w: 1240px;
  --w-narrow: 880px;
  --gut: clamp(18px, 4vw, 48px);
  --sp: clamp(64px, 9vw, 120px);
  --sp-half: clamp(36px, 5vw, 68px);

  --r: 26px;         /* cards */
  --r-sm: 16px;      /* chips, inner elements */
  --r-pill: 999px;

  --shadow-card: 0 18px 44px -20px rgba(28, 24, 21, .28);
  --shadow-pop: 0 26px 60px -24px rgba(28, 24, 21, .38);
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }
.footer :focus-visible, .cta-panel :focus-visible, .nav-mobile :focus-visible, .lightbox :focus-visible { outline-color: #E8B9B4; }

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

/* ---------- layout ---------- */
.container { max-width: var(--w); margin-inline: auto; padding-inline: var(--gut); }
.container--narrow { max-width: var(--w-narrow); }
.section { padding-block: var(--sp); position: relative; }
.section--tight { padding-block: var(--sp-half); }
.section--cream { background: var(--cream); }

/* ---------- type ---------- */
.script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--red);
}
.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.1;
  color: var(--red);
  margin-bottom: 14px;
  text-align: center;
}
.kicker::before, .kicker::after {
  content: '';
  width: 12px; height: 12px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.kicker--left { justify-content: flex-start; text-align: left; }
.kicker--left::after { display: none; }
.kicker--light { color: #F0C9C5; }

.display {
  font-weight: 850;
  font-size: clamp(40px, 7.2vw, 96px);
  line-height: .95;
  letter-spacing: -.015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.display em, .display strong { font-style: normal; color: var(--red); }
.h2 {
  font-weight: 830;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: .98;
  letter-spacing: -.012em;
  text-transform: uppercase;
  text-wrap: balance;
}
.h2 strong, .h2 em { font-style: normal; font-weight: inherit; color: var(--red); }
.h3 {
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.1;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.h4 {
  font-size: 12.5px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lede {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 380;
  line-height: 1.65;
  color: var(--ink-2);
}
.prose p { margin-bottom: 1.3em; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 700; color: var(--red); }

.section-head { max-width: 820px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--left .kicker { justify-content: flex-start; text-align: left; }
.section-head--left .kicker::after { display: none; }
.section-head .h2 + .lede { margin-top: 18px; }

/* ---------- buttons (pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 12px 28px -12px rgba(179, 44, 36, .55);
  transition: transform .35s var(--ease-out), box-shadow .35s, background .3s;
}
.btn::after { content: '→'; font-size: 16px; letter-spacing: 0; transition: transform .35s var(--ease-out); }
.btn:hover { background: var(--red-deep); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(142, 31, 25, .6); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--dark { background: var(--night); box-shadow: 0 12px 28px -12px rgba(23, 19, 15, .5); }
.btn--dark:hover { background: #000000; box-shadow: 0 18px 34px -12px rgba(0, 0, 0, .55); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--ghost-light {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 2px var(--white); }
.btn--white { background: var(--white); color: var(--red); box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .4); }
.btn--white:hover { background: var(--red-tint); color: var(--red-deep); }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.link-line::after { content: '→'; font-size: 15px; transition: transform .35s var(--ease-out); }
.link-line:hover::after { transform: translateX(5px); }
.link-line:hover { color: var(--red-deep); }

/* ---------- floating pill header ---------- */
.site-header {
  position: fixed;
  top: clamp(10px, 1.8vh, 18px);
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: var(--gut);
  pointer-events: none;
  transition: transform .45s var(--ease-soft);
}
.site-header.is-hidden { transform: translateY(-140%); }
.site-header__bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-radius: var(--r-pill);
  padding: 8px 10px 8px 20px;
  box-shadow: 0 14px 40px -16px rgba(28, 24, 21, .35), inset 0 0 0 1px rgba(28, 24, 21, .05);
  max-width: 100%;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  transition: transform .5s var(--ease-out);
}
.brand:hover .brand__mark { transform: rotate(180deg); }
.brand__mark::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: 14.5px; font-weight: 820; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.brand__tag { font-family: var(--script); font-size: 13.5px; font-weight: 600; color: var(--red); white-space: nowrap; }

.nav-desktop { display: flex; align-items: center; gap: clamp(4px, .8vw, 10px); }
.nav-desktop a {
  font-size: 12.5px;
  font-weight: 720;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background .3s, color .3s;
}
.nav-desktop a:hover { background: var(--red-tint); color: var(--red-deep); }
.nav-desktop a[aria-current="page"] { background: var(--night); color: var(--white); }
.header-cta { flex: none; padding: 13px 24px; font-size: 12px; }

.burger {
  display: none;
  flex: none;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--night);
  cursor: pointer;
  position: relative;
  z-index: 102;
}
.burger span {
  position: absolute; left: 14px; right: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .4s var(--ease-out), top .4s var(--ease-out), opacity .3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0;
  z-index: 101;
  background: var(--night);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gut) 56px;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .6s var(--ease-out), visibility 0s .6s;
}
body.menu-open .nav-mobile { clip-path: inset(0); visibility: visible; transition: clip-path .6s var(--ease-out); }
body.menu-open .site-header { z-index: 102; } /* lift bar (and its burger→X) above the overlay; .burger's own z-index is trapped in this stacking context */
.nav-mobile a {
  display: block;
  font-size: clamp(30px, 7.4vw, 44px);
  font-weight: 830;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  padding: clamp(7px, 1.4vh, 12px) 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s var(--ease-soft), transform .55s var(--ease-out), color .3s;
}
.nav-mobile a:hover, .nav-mobile a[aria-current="page"] { color: var(--red-pop); }
body.menu-open .nav-mobile a { opacity: 1; transform: none; }
body.menu-open .nav-mobile a:nth-child(1) { transition-delay: .14s; }
body.menu-open .nav-mobile a:nth-child(2) { transition-delay: .2s; }
body.menu-open .nav-mobile a:nth-child(3) { transition-delay: .26s; }
body.menu-open .nav-mobile a:nth-child(4) { transition-delay: .32s; }
body.menu-open .nav-mobile a:nth-child(5) { transition-delay: .38s; }
body.menu-open .nav-mobile a:nth-child(6) { transition-delay: .44s; }
.nav-mobile__foot {
  margin-top: 36px;
  font-family: var(--script);
  font-size: 20px;
  color: #F0C9C5;
  opacity: 0;
  transition: opacity .5s .5s;
}
body.menu-open .nav-mobile__foot { opacity: 1; }
body.menu-open { overflow: hidden; }

/* ---------- home hero (photo) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--night);
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 7s var(--ease-out) both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(23, 19, 15, .72) 8%, rgba(23, 19, 15, .28) 55%, rgba(23, 19, 15, .1)),
    linear-gradient(to top, rgba(23, 19, 15, .55), transparent 40%);
}
.hero__inner {
  width: 100%;
  max-width: var(--w);
  margin-inline: auto;
  padding: clamp(120px, 16vh, 170px) var(--gut) clamp(72px, 10vh, 110px);
}
.hero__title {
  font-weight: 870;
  font-size: clamp(52px, 9.4vw, 128px);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 11ch;
}
.hero__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.05;
  color: #F5A79F;
  margin-top: 6px;
  transform: rotate(-1.6deg);
  transform-origin: left;
  display: inline-block;
}
.hero__actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero [data-hero] { opacity: 0; transform: translateY(30px); animation: heroUp 1s var(--ease-out) forwards; }
.hero [data-hero="1"] { animation-delay: .1s; }
.hero [data-hero="2"] { animation-delay: .24s; }
.hero [data-hero="3"] { animation-delay: .4s; }
.hero [data-hero="4"] { animation-delay: .56s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ---------- subpage hero (solid red) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(120% 140% at 15% 0%, var(--red-pop), transparent 55%),
    linear-gradient(160deg, var(--red) 20%, var(--red-deep));
  color: var(--white);
  text-align: center;
  padding: clamp(140px, 19vh, 190px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
  border-radius: 0 0 var(--r) var(--r);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: rgba(255, 255, 255, .07);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.page-hero__kicker {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #FBD9D5;
  margin-bottom: 10px;
}
.page-hero__title {
  font-weight: 870;
  font-size: clamp(42px, 7.6vw, 104px);
  line-height: .93;
  letter-spacing: -.018em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 16ch;
  margin-inline: auto;
}
.page-hero__script {
  font-family: var(--script);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 42px);
  color: #FBD9D5;
  margin-top: 14px;
  transform: rotate(-1.4deg);
  display: inline-block;
}
.page-hero__lede { margin-top: 16px; max-width: 640px; margin-inline: auto; font-size: clamp(16px, 1.6vw, 19px); color: rgba(255, 255, 255, .92); padding-inline: var(--gut); }
.page-hero__actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; padding-inline: var(--gut); }
.page-hero [data-hero] { opacity: 0; transform: translateY(26px); animation: heroUp .9s var(--ease-out) forwards; }
.page-hero [data-hero="1"] { animation-delay: .08s; }
.page-hero [data-hero="2"] { animation-delay: .2s; }
.page-hero [data-hero="3"] { animation-delay: .34s; }
.page-hero [data-hero="4"] { animation-delay: .48s; }

/* ---------- offer photo cards ---------- */
.pcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.pcard:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: var(--shadow-pop); }
.pcard__media { aspect-ratio: 4 / 4.6; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__body { padding: 18px 20px 22px; }
.pcard__meta { font-family: var(--script); font-weight: 600; font-size: 17px; color: var(--red); line-height: 1.2; }
.pcard__title { margin-top: 2px; font-weight: 820; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.02; text-transform: uppercase; letter-spacing: -.01em; display: flex; align-items: center; gap: 8px; }
.pcard__title::after { content: '→'; font-size: 16px; color: var(--red); margin-left: auto; transition: transform .35s var(--ease-out); }
.pcard:hover .pcard__title::after { transform: translateX(4px); }

/* ---------- stat cards ---------- */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.stat-card {
  border-radius: var(--r);
  padding: clamp(22px, 2.6vw, 32px);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out);
}
.stat-card:hover { transform: translateY(-6px) rotate(.4deg); }
.stat-card::before {
  content: '';
  width: 22px; height: 22px;
  flex: none;
  margin-bottom: auto; /* in-flow flex item: sparkle stays top-left, text can never ride up into it */
  background: currentColor;
  opacity: .9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.stat-card__big { font-weight: 870; font-size: clamp(38px, 4vw, 54px); line-height: 1; letter-spacing: -.02em; }
.stat-card__label { font-size: 14px; font-weight: 560; line-height: 1.4; opacity: .92; }
.stat-card--red { background: var(--red); color: var(--white); }
.stat-card--deep { background: var(--red-deep); color: var(--white); }
.stat-card--night { background: var(--night); color: var(--white); }
.stat-card--tint { background: var(--red-tint); color: var(--red-deep); }

/* ---------- statement band ---------- */
.band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: clamp(44px, 6vw, 76px) var(--gut);
  overflow: hidden;
}
.band__script { font-family: var(--script); font-weight: 600; font-size: clamp(22px, 2.6vw, 32px); color: #FBD9D5; margin-bottom: 8px; }
.band__title {
  font-weight: 860;
  font-size: clamp(30px, 5vw, 66px);
  line-height: .96;
  letter-spacing: -.015em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 22ch;
  margin-inline: auto;
}
.band--night { background: var(--night); }
.band--night .band__script { color: var(--red-pop); }

/* ---------- photo duo / rounded frames ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 26px); align-items: start; }
.duo img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}
.duo img:first-child { transform: rotate(-1.6deg); }
.duo img:last-child { transform: rotate(1.4deg) translateY(18px); }

.rphoto { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-card); }
.rphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.rphoto:hover img { transform: scale(1.04); }
.rphoto--tall img { aspect-ratio: 4 / 5; }
.rphoto--wide img { aspect-ratio: 16 / 10; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.split__media { grid-column: span 6; }
.split__body { grid-column: span 6; }
.split--media-right .split__media { order: 2; }
.split--media-right .split__body { order: 1; }
.split__body .h2 + .prose, .split__body .h2 + .lede { margin-top: 22px; }
.split__body .prose + .btn, .split__body .lede + .btn { margin-top: 30px; }

/* ---------- checklist panels ---------- */
.check-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.check-panel {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(22px, 2.8vw, 34px);
  box-shadow: var(--shadow-card);
}
.check-panel--tint { background: var(--red-tint); }
.check-panel__title {
  font-weight: 820;
  font-size: clamp(17px, 1.7vw, 21px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.check-panel__title::before {
  content: '';
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: none;
  mask: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M12 3.6c.7 5.3 3.7 8.3 9 9-5.3.7-8.3 3.7-9 9-.7-5.3-3.7-8.3-9-9 5.3-.7 8.3-3.7 9-9z'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.check-panel p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- numbered cards ---------- */
.num-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 24px); align-items: start; }
.num-card {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(24px, 2.8vw, 36px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.num-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-pop); }
.num-card__chip {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-weight: 870;
  font-size: 20px;
  color: var(--white);
  transform: rotate(-4deg);
}
.num-card:nth-child(1) .num-card__chip { background: var(--red); }
.num-card:nth-child(2) .num-card__chip { background: var(--red-deep); }
.num-card:nth-child(3) .num-card__chip { background: var(--night); }
.num-card__title { font-weight: 820; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.05; text-transform: uppercase; }
.num-card__text { font-size: 15px; color: var(--ink-2); }
.num-card .link-line { margin-top: auto; }

/* ---------- price cards (China) ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.price-card {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.price-card:hover { transform: translateY(-8px) rotate(-.3deg); box-shadow: var(--shadow-pop); }
.price-card__label { font-family: var(--script); font-weight: 600; font-size: 24px; color: var(--red); }
.price-card__title { font-weight: 820; font-size: clamp(18px, 1.9vw, 23px); line-height: 1.08; text-transform: uppercase; min-height: 2.2em; }
.price-card__price { font-weight: 870; font-size: clamp(40px, 4.4vw, 58px); line-height: 1; letter-spacing: -.02em; color: var(--red); }
.price-card__price small { font-size: .34em; font-weight: 780; letter-spacing: .1em; }
.price-card__meta { font-size: 14px; color: var(--ink-3); line-height: 1.65; }
.price-card__meta strong { color: var(--ink); font-weight: 700; }
.price-card .btn { margin-top: auto; align-self: center; }

/* ---------- photo CTA card (announcement) ---------- */
.photo-cta {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  box-shadow: var(--shadow-pop);
  min-height: clamp(320px, 42vw, 480px);
  display: flex;
  align-items: flex-end;
}
.photo-cta img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.photo-cta:hover img { transform: scale(1.05); }
.photo-cta::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(23, 19, 15, .8), rgba(23, 19, 15, .15) 55%, rgba(23, 19, 15, .05));
}
.photo-cta__body { padding: clamp(26px, 3.6vw, 48px); width: 100%; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 18px; }
.photo-cta__text { flex: 1 1 320px; }
.photo-cta__script { font-family: var(--script); font-weight: 600; font-size: clamp(22px, 2.6vw, 32px); color: #F5A79F; }
.photo-cta__title { font-weight: 860; font-size: clamp(34px, 5vw, 68px); line-height: .95; text-transform: uppercase; letter-spacing: -.015em; }

/* ---------- polaroid team cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; gap: clamp(28px, 4.5vw, 72px); }
.team-card {
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-pop);
  text-align: center;
  transition: transform .5s var(--ease-out);
}
.team-card:nth-child(odd) { transform: rotate(-2deg); }
.team-card:nth-child(even) { transform: rotate(1.6deg); }
.team-card:hover { transform: rotate(0) translateY(-6px); }
.team-card .cover { border-radius: 10px; overflow: hidden; aspect-ratio: 3 / 3.6; }
.team-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.team-card:hover .cover img { transform: scale(1.05); }
.team-card__name { margin-top: 16px; font-weight: 830; font-size: 20px; text-transform: uppercase; letter-spacing: -.005em; }
.team-card__role { font-family: var(--script); font-weight: 600; font-size: 20px; color: var(--red); margin-top: 2px; }
.team-card__social { margin-top: 12px; display: flex; justify-content: center; gap: 10px; }
.team-card__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red-deep);
  display: grid;
  place-items: center;
  transition: background .35s, color .35s, transform .35s var(--ease-out);
}
.team-card__social a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }
.team-card__social svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- partner logo strip ---------- */
.partners-strip {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  align-items: center;
}
.partners-strip figure { min-width: 0; aspect-ratio: 8 / 4; }
.partners-strip img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
  transition: filter .4s, opacity .4s, transform .4s var(--ease-out);
}
.partners-strip figure:hover img { filter: none; opacity: 1; transform: scale(1.06); }

/* ---------- itinerary plates ---------- */
.grid { display: grid; gap: clamp(14px, 1.8vw, 24px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.itin-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.itin-card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: var(--shadow-pop); }
.itin-card .cover { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4 / 3; }
.itin-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.itin-card figcaption {
  padding: 14px 6px 0;
  font-weight: 800;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.itin-card figcaption::before {
  content: '';
  width: 10px; height: 10px;
  flex: none;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- destination cards (pachete) ---------- */
.dest-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.dest-card:hover { transform: translateY(-8px) rotate(-.3deg); box-shadow: var(--shadow-pop); }
.dest-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.dest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.dest-card:hover .dest-card__media img { transform: scale(1.06); }
.dest-card__body { padding: 20px 22px 26px; }
.dest-card__name { font-weight: 830; font-size: clamp(20px, 2vw, 26px); text-transform: uppercase; letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; }
.dest-card__name::before {
  content: '';
  width: 12px; height: 12px;
  flex: none;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.dest-card__text { margin-top: 10px; font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }

/* ---------- destination strips (China infographics) ---------- */
.dest-strips { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.dest-strips img { width: 100%; height: auto; border-radius: var(--r); box-shadow: var(--shadow-card); }

/* ---------- contact: dark CTA panel + form card ---------- */
.cta-panel {
  background:
    radial-gradient(110% 130% at 85% 0%, rgba(179, 44, 36, .35), transparent 55%),
    var(--night);
  border-radius: var(--r);
  color: var(--white);
  text-align: center;
  padding: clamp(44px, 6vw, 80px) clamp(22px, 4vw, 64px);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.cta-panel__script { font-family: var(--script); font-weight: 600; font-size: clamp(22px, 2.6vw, 32px); color: var(--red-pop); margin-bottom: 10px; }
.cta-panel__title {
  font-weight: 850;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 20ch;
  margin-inline: auto;
}
.cta-panel__actions { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-panel { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 44px); align-items: start; margin-top: clamp(28px, 4vw, 48px); }
.contact-panel__form {
  grid-column: span 7;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 3.4vw, 46px);
}
.contact-panel__aside { grid-column: span 5; display: grid; gap: clamp(14px, 1.8vw, 22px); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  padding: 15px 18px;
  font-size: 15.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s, background .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus { border-color: var(--red); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { display: none; margin-top: 16px; font-family: var(--script); font-weight: 600; font-size: 21px; color: var(--red); }
.form-note.is-visible { display: block; }

.cinfo-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: clamp(20px, 2.4vw, 30px);
}
.cinfo-card .h4 { color: var(--red); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.cinfo-card .h4::before {
  content: '';
  width: 11px; height: 11px;
  flex: none;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.cinfo-card p { font-size: 15px; line-height: 1.8; color: var(--ink-2); }
.cinfo-card a:hover { color: var(--red); }
.sched { width: 100%; font-size: 15px; color: var(--ink-2); }
.sched div { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.sched div:last-child { border-bottom: 0; }
.sched span:last-child { font-weight: 700; color: var(--ink); }

/* ---------- footer ---------- */
.footer { background: var(--night); color: rgba(255, 255, 255, .72); position: relative; overflow: hidden; margin-top: var(--sp); border-radius: var(--r) var(--r) 0 0; }
.footer__hero {
  text-align: center;
  padding: clamp(56px, 8vw, 100px) var(--gut) clamp(36px, 5vw, 64px);
  position: relative;
}
.footer__hero .kicker { color: var(--red-pop); }
.footer__display {
  font-weight: 870;
  font-size: clamp(38px, 7.4vw, 110px);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__display em, .footer__display strong { font-style: normal; color: var(--red-pop); }
.footer__script { font-family: var(--script); font-weight: 600; font-size: clamp(24px, 3vw, 40px); color: #F0C9C5; margin-top: 10px; transform: rotate(-1.2deg); display: inline-block; }
.footer__main {
  max-width: var(--w);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 48px) var(--gut) 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer__col--about { grid-column: span 4; }
.footer__col--contact { grid-column: span 3; }
.footer__col--contact2 { grid-column: span 3; }
.footer__col--program { grid-column: span 2; }
.footer .h4 { color: var(--red-pop); margin-bottom: 14px; }
.footer p, .footer li { font-size: 14px; line-height: 1.85; }
.footer a { transition: color .3s; }
.footer a:hover { color: var(--white); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: background .35s, transform .35s var(--ease-out);
}
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__logo {
  display: block;
  width: clamp(160px, 15vw, 200px);
  margin: clamp(20px, 3.5vw, 34px) auto 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .12);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.footer__logo:hover,
.footer__logo:focus-visible {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .22);
}
.footer__logo img { width: 100%; }
.footer__certs {
  max-width: var(--w);
  margin-inline: auto;
  margin-top: clamp(28px, 4vw, 44px);
  padding: 22px var(--gut);
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.footer__certs a {
  font-size: 11.5px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06);
  transition: background .3s, color .3s;
}
.footer__certs a:hover { background: var(--red); color: var(--white); }
.footer__bottom {
  text-align: center;
  padding: 20px var(--gut) 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}
.footer__watermark {
  display: block;
  text-align: center;
  font-weight: 870;
  font-size: clamp(60px, 12vw, 190px);
  line-height: .72;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  transform: translateY(.18em);
}

/* ---------- legal pages ---------- */
.legal-hero {
  background: linear-gradient(160deg, var(--red) 20%, var(--red-deep));
  color: var(--white);
  text-align: center;
  padding: clamp(130px, 18vh, 170px) var(--gut) clamp(44px, 6vw, 72px);
  border-radius: 0 0 var(--r) var(--r);
}
.legal-hero .page-hero__kicker { color: #FBD9D5; }
.legal-body { padding-block: var(--sp-half) var(--sp); }
.legal-body__card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 4vw, 56px);
}
.legal-body h2 { font-size: 21px; font-weight: 820; text-transform: uppercase; margin: 2em 0 .6em; letter-spacing: -.005em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16.5px; font-weight: 780; margin: 1.6em 0 .5em; }
.legal-body p { margin-bottom: 1.1em; color: var(--ink-2); }
.legal-body ul { margin: 0 0 1.1em; }
.legal-body ul li { position: relative; padding-left: 26px; margin-bottom: .5em; color: var(--ink-2); }
.legal-body ul li::before {
  content: '';
  position: absolute; left: 2px; top: .55em;
  width: 10px; height: 10px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.legal-body a { color: var(--red); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }

/* ---------- lightbox ---------- */
[data-lightbox] { cursor: zoom-in; }
[data-lightbox]:focus-visible { outline: 3px solid var(--red); outline-offset: -4px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(23, 19, 15, .93);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vmin, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-soft), visibility 0s .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .35s var(--ease-soft); }
.lightbox img {
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: var(--r-sm);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .8);
  transform: scale(.94);
  transition: transform .45s var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: clamp(14px, 3vmin, 30px);
  right: clamp(14px, 3vmin, 30px);
  width: 52px; height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .3s, transform .35s var(--ease-out);
}
.lightbox__close:hover { background: var(--red-deep); transform: rotate(90deg); }

/* ---------- reveal (hidden only when JS runs) ---------- */
.reveal { transition: opacity .8s var(--ease-soft), transform .9s var(--ease-out); }
html.js .reveal:not(.is-in) { opacity: 0; transform: translateY(34px) scale(.985); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .nav-desktop a { padding: 9px 10px; font-size: 11.5px; letter-spacing: .04em; }
  .brand__tag { display: none; }
}
@media (max-width: 1060px) {
  .nav-desktop, .header-cta { display: none; }
  .burger { display: block; }
  .site-header { padding-inline: 12px; }
  .site-header__bar {
    width: 100%;
    justify-content: space-between;
    border-radius: var(--r);
    padding: 8px 8px 8px 18px;
    gap: 14px;
  }
  .brand__tag { display: block; } /* restore the script tagline: same lockup as desktop */
  .pcards { grid-template-columns: repeat(2, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact-panel__form, .contact-panel__aside { grid-column: span 12; }
  .footer__col--about, .footer__col--contact { grid-column: span 6; }
  .footer__col--contact2, .footer__col--program { grid-column: span 6; }
}
@media (max-width: 1100px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .num-cards { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card__title { min-height: 0; }
  .partners-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .split__media, .split__body { grid-column: span 12; }
  .split--media-right .split__media { order: 0; }
  .split--media-right .split__body { order: 1; }
  .check-panels { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .pcards { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .stat-card { min-height: 140px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .duo img:last-child { transform: rotate(1.4deg); }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; justify-items: center; }
  .team-card { max-width: 340px; }
  .partners-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__col--about, .footer__col--contact, .footer__col--contact2, .footer__col--program { grid-column: span 12; }
  .split, .contact-panel { column-gap: 8px; }
  .footer__main { column-gap: 8px; }
}
@media (max-width: 360px) {
  .stat-cards { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, html.js .reveal:not(.is-in) { opacity: 1; transform: none; }
  .hero [data-hero], .page-hero [data-hero] { opacity: 1; transform: none; }
}

/* ---------- addenda ---------- */
.cta-panel__lede { margin-top: 14px; max-width: 620px; margin-inline: auto; color: rgba(255, 255, 255, .88); font-size: clamp(15.5px, 1.5vw, 18px); }
.ticks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: .55em;
  color: var(--ink-2);
  font-size: 15.5px;
}
.ticks li::before {
  content: '';
  position: absolute; left: 2px; top: .5em;
  width: 12px; height: 12px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.9 7.1 4.9 11.1 12 12-7.1.9-11.1 4.9-12 12-.9-7.1-4.9-11.1-12-12C7.1 11.1 11.1 7.1 12 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.photo-cta--stack + .photo-cta--stack { margin-top: clamp(16px, 2.2vw, 26px); }
