/* ============================================================
   XILO DESIGN — Editorial Studio
   ============================================================ */

:root {
  --cream: #fbf9f1;
  --cream-2: #f1ecdf;
  --ink: #0e0e0e;
  --ink-soft: #1a1a1a;
  --electric: #3956BC;
  --lime: #DEE777;
  --sky: #88aef5;
  --lilac: #88aef5;
  --peach: #DEE777;
  --coral: #fd3f28;
  --muted: #6b6b66;
  --line: rgba(14,14,14,0.14);
  --gutter: clamp(28px, 6vw, 96px);

  --display: "Outfit", "Hanken Grotesk", system-ui, sans-serif;
  --serif: "Outfit", "Hanken Grotesk", system-ui, sans-serif;
  --serif-italic: "Outfit", "Hanken Grotesk", system-ui, sans-serif;
  --sans: "Outfit", "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --script: "Caveat", cursive;

  --ease: cubic-bezier(.2,.7,.2,1);
  --maxw: 1480px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { overflow-x: clip; }
body { overflow-x: clip; }

body {
  min-height: 100vh;
  line-height: 1.4;
  font-size: 16px;
}

/* Grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--electric); color: var(--cream); }

/* ============================================================
   SPLASH
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  background: #88aef5;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.splash.hidden { opacity: 0; visibility: hidden; }

.splash-inner {
  width: min(72vw, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.splash-logo {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: splashIn 1.4s var(--ease) 0.2s forwards;
}
.splash-logo svg { width: 100%; height: auto; }

.splash-tag {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(11px, 1.1vw, 13px);
  color: var(--cream);
  letter-spacing: 0.22em;
  opacity: 0;
  animation: splashIn 1s var(--ease) 1s forwards;
}

.splash-progress {
  width: 220px;
  height: 1px;
  background: rgba(232,227,214,0.2);
  overflow: hidden;
  margin-top: 18px;
}
.splash-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background: var(--cream);
  animation: splashBar 2.2s var(--ease) 0.4s forwards;
}

@keyframes splashIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splashBar {
  to { width: 100%; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
  color: var(--cream);
  /* Smooth the swap from transparent (mix-blend) → solid cream when
   * `.scrolled` flips. background-color is the visible change; we
   * fade color too so the link contrast doesn't snap. */
  transition: padding 0.4s var(--ease),
              background-color 0.3s var(--ease),
              color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
/* Once the user scrolls past the splash, swap the nav from the
 * mix-blend transparent treatment to a solid cream background so the
 * links never compete with whatever section they're hovering over.
 * mix-blend-mode has to be unset (otherwise it'll re-invert the cream
 * background and the nav goes black). */
.nav.scrolled {
  padding: 14px var(--gutter);
  mix-blend-mode: normal;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -22px rgba(14, 14, 14, 0.18);
}
/* Logo + nav link colors flip to ink when the cream backdrop kicks in.
 * Text elements that already inherit color from .nav (links, nav-btn)
 * pick it up automatically; logo svg path uses a `.cls-1` class so it
 * needs a direct override. */
.nav.scrolled,
.nav.scrolled .nav-links a,
.nav.scrolled .nav-right a {
  color: var(--ink);
}
.nav.scrolled .nav-logo svg .cls-1 { fill: var(--ink); }
/* .menu-toggle span uses `background: currentColor` so the cascade
 * above (.nav.scrolled { color: var(--ink) }) flips the burger lines
 * automatically — no extra rule needed. */
/* Language toggle: the active "pill" (sliding indicator) is ink, so the
 * active button's text has to flip to cream to stay legible against it. */
.nav.scrolled .lang-pill { background: var(--ink); }
.nav.scrolled .lang-toggle button.active { color: var(--cream); }

.nav-logo {
  width: 88px;
  transition: transform 0.5s var(--ease);
}
.nav-logo:hover { transform: scale(1.05) rotate(-2deg); }
.nav-logo svg { width: 100%; height: auto; }
.nav-logo svg .cls-1 { fill: var(--cream); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.auth-mobile { display: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-divider { display: none; }

.nav-btn {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav-btn:hover::after {
  width: 100%;
}

.lang-toggle {
  display: inline-flex;
  gap: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
.lang-toggle button {
  color: inherit;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: color 0.4s var(--ease);
  position: relative;
  z-index: 2;
}
.lang-toggle button.active {
  color: var(--ink);
}
.lang-toggle .lang-pill {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--cream);
  border-radius: 999px;
  transition: transform 0.5s var(--ease);
  z-index: 1;
}
.lang-toggle[data-lang="es"] .lang-pill { transform: translateX(100%); }

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 260;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px var(--gutter) 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  overflow: hidden;
}

.hero-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-headline {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(52px, 9.2vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-top: 0;
  position: relative;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline .line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.2s var(--ease) forwards;
}
.hero-headline .line:nth-child(2) .line-inner { animation-delay: 0.15s; }
.hero-headline .line:nth-child(3) .line-inner { animation-delay: 0.3s; }

@keyframes lineUp {
  to { transform: translateY(0); }
}

.hero-headline em {
  font-style: normal;
  font-weight: 700;
  color: var(--electric);
  font-family: var(--script);
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(0.06em) rotate(-3deg);
}
.hero-headline .wobble {
  display: inline-block;
  animation: wobble 6s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-6px); }
}

.hero-meta {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 380px;
  align-self: start;
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero-meta p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  font-family: var(--sans);
  font-size: 18px;
  transition: transform 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--coral); }
.btn:hover::after { transform: translateX(6px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* Hero side / floating elements */
.hero-side {
  grid-column: 2 / 3;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  margin-top: 0;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.hero-card {
  width: 360px;
  background: var(--electric);
  color: var(--cream);
  padding: 34px 32px;
  border-radius: 32px;
  transform: rotate(3deg);
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.6s var(--ease);
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-card .num {
  font-family: var(--script);
  font-weight: 600;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 16px;
}
.hero-card .label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.hero-marquee-strip {
  grid-column: 1 / -1;
  margin-top: 20px;
  align-self: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(16px, 2vw, 26px);
}
.hero-marquee-strip .scroll {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 28s linear infinite;
}
.hero-marquee-strip .scroll span { margin: 0 30px; word-spacing: 0.6em; }
.hero-marquee-strip .scroll span:nth-child(odd) { color: var(--electric); }

@keyframes scroll {
  to { transform: translateX(-100%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating decoration */
.float-asterisk {
  position: absolute;
  font-family: var(--sans);
  color: var(--lime);
  animation: spinAsterisk 12s linear infinite;
  user-select: none;
}
@keyframes spinAsterisk {
  to { transform: rotate(360deg); }
}

/* ============================================================
   HOW WE MAKE IT POSSIBLE
   ============================================================ */
.section {
  position: relative;
  padding: 120px var(--gutter);
}

.section-eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 30px;
}
.section-eyebrow .num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.how {
  background: var(--cream);
}
.how-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.how-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.how-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--coral);
  font-family: var(--script);
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-3deg);
}
.how-title .rotate {
  display: inline;
}
.how-text p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}
@media (max-width: 1200px) {
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .project-grid { grid-template-columns: 1fr; }
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}
.project-card:hover { transform: translateY(-8px); }

.project-card .name-top {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.project-card .thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--electric), var(--sky));
}
.project-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.project-card.c2 .thumb { background: linear-gradient(135deg, var(--coral), var(--lime)); }
.project-card.c3 .thumb { background: linear-gradient(135deg, var(--sky), var(--lime)); }
.project-card.c4 .thumb { background: linear-gradient(135deg, var(--ink), var(--coral)); }

.project-card .thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 8vw, 100px);
  color: rgba(232,227,214,0.4);
  transition: transform 0.8s var(--ease);
}
.project-card:hover .thumb-inner { transform: scale(1.06); }

.project-card .meta {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-card .meta h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.project-card .meta .tag {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
}
.project-card .arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 16px;
  background: var(--cream);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.project-card:hover .arrow {
  opacity: 1;
  transform: translateY(0) rotate(-45deg);
}

/* ============================================================
   PACKAGES (Home)
   ============================================================ */
.packages {
  background: var(--ink);
  color: var(--cream);
  padding: 140px var(--gutter);
  position: relative;
  overflow: hidden;
}
.packages .section-eyebrow { color: rgba(232,227,214,0.5); }
.packages .section-eyebrow .num { color: var(--cream); }

.packages-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
}
.packages-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--lime);
  font-family: var(--script);
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-3deg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pkg-note {
  margin-top: 32px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.7;
  max-width: 820px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.pkg-note-link {
  color: var(--lime);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}
.pkg-note-link:hover { opacity: 0.75; }
.card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 28px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform 0.5s var(--ease);
  min-height: 480px;
}
.card:hover { transform: translateY(-12px) rotate(-0.3deg); }
.card.tilt-1 { transform: rotate(-1.4deg); }
.card.tilt-1:hover { transform: translateY(-12px) rotate(-1.6deg); }
.card.tilt-2 { transform: rotate(0.8deg); }
.card.tilt-2:hover { transform: translateY(-12px) rotate(0.6deg); }
.card.featured { background: var(--lime); }
.card.featured .card-header .tag { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.card.dark { background: var(--sky); }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card-header .num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.card-header .tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.card-title em {
  font-style: normal;
}

.card-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.card-price small {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

/* Body-copy "subtitle" rendered below the price — uses the spot where the
   description line used to live, but is populated from the priceLabel. */
.card-subtitle {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding-top: 16px;
  border-top: 1px solid currentColor;
}
.card-features li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.card-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--sans);
}

.card .btn { width: 100%; justify-content: space-between; padding: 16px 22px; }

/* ============================================================
   APPROACH — scroll-pinned stacking panels
   ============================================================ */
.approach {
  position: relative;
  background: var(--cream);
  height: 360vh;
}
.approach-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 110px var(--gutter) 50px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.approach-eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 18px;
}
.approach-eyebrow .num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.approach-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  max-width: 1000px;
}
.approach-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-2deg);
}
.approach-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 280px;
}
.approach-progress span {
  flex: 1;
  height: 2px;
  background: rgba(14,14,14,0.14);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.approach-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.approach-progress span.on::after { transform: scaleX(1); }

.approach-stack {
  position: relative;
  flex: 1;
  min-height: 0;
}
.approach-panel {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 -30px 60px rgba(0,0,0,0.18);
}
.approach-panel.p1 { background: #88aef5; color: var(--ink); z-index: 1; }
.approach-panel.p2 { background: #2e2e2e; color: var(--cream); z-index: 2; transform: translate3d(0, 100%, 0); }
.approach-panel.p3 { background: #fd3f28; color: var(--cream); z-index: 3; transform: translate3d(0, 100%, 0); }

.approach-panel .body {
  max-width: 540px;
}
.approach-panel h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.approach-panel p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  opacity: 0.92;
  max-width: 480px;
}
.approach-panel .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(160px, 22vw, 360px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  align-self: flex-end;
  margin-top: auto;
}

@media (max-width: 900px) {
  .approach { height: auto; }
  .approach-inner {
    position: static;
    height: auto;
    padding: 80px var(--gutter);
  }
  .approach-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
  }
  .approach-panel {
    position: relative;
    inset: auto;
    min-height: 380px;
    padding: 32px 28px;
    transform: none !important;
    box-shadow: none;
  }
  .approach-panel .num { font-size: 140px; }
  .approach-progress { display: none; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--cream);
  color: var(--ink);
  padding: 120px var(--gutter) 140px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.contact-page .section-eyebrow { color: var(--muted); margin-bottom: 24px; }
.contact-page .section-eyebrow .num { color: var(--ink); }
.contact-left {
  display: flex;
  flex-direction: column;
}
.contact-hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  color: var(--ink);
}
.contact-hero-title em {
  font-style: normal;
  font-weight: 700;
  font-family: var(--script);
  color: var(--electric);
  display: block;
  transform: rotate(-3deg);
  font-size: 1.18em;
  transform-origin: left center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
}
.contact-info-val {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
a.contact-info-val:hover { color: var(--electric); }
.contact-form-card {
  background: var(--electric);
  border-radius: 28px;
  padding: 48px 44px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  position: relative;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 18px 16px 8px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: var(--cream);
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255,255,255,0.15);
}
.contact-form .form-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  transition: all 0.2s;
}
.contact-form .form-group input:focus ~ label,
.contact-form .form-group input:not(:placeholder-shown) ~ label,
.contact-form .form-group textarea:focus ~ label,
.contact-form .form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-submit-btn {
  background: var(--lime);
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.contact-success {
  display: none;
  font-size: 14px;
  color: var(--lime);
  margin: 0;
}
@media (max-width: 768px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 36px 28px;
  }
}

/* ============================================================
   ECOSYSTEM SECTION
   ============================================================ */
.ecosystem {
  background: var(--cream);
  padding: 140px var(--gutter);
  overflow: hidden;
}
.ecosystem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ecosystem-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--ink);
}
.ecosystem-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--electric);
  font-family: var(--script);
  font-size: 1.14em;
  display: inline-block;
  transform: rotate(-3deg);
}
.ecosystem-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.55;
  max-width: 580px;
  margin-bottom: 72px;
}
.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.eco-card {
  background: var(--cream-2);
  color: var(--ink);
  border-radius: 28px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  position: relative;
  transition: transform 0.5s var(--ease);
  min-height: 340px;
}
.eco-card.tilt-1 { transform: rotate(-1.4deg); }
.eco-card.tilt-1:hover { transform: translateY(-12px) rotate(-1.6deg); }
.eco-card.tilt-2 { transform: rotate(0.8deg); }
.eco-card.tilt-2:hover { transform: translateY(-12px) rotate(0.6deg); }
a.eco-card:not(.tilt-1):not(.tilt-2):hover { transform: translateY(-12px) rotate(-0.3deg); }
.eco-featured { background: var(--lime); }
.eco-dark { background: var(--electric); color: var(--cream); }
.eco-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.eco-card-header .num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.eco-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.eco-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  flex: 1;
}
.eco-desc {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.65;
  margin: 0;
}
.eco-dark .eco-desc { opacity: 0.75; }
.eco-link {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.eco-link span {
  display: inline-block;
  transition: transform 0.2s;
}
a.eco-card:hover .eco-link span { transform: translate(3px, -3px); }
.eco-coming {
  opacity: 0.45;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}
@media (max-width: 768px) {
  .ecosystem-cards {
    grid-template-columns: 1fr;
  }
  .eco-card.tilt-1,
  .eco-card.tilt-2 { transform: none; }
}

/* ============================================================
   FOOTER  — Ockham style
   ============================================================ */
.footer {
  background: var(--cream-2);
  color: var(--ink);
  padding: 60px var(--gutter) 28px;
  position: relative;
  border-top: 1px solid var(--line);
}
.footer-cta {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(60px, 13vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 30px 0 60px;
  white-space: nowrap;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.footer-cta:hover { opacity: 0.75; }
.footer-cta em {
  font-style: normal;
  font-weight: 700;
  font-family: var(--script);
  color: var(--electric);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 0 60px;
  align-items: start;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-col p, .footer-col li {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
  letter-spacing: 0.02em;
}
.footer-col li { margin-bottom: 4px; }
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--electric); }

.footer-tag {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.footer-badge-col {
  display: flex;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bottom .links {
  display: flex;
  gap: 32px;
}
.footer-bottom .links a {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.16em;
  transition: color 0.3s var(--ease);
}
.footer-bottom .links a:hover { color: var(--electric); }
.footer-logo { width: 110px; }
.footer-logo svg .cls-1 { fill: var(--ink); }

.spin-badge {
  width: 130px;
  height: 130px;
  position: relative;
}
.spin-badge svg {
  width: 100%;
  height: 100%;
  animation: spinAsterisk 18s linear infinite;
}
.spin-badge .center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  font-size: 22px;
  transition: transform 0.4s var(--ease);
}
.spin-badge:hover .center { transform: scale(1.08) rotate(-12deg); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 180px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-hero .label {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--electric);
  margin-bottom: 30px;
}
.about-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  grid-column: 1 / -1;
}
.about-hero h1 em {
  font-style: normal;
  font-weight: 700;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-3deg);
}
.about-hero h1 .stretch {
  display: inline-block;
  transform: scaleY(1.4);
  transform-origin: bottom;
  margin-right: 0.05em;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px var(--gutter) 140px;
  align-items: start;
}
.about-intro p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.about-intro p em {
  font-style: normal;
  font-weight: 600;
  color: var(--electric);
  font-family: var(--script);
  font-size: 1.25em;
}
.about-intro .side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-image-block {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--electric), var(--lilac));
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--script);
  font-weight: 600;
  color: rgba(232,227,214,0.7);
  font-size: 92px;
  overflow: hidden;     /* clip the photo to the rounded corners */
}

/* Photo variant — the gradient-placeholder rules above still apply
   for any block without a child <img>; this overrides display +
   colors when a real photo is set, and renders it in black & white
   via CSS filter so the source files stay original on disk. */
.about-image-block--photo {
  background: #0e0e0e;  /* neutral fill behind the image while it loads */
}
.about-image-block--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.manifesto {
  background: var(--electric);
  color: var(--cream);
  padding: 240px var(--gutter);
  text-align: center;
}
.manifesto h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 1400px;
  margin: 0 auto;
}
.manifesto h2 em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--sky);
  font-size: 1.3em;
}
.manifesto h2 .word {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.manifesto h2 .word:hover {
  transform: translateY(-8px) rotate(-3deg);
  color: var(--lime);
}

.timeline {
  padding: 140px var(--gutter);
}
.timeline-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.timeline-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--electric);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-2deg);
}
.timeline-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
  transition: padding 0.4s var(--ease);
  cursor: pointer;
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-item:hover { padding: 36px 0; background: var(--cream-2); padding-left: 20px; }
.timeline-item .year {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.timeline-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.015em;
}
.timeline-item p {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
}

.values {
  background: var(--cream-2);
  padding: 140px var(--gutter);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.value-card {
  padding: 40px 30px;
  background: var(--cream);
  border-radius: 24px;
  transition: transform 0.5s var(--ease);
}
.value-card:hover { transform: translateY(-8px) rotate(-0.5deg); }
.value-card .num {
  font-family: var(--script);
  font-weight: 600;
  font-size: 64px;
  color: var(--electric);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.value-card p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-hero {
  padding: 180px var(--gutter) 60px;
}
.portfolio-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.portfolio-hero h1 em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--electric);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-3deg);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px 0 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 var(--gutter);
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--cream);
}

.masonry {
  padding: 60px var(--gutter) 120px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  grid-auto-flow: dense;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.tile:hover { transform: translateY(-8px); }
.tile .thumb {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.7s var(--ease);
  font-family: var(--display);
  font-weight: 900;
  color: rgba(232,227,214,0.55);
  font-size: clamp(40px, 6vw, 90px);
  letter-spacing: -0.04em;
}
.tile:hover .thumb { transform: scale(1.04); }
.tile .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.7), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.tile:hover .overlay { opacity: 1; }
.tile .overlay h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
}
.tile .overlay .tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.tile.s1 { grid-column: span 7; aspect-ratio: 16/10; background: var(--electric); }
.tile.s2 { grid-column: span 5; aspect-ratio: 4/5; background: var(--sky); }
.tile.s2 .thumb { color: rgba(14,14,14,0.4); }
.tile.s3 { grid-column: span 4; aspect-ratio: 4/5; background: var(--lime); }
.tile.s3 .thumb { color: rgba(14,14,14,0.4); }
.tile.s4 { grid-column: span 8; aspect-ratio: 16/9; background: var(--coral); }
.tile.s5 { grid-column: span 6; aspect-ratio: 5/4; background: var(--sky); }
.tile.s5 .thumb { color: rgba(14,14,14,0.45); }
.tile.s6 { grid-column: span 6; aspect-ratio: 5/4; background: var(--lime); }
.tile.s6 .thumb { color: rgba(14,14,14,0.4); }
.tile.s7 { grid-column: span 5; aspect-ratio: 4/5; background: var(--ink); }
.tile.s8 { grid-column: span 7; aspect-ratio: 16/10; background: var(--coral); }
.tile.s8 .thumb { color: rgba(255,255,255,0.5); }

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.packages-page {
  padding: 180px var(--gutter) 80px;
}

/* ============================================================
   ADDITIONAL SERVICES (Add-ons)
   ============================================================ */
.addons {
  padding: 40px var(--gutter) 120px;
}
.addons-header {
  margin-bottom: 60px;
  max-width: 1000px;
}
.addons-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.addons-note::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cream);
}
.addons-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.addons-title em {
  font-style: normal;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.18em;
  font-weight: 600;
  display: inline-block;
  transform: rotate(-2deg);
}
.addons-list {
  list-style: none;
  border-top: 1px solid rgba(14,14,14,0.18);
}
.addon-item {
  border-bottom: 1px solid rgba(14,14,14,0.18);
  transition: background 0.4s var(--ease);
}
.addon-item.open { background: var(--cream-2); }

.addon-toggle {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 18px;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: padding 0.4s var(--ease);
}
.addon-toggle:hover { padding-left: 26px; padding-right: 26px; }
.addon-item.open .addon-toggle { padding-bottom: 18px; }

.addon-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1;
  color: rgba(14,14,14,0.22);
  letter-spacing: -0.04em;
}
.addon-item.open .addon-num { color: var(--coral); }

.addon-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.addon-meta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.addon-price-small {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.addon-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.addon-item.open .addon-arrow {
  transform: rotate(45deg);
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
}

.addon-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.addon-item.open .addon-body { max-height: 720px; }

.addon-body-inner {
  display: grid;
  grid-template-columns: 88px 1.2fr 1fr;
  gap: 30px;
  padding: 0 18px 36px;
  align-items: start;
}
.addon-body-inner .addon-info {
  grid-column: 2;
}
.addon-body-inner .addon-includes {
  grid-column: 3;
}
.addon-info p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 480px;
}
.addon-info .price {
  font-family: var(--script);
  font-weight: 600;
  color: var(--coral);
  font-size: 44px;
  line-height: 1;
  display: inline-block;
}
.addon-includes .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.addon-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.addon-includes ul li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.45;
}
.addon-includes ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 600;
  font-size: 16px;
}
.addon-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.addon-add-btn {
  padding: 14px 26px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.addon-add-btn:hover { background: var(--coral); transform: translateY(-2px); }
.addon-warn {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .addon-toggle {
    grid-template-columns: 56px 1fr 52px;
    gap: 16px;
    padding: 22px 8px;
  }
  .addon-toggle:hover { padding-left: 12px; padding-right: 12px; }
  .addon-num { font-size: 36px; }
  .addon-name { font-size: 22px; }
  .addon-meta { gap: 10px; }
  .addon-price-small { display: none; }
  .addon-arrow { width: 40px; height: 40px; font-size: 18px; }
  .addon-body-inner {
    grid-template-columns: 1fr;
    padding: 0 8px 28px;
    gap: 24px;
  }
  .addon-body-inner .addon-info,
  .addon-body-inner .addon-includes {
    grid-column: 1;
  }
}

/* ============================================================
   CARE PLANS (post-launch monthly)
   ============================================================ */
.care {
  background: var(--cream-2);
  padding: 100px var(--gutter) 120px;
}
.care-header {
  margin-bottom: 60px;
  max-width: 1000px;
}
.care-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--sky);
  color: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.care-note::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
}
.care-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.care-title em {
  font-style: normal;
  font-family: var(--script);
  color: var(--sky);
  font-size: 1.18em;
  font-weight: 600;
  display: inline-block;
  transform: rotate(-2deg);
}
.care-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.care-card {
  background: var(--cream);
  padding: 36px 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.5s var(--ease);
  position: relative;
}
.care-card:hover { transform: translateY(-8px); }
.care-card.featured {
  background: var(--sky);
  color: var(--ink);
}

.care-card .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.care-card .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.care-card.featured .label { color: rgba(14,14,14,0.7); }
.care-card .tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 500;
}
.care-card.featured .tag {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.care-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.care-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.care-card .price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.care-card .cycle {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
}
.care-card.featured .cycle { color: rgba(14,14,14,0.65); }
.care-card .desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(14,14,14,0.12);
}
.care-card.featured .desc {
  color: rgba(14,14,14,0.75);
  border-color: rgba(14,14,14,0.22);
}
.care-card .includes-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.care-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -6px;
}
.care-card ul li {
  padding-left: 22px;
  position: relative;
  font-size: 13.5px;
  line-height: 1.45;
}
.care-card ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sky);
  font-weight: 600;
  font-size: 16px;
}
.care-card.featured ul li::before { color: var(--ink); }
.care-card .care-btn {
  margin-top: auto;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  display: inline-block;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.care-card .care-btn:hover { background: var(--coral); }
.care-card.featured .care-btn:hover { background: var(--ink); color: var(--sky); }

@media (max-width: 900px) {
  .care-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CART (Floating button + Drawer)
   ============================================================ */
.cart-modal [hidden] { display: none !important; }

.nav-cart {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
/* With mix-blend-mode:difference on the nav, currentColor(cream) background → appears black.
   Icon with color var(--ink) → |ink - page_cream| ≈ white. No extra blend on the SVG needed. */
.nav-cart:hover { background: currentColor; }
.nav-cart:hover svg { color: var(--ink); }
/* Once the nav scrolls into its solid-cream state, mix-blend-mode is off
 * and currentColor flips to ink — so on hover the BG goes ink (black) and
 * the SVG kept-as-ink rule above was painting black-on-black (invisible
 * icon). Flip the SVG to cream so it reads as white against the dark
 * hover pill, same visual the mix-blend trick gave us pre-scroll. */
.nav.scrolled .nav-cart:hover svg { color: var(--cream); }
.nav-cart svg { width: 18px; height: 18px; }
.nav-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--coral);
  color: var(--cream);
  min-width: 18px; height: 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  letter-spacing: 0;
  font-family: var(--sans);
}
.nav-cart-count.empty { display: none; }


.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
  border: none;
  font-family: var(--sans);
}
.cart-fab:hover { transform: translateY(-3px) scale(1.05); background: var(--coral); }
.cart-fab svg { width: 22px; height: 22px; }
.cart-fab .cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--coral);
  color: var(--cream);
  min-width: 24px; height: 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid var(--cream);
  letter-spacing: 0;
}
.cart-fab .cart-count.empty { display: none; }

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.55s;
}
.cart-modal.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}
.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cart-modal.open .cart-overlay { opacity: 1; }

.cart-dialog {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(540px, 100vw);
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-modal.open .cart-dialog { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(14,14,14,0.1);
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.cart-header .step-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cart-close:hover { background: var(--coral); color: var(--cream); transform: rotate(90deg); }
.cart-back-btn {
  background: transparent;
  border: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--sans);
}
.cart-back-btn:hover { color: var(--ink); }
.cart-back-btn::before { content: "← "; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-step { display: none; }
.cart-step.active { display: flex; flex-direction: column; gap: 24px; }

.cart-section h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}

.cart-warn {
  background: var(--coral);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cart-warn::before {
  content: "!";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.cart-package-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.cart-package-options button {
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 16px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
  font-family: var(--sans);
}
.cart-package-options button:hover { border-color: var(--ink); transform: translateY(-2px); }
.cart-package-options button.selected { border-color: var(--coral); background: var(--cream); }
.cart-package-options .pkg-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.cart-package-options .pkg-price {
  font-family: var(--script);
  font-weight: 600;
  font-size: 22px;
  color: var(--coral);
  line-height: 1;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--cream-2);
  border-radius: 14px;
  padding: 14px 16px;
}
.cart-item .info { flex: 1; min-width: 0; }
.cart-item .name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.cart-item .sub {
  font-size: 12px;
  color: var(--muted);
}
.cart-item .price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.cart-item .actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.cart-item .actions button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.cart-item .actions button:hover { color: var(--ink); background: var(--cream); }
.cart-item .actions .remove:hover { color: var(--coral); }

.cart-item .actions .info-btn {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid rgba(14,14,14,0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-item .actions .info-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.cart-item-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}
/* Per-item 50% deposit note shown under the website package line. */
.cart-item-anticipo {
  margin: 6px 2px 0;
  font-size: 12px;
  color: var(--muted, #6b6b66);
  line-height: 1.4;
}
.cart-item-anticipo strong {
  color: var(--ink, #0e0e0e);
  font-weight: 600;
}
.cart-item-wrap .cart-item {
  margin-bottom: 0;
  border-radius: 14px;
  transition: border-radius 0.3s var(--ease);
}
.cart-item-wrap.expanded .cart-item {
  border-radius: 14px 14px 0 0;
}
.cart-item-details {
  max-height: 0;
  overflow: hidden;
  background: var(--cream-2);
  transition: max-height 0.45s var(--ease);
  border-radius: 0 0 14px 14px;
}
.cart-item-wrap.expanded .cart-item-details {
  max-height: 500px;
}
.cart-item-details-inner {
  padding: 4px 18px 18px;
  border-top: 1px dashed rgba(14,14,14,0.18);
  margin-top: -2px;
}
.cart-item-details p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 14px 0;
}
.cart-item-details .includes-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.cart-item-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item-details ul li {
  font-size: 13px;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}
.cart-item-details ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 600;
}

/* Available add-ons (offered when package selected) */
.cart-available-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-available-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--cream-2);
  border: 1px dashed rgba(14,14,14,0.25);
  border-radius: 14px;
  padding: 14px 14px 14px 18px;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
  text-align: left;
}
.cart-available-item:hover {
  border-style: solid;
  border-color: var(--coral);
  background: var(--cream);
  transform: translateX(2px);
}
.cart-available-item .info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.cart-available-item .name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.cart-available-item .price {
  font-size: 12px;
  color: var(--muted);
}
.cart-available-item .add {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.cart-available-item:hover .add {
  transform: rotate(90deg);
}

.cart-empty {
  padding: 50px 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cart-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 6px;
}
.cart-empty-icon svg { width: 38px; height: 38px; }
.cart-empty h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.cart-empty p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.55;
  margin: 0;
}
.cart-empty-cta {
  margin-top: 10px;
  padding: 12px 26px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cart-empty-cta:hover { background: var(--coral); transform: translateY(-2px); }
.cart-empty-contact {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-muted, #888);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--sans);
  cursor: pointer;
  transition: color 0.2s;
}
.cart-empty-contact:hover { color: var(--ink); }

/* Charge-by-charge breakdown shown above the total — a soft card so it
   visually reads as "here's what you're paying for". */
.cart-breakdown {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(14, 14, 14, 0.035);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cart-breakdown-title {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted, #6b6b66);
}
.cart-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  color: var(--ink, #0e0e0e);
}
.cart-breakdown-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid rgba(14,14,14,0.12);
  margin-top: 10px;
}
.cart-total-row .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.cart-total-row .total {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
}
/* Terms and conditions row in the payment step — must be checked before
   the buyer is allowed to submit the Stripe form. */
.cart-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}
.cart-terms-row input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--ink);
  cursor: pointer;
}
.cart-terms-row a {
  color: var(--ink);
  text-decoration: underline;
}
.cart-terms-row a:hover {
  color: var(--coral);
}
.cart-terms-row.has-error {
  color: var(--coral);
}
.cart-terms-row.has-error input[type="checkbox"] {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Anticipo reminder right below the total — soft, supportive copy. */
.cart-anticipo-disclaimer {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  padding: 10px 12px;
  background: rgba(14, 14, 14, 0.04);
  border-radius: 10px;
}

.cart-footer {
  padding: 20px 30px 26px;
  border-top: 1px solid rgba(14,14,14,0.1);
  flex-shrink: 0;
}
.cart-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 18px 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.cart-action-btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s var(--ease);
}
.cart-action-btn:hover:not(:disabled) { background: var(--coral); transform: translateY(-2px); }
.cart-action-btn:hover:not(:disabled)::after { transform: translateX(4px); }
.cart-action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(14,14,14,0.1);
  margin-bottom: 4px;
}
.cart-form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cart-form-section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.cart-form-section-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 4px;
  line-height: 1.45;
}
.cart-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cart-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-form .field-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cart-form input,
.cart-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(14,14,14,0.16);
  border-radius: 12px;
  background: var(--cream-2);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.cart-form input:focus,
.cart-form select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--cream);
}

.cart-summary-mini {
  background: var(--cream-2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 4px;
}
.cart-summary-mini .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 4px 0;
}
.cart-summary-mini .row.total {
  border-top: 1px solid rgba(14,14,14,0.12);
  margin-top: 8px;
  padding-top: 10px;
  font-weight: 600;
  font-size: 15px;
}
.cart-mini-disclaimer {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted, #6b6b66);
}

/* Password field with show/hide eye button on the right. */
.pw-input-wrap {
  position: relative;
  display: block;
}
.pw-input-wrap input {
  /* The wrap is positioning context for the absolute eye button. Force the
     input to fill the wrap so the button (right:8px) lands inside the input
     and not in a gap to its right. */
  width: 100%;
  box-sizing: border-box;
  padding-right: 44px; /* room for the eye button */
}
.pw-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: rgba(14, 14, 14, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.pw-toggle:hover {
  color: var(--ink);
  background: rgba(14, 14, 14, 0.05);
}
.pw-toggle svg {
  width: 18px;
  height: 18px;
}

.password-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 6px 0 0;
  padding: 0;
}
.password-rules li {
  font-size: 12px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}
.password-rules li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.3s var(--ease);
}
.password-rules li.valid { color: var(--ink); }
.password-rules li.valid::before {
  content: "✓";
  color: var(--electric);
}

.cart-form .field-error {
  font-size: 12px;
  color: var(--coral);
  margin-top: 6px;
  display: none;
}
.cart-form label.has-error .field-error { display: block; }
.cart-form label.has-error input { border-color: var(--coral); }

.cart-success-btn {
  margin-top: 30px;
  padding: 16px 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cart-success-btn::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}
.cart-success-btn:hover {
  background: var(--coral);
  transform: translateY(-2px);
}
.cart-success-btn:hover::after { transform: translateX(4px); }

.cart-success {
  text-align: center;
  padding: 40px 0;
}
.cart-success .icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--ink);
}
.cart-success h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cart-success p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .cart-fab { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .cart-header, .cart-footer { padding-left: 22px; padding-right: 22px; }
  .cart-body { padding-left: 22px; padding-right: 22px; }
  .cart-package-options { grid-template-columns: 1fr; }
  .cart-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   QUIZ CTA + MODAL
   ============================================================ */
.quiz-cta {
  margin: 40px var(--gutter) 0;
  padding: 36px 40px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.quiz-cta::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--coral);
  border-radius: 50%;
  right: -60px;
  top: -60px;
  opacity: 0.25;
  filter: blur(30px);
}
.quiz-cta-text { position: relative; z-index: 1; max-width: 600px; }
.quiz-cta-text h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.quiz-cta-text h3 em {
  font-style: normal;
  font-family: var(--script);
  color: var(--lime);
  font-size: 1.2em;
  font-weight: 600;
}
.quiz-cta-text p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}
.quiz-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.quiz-cta-btn::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.4s var(--ease);
}
.quiz-cta-btn:hover { transform: translateY(-2px); background: var(--lime); color: var(--ink); }
.quiz-cta-btn:hover::after { transform: translateX(4px); }

/* Modal */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quiz-modal.open { display: flex; }
.quiz-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.35s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.quiz-dialog {
  position: relative;
  background: var(--cream);
  width: min(94vw, 720px);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  animation: dialogIn 0.5s var(--ease);
}
@keyframes dialogIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quiz-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.quiz-close:hover { background: var(--coral); color: var(--cream); transform: rotate(90deg); }

.quiz-progress {
  height: 3px;
  background: rgba(14,14,14,0.08);
  position: relative;
  flex-shrink: 0;
}
.quiz-progress-bar {
  position: absolute;
  inset: 0;
  background: var(--coral);
  width: 0;
  transition: width 0.5s var(--ease);
}

.quiz-body {
  padding: 56px 44px 28px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: stepIn 0.4s var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.quiz-step h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.quiz-step h2 em {
  font-style: normal;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.2em;
  font-weight: 600;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-options label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(14,14,14,0.14);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  background: var(--cream-2);
}
.quiz-options label:hover { border-color: var(--ink); }
.quiz-options input { display: none; }
.quiz-options label .bullet {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s var(--ease);
}
.quiz-options input[type="checkbox"] ~ .bullet { border-radius: 5px; }
.quiz-options label .bullet::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.quiz-options input[type="checkbox"] ~ .bullet::after { border-radius: 2px; }
.quiz-options input:checked ~ .bullet::after { opacity: 1; }
.quiz-options input:checked ~ span:not(.bullet) { font-weight: 600; }
.quiz-options label:has(input:checked) {
  border-color: var(--ink);
  background: var(--cream);
}
.quiz-options span:not(.bullet) {
  font-size: 15px;
  letter-spacing: -0.005em;
}

.quiz-result { text-align: left; }
.quiz-result-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.quiz-result-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.quiz-result-why {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.quiz-result-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.quiz-result-timeline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--lime);
  color: var(--ink);
  padding: 5px 14px;
  border-radius: 100px;
}
.quiz-result-price {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quiz-result-addons-wrap {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.quiz-result-addons-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.quiz-result-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-result-features li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
}
.quiz-result-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--electric);
  font-weight: 700;
}
.quiz-email-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
}
.quiz-email-privacy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.quiz-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-checkout-form input,
.quiz-checkout-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(14,14,14,0.16);
  border-radius: 14px;
  background: var(--cream-2);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.quiz-checkout-form input:focus,
.quiz-checkout-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--cream);
}
.quiz-checkout-form textarea { min-height: 100px; }

.quiz-success { text-align: center; padding: 20px 0; }
.quiz-success .icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--ink);
}
.quiz-success p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 44px 32px;
  border-top: 1px solid rgba(14,14,14,0.08);
  flex-shrink: 0;
}
.quiz-nav button {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.quiz-back {
  background: transparent;
  color: var(--muted);
}
.quiz-back:hover { color: var(--ink); }
.quiz-back.hidden { visibility: hidden; }
.quiz-next, .quiz-submit {
  background: var(--ink);
  color: var(--cream);
}
.quiz-next:hover, .quiz-submit:hover {
  background: var(--coral);
  transform: translateY(-2px);
}
.quiz-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 600px) {
  .quiz-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .quiz-cta-btn { align-self: stretch; justify-content: center; }
  .quiz-body { padding: 44px 24px 20px; }
  .quiz-nav { padding: 18px 24px 24px; }
  .quiz-step h2 { font-size: 22px; }
}
.packages-page-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.packages-page-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-3deg);
}

.packages-page-section {
  padding: 40px var(--gutter) 0;
}
.packages-page-section .section-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #6b6b66);
  margin-bottom: 24px;
}
.packages-page-section .section-eyebrow .num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0;
}
.packages-page-section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.packages-page-section-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-2deg);
}

.packages-payment-note {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted, #6b6b66);
  margin: 10px 0 0;
}

.packages-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 60px 0 120px;
}
.packages-page-section .packages-grid-full {
  padding: 40px 0 100px;
}

.compare {
  background: var(--cream-2);
  padding: 140px var(--gutter);
}
.compare-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.compare-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--electric);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-3deg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.compare-table thead th:first-child { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.compare-table tbody td:first-child {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
}
.check { color: var(--electric); font-family: var(--sans); font-weight: 700; font-size: 22px; }
.cross { color: var(--muted); font-size: 18px; }

.faq {
  padding: 140px var(--gutter);
}
.faq-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 50px;
}
.faq-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--electric);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-2deg);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.faq-item .toggle {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 32px;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .toggle { transform: rotate(45deg); color: var(--electric); }
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 0;
}
.faq-item.open .a {
  max-height: 400px;
  padding-top: 18px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px var(--gutter) 60px; }
  .hero-side { grid-column: 1; align-items: flex-start; }
  .how-header { grid-template-columns: 1fr; gap: 30px; }
  .cards, .packages-grid-full, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-hero, .about-intro { grid-template-columns: 1fr; }
  .tile.s1, .tile.s2, .tile.s3, .tile.s4, .tile.s5, .tile.s6, .tile.s7, .tile.s8 { grid-column: span 12; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .timeline-item p { grid-column: 1 / -1; }
  .menu-toggle { display: flex; }
  .nav {
    mix-blend-mode: normal;
    color: var(--ink);
    background: var(--cream);
    gap: 12px;
    border-bottom: 1px solid rgba(14,14,14,0.08);
  }
  .nav-right { margin-left: auto; gap: 12px; }
  .nav-right .auth-desktop { display: none; }
  .nav-right .lang-toggle { font-size: 11px; }
  .nav-logo svg .cls-1 { fill: var(--ink); }
  .nav-divider { display: none; }
  .auth-mobile { display: list-item; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 100px var(--gutter) 40px;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
    overflow-y: auto;
    z-index: 240;
    mix-blend-mode: normal;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(14,14,14,0.12);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a,
  .nav-links .nav-btn {
    display: block;
    width: 100%;
    padding: 22px 0;
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.02em;
    color: var(--ink);
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--coral); }
  .nav-links .nav-btn:hover {
    background: transparent;
    color: var(--coral);
  }
  .nav-links .nav-btn:hover span {
    color: inherit;
    mix-blend-mode: normal;
  }
}

@media (max-width: 768px) {
  .hero-eyebrow { display: none; }
}

@media (max-width: 600px) {
  .section, .packages, .footer, .about-intro, .timeline, .values, .manifesto, .faq, .compare { padding: 80px var(--gutter); }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 14px 8px; }
}

/* ============================================================
   LOGIN POPUP
   ============================================================ */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-modal.open { display: flex; }
.login-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.45);
  backdrop-filter: blur(4px);
}
.login-dialog {
  position: relative;
  background: var(--cream-2);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px -20px rgba(14, 14, 14, 0.4);
  animation: loginPop 0.25s var(--ease);
}
@keyframes loginPop {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.login-close:hover { background: rgba(14, 14, 14, 0.06); color: var(--ink); }
.login-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.login-sub {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}
.login-form { display: flex; flex-direction: column; gap: 14px; }
.login-form label { display: flex; flex-direction: column; gap: 6px; }
.login-form .field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.login-form input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  transition: border-color 0.2s;
}
.login-form input:focus {
  outline: none;
  border-color: var(--electric);
}
.login-error {
  color: var(--coral);
  font-size: 12px;
  margin: 0;
}
.login-submit {
  margin-top: 6px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.login-submit:hover { background: var(--electric); }
.login-submit:disabled,
.login-submit.is-loading {
  opacity: 0.7;
  cursor: progress;
}
.login-hint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.login-hint a {
  color: var(--electric);
  text-decoration: underline;
  margin-left: 4px;
}

/* ─── LEGAL PAGES (Terms & Privacy) ─────────────────────────────── */
.legal-page {
  padding-top: 120px;
  padding-bottom: 100px;
  background: var(--cream);
  min-height: 80vh;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-header {
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
}
.legal-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 14px;
}
.legal-header h1 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.05;
}
.legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.legal-body section {
  margin-bottom: 44px;
}
.legal-body h2 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.82;
  margin: 0 0 12px;
}
.legal-body p:last-child { margin-bottom: 0; }
.legal-body ul {
  margin: 12px 0 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.82;
}
.legal-body a {
  color: var(--electric);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { opacity: 0.75; }

/* Cart terms checkbox */
.cart-terms-row {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cart-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
}
.cart-terms-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--electric);
  cursor: pointer;
}
.cart-terms-label a {
  color: var(--electric);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-terms-error {
  display: none;
  color: #e05c4b;
  font-size: 12px;
  margin-top: 6px;
}
.cart-terms-row.has-error .cart-terms-error { display: block; }

/* Custom quote note */
.custom-quote-note {
  margin: 0 var(--gutter) 80px;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line, #e8e4dc);
  border-bottom: 1px solid var(--line, #e8e4dc);
}
.custom-quote-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 620px;
}
.custom-quote-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.custom-quote-sub {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted, #6b6b66);
  margin: 0;
}
.custom-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.custom-quote-arrow {
  transition: transform 0.3s var(--ease);
}
.custom-quote-btn:hover { color: var(--coral); }
.custom-quote-btn:hover .custom-quote-arrow { transform: translateX(4px); }

/* ── Process Timeline ──────────────────────────── */
.process {
  padding: 120px var(--gutter) 100px;
}
.process-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 64px;
}
.process-title em {
  font-style: normal;
  font-weight: 600;
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-2deg);
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 20px;
}
/* horizontal connector line through the dots */
.process-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--line, #e8e4dc);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 0;
}
.process-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream, #f5f0e8);
  border: 1px solid var(--line, #e8e4dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  flex-shrink: 0;
  margin-bottom: 8px;
}
.process-dot--last {
  background: var(--lime);
  border-color: var(--lime);
  font-size: 18px;
  position: relative;
}
.process-dot--last i { line-height: 1; }

/* pulsing ring around last dot */
.process-dot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  opacity: 0;
  animation: proc-ring 2s ease-out infinite;
}
@keyframes proc-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* launch step — bigger title */
.process-step--launch h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.process-step--launch p {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* stagger fade-in for each step */
.process-timeline .process-step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-timeline.is-visible .process-step:nth-child(2)  { opacity:1; transform:none; transition-delay: 0.05s; }
.process-timeline.is-visible .process-step:nth-child(3)  { opacity:1; transform:none; transition-delay: 0.15s; }
.process-timeline.is-visible .process-step:nth-child(4)  { opacity:1; transform:none; transition-delay: 0.25s; }
.process-timeline.is-visible .process-step:nth-child(5)  { opacity:1; transform:none; transition-delay: 0.35s; }
.process-timeline.is-visible .process-step:nth-child(6)  { opacity:1; transform:none; transition-delay: 0.45s; }
.process-timeline.is-visible .process-step:nth-child(7)  { opacity:1; transform:none; transition-delay: 0.55s; }

/* line draw animation */
.process-line {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.process-timeline.is-visible .process-line {
  transform: scaleX(1);
}
.process-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted, #6b6b66);
  font-weight: 500;
}
.process-tag--lime {
  color: var(--ink);
  font-weight: 700;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
  color: var(--ink);
}
.process-step p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted, #6b6b66);
  margin: 0;
}
@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  .process-line { display: none; }
}
@media (max-width: 540px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
