/* ==========================================================================
   Esme — Corner of Emotions — Marketing site stylesheet
   Design tokens sourced from the client-approved brand kit
   (design_handoff_brand_system/tokens/*.css). Do not invent new colors,
   fonts, radii, or shadows — extend these tokens instead.
   ========================================================================== */

/* Fonts are loaded via <link> tags in each page <head> (with preconnect) so they
   fetch in parallel with this stylesheet instead of waiting for it. */

:root {
  /* Color */
  --navy-900: #38455f;
  --navy-700: #4e5e7f;
  --navy-500: #6b7ba0;
  --navy-300: #a4b0c9;
  --navy-100: #dde2ec;
  --sky-100: #e3e8ee;
  --sky-50: #f2f4f8;
  --peach-500: #ffd0a6;
  --peach-300: #ffe1c4;
  --peach-700: #f2a35f;
  --cream-50: #faf8f5;
  --white: #ffffff;
  --ink: #33394a;
  --success: #7c9473;
  --warning: #e0a04a;
  --danger: #c2694f;

  --text-heading: var(--navy-700);
  --text-body: var(--ink);
  --text-muted: var(--navy-500);
  --text-inverse: var(--white);
  --surface-page: var(--cream-50);
  --surface-card: var(--white);
  --surface-sky: var(--sky-100);
  --surface-navy: var(--navy-700);
  --surface-peach: var(--peach-500);
  --border-subtle: var(--navy-100);
  --border-strong: var(--navy-500);
  --accent: var(--peach-500);
  --accent-strong: var(--peach-700);
  --focus-ring: var(--navy-500);

  /* Type */
  --font-display: "alfarn-2", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Liberation Sans", "Arimo", "Helvetica Neue", Arial, sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 20px;
  --text-xl: 26px;
  --text-2xl: 34px;
  --text-3xl: 48px;
  --text-4xl: 68px;
  --tracking-wide: 0.14em;
  --leading-tight: 1.1;
  --leading-snug: 1.35;
  --leading-normal: 1.6;

  /* Space / radii / shadow / motion */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 32px -16px rgba(56, 69, 95, 0.28);
  --shadow-card: 0 4px 16px -6px rgba(56, 69, 95, 0.18);
  --shadow-lift: 0 20px 48px -20px rgba(56, 69, 95, 0.35);
  --ease-standard: cubic-bezier(.4, 0, .2, 1);
  --duration-fast: 150ms;
  --duration-base: 240ms;

  --container-max: 1180px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-heading); margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--navy-900); }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .container { padding: 0 56px; }
}

section { position: relative; }
section[id] { scroll-margin-top: 104px; }
@media (min-width: 980px) {
  section[id] { scroll-margin-top: 176px; }
}
.section-pad { padding: var(--space-8) 0; }
@media (max-width: 640px) {
  .section-pad { padding: var(--space-7) 0; }
}

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 var(--space-3);
}
.eyebrow.on-dark { color: var(--peach-300); }
.center { text-align: center; }

.section-head { max-width: 680px; margin: 0 auto var(--space-7); }
.section-head h2 { font-size: var(--text-3xl); line-height: var(--leading-tight); }
.section-head p { margin-top: var(--space-4); color: var(--text-muted); font-size: var(--text-lg); line-height: var(--leading-snug); }
@media (max-width: 640px) {
  .section-head h2 { font-size: var(--text-2xl); }
  .section-head p { font-size: var(--text-base); }
}

.dot-sep { color: var(--peach-700); margin: 0 0.5em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard),
              background var(--duration-base) var(--ease-standard),
              color var(--duration-base) var(--ease-standard);
  padding: 13px 28px;
  font-size: var(--text-sm);
}
.btn-lg { padding: 16px 36px; font-size: var(--text-base); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-primary { background: var(--navy-700); color: var(--text-inverse); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--navy-900); color: var(--text-inverse); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-accent { background: var(--peach-500); color: var(--navy-900); box-shadow: var(--shadow-card); }
.btn-accent:hover { background: var(--peach-700); color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-secondary { background: transparent; color: var(--navy-700); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--sky-100); color: var(--navy-900); }
.btn-secondary.on-dark { color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary.on-dark:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-ghost { background: transparent; color: var(--navy-700); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--peach-700); }
.btn:active { transform: translateY(1px); box-shadow: var(--shadow-card); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-image:
    linear-gradient(rgba(250, 248, 245, 0.78), rgba(250, 248, 245, 0.78)),
    repeating-linear-gradient(90deg, var(--peach-500) 0 10px, var(--cream-50) 10px 20px);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
}
/* The nine links stay on one row at every desktop width: they never wrap, and
   size/gap scale with the viewport so the bar stays a single slim line. */
.nav-links {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(8px, 1.3vw, 24px);
  font-size: clamp(10px, 0.78vw, 12.5px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-700);
}
.nav-links a { color: var(--navy-700); white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--peach-700); }
.nav-top .lang-switch { flex: none; }

.nav-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
}
.nav-main-left { justify-self: start; }
.nav-main-right { justify-self: end; }
.nav-logo { display: flex; align-items: center; justify-self: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--white);
}
.lang-switch a { padding: 6px 12px; color: var(--text-muted); }
.lang-switch a[aria-current="true"] { background: var(--navy-700); color: var(--white); }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (min-width: 980px) {
  .nav-top { display: flex; }
  /* the link row gets the full bar width; the logo row below keeps the
     standard container padding so it stays aligned with page content */
  .site-header .container.nav-top { padding-left: 24px; padding-right: 24px; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-logo img { height: 54px; }
}

/* Homepage: the full logo lives in the hero, so the header drops its own copy. */
.home-header .nav-logo { display: none; }
@media (min-width: 980px) {
  .home-header .nav-main { display: none; }
  .home-header .nav-top { border-bottom: none; padding: 13px 0; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 20px;
  border-top: 1px solid var(--border-subtle);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  font-size: 14px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-700);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu .btn { margin-top: 12px; }
.mobile-menu .lang-switch { align-self: flex-start; margin: 10px 0 4px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-700);
}
.hero picture, .hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 45%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(56,69,95,0.82) 0%, rgba(56,69,95,0.74) 45%, rgba(56,69,95,0.90) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: var(--space-9) 0 var(--space-8); text-align: center; max-width: 860px; margin: 0 auto; }
.hero-inner .eyebrow { color: var(--peach-300); }
.hero h1 {
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  color: var(--white);
  margin-bottom: var(--space-4);
}
.hero-tagline {
  margin: 0 0 var(--space-6);
}
.hero-tagline img { height: 46px; margin: 0 auto; }
/* Hero wordmark: the logo carries the brand, the h1 carries the keywords. */
.hero-logo {
  display: block;
  width: min(420px, 76vw);
  height: auto;
  margin: 0 auto var(--space-5);
}
.hero h1.hero-h1 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 2;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 auto var(--space-6);
  max-width: 760px;
}
@media (min-width: 760px) {
  .hero-logo { margin-bottom: var(--space-6); }
  .hero h1.hero-h1 { font-size: 14px; letter-spacing: 0.22em; }
}

/* Rotating event word. All words sit in the DOM (crawlable); JS only swaps
   which one is visible, and the whole thing holds still if the visitor
   asked for reduced motion. */
.hero-rot-lead {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach-300);
  margin: 0 0 6px;
}
.hero-rot {
  position: relative;
  height: 1.25em;
  margin: 0 0 var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(26px, 5.2vw, 44px);
  line-height: 1.25;
  color: var(--white);
}
.hero-rot span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms var(--ease-standard), transform 480ms var(--ease-standard);
}
.hero-rot span.is-on { opacity: 1; transform: translateY(0); }
.hero-rot span.is-out { opacity: 0; transform: translateY(-22px); }
@media (prefers-reduced-motion: reduce) {
  .hero-rot span { transition: none; }
}
.hero-sub { font-size: var(--text-lg); color: var(--sky-100); max-width: 620px; margin: 0 auto var(--space-6); line-height: var(--leading-snug); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero { min-height: 92vh; }
  .hero h1 { font-size: var(--text-2xl); }
  .hero-sub { font-size: var(--text-base); }
}

/* ---------- Stripe band ---------- */
.stripe-band {
  background-image: repeating-linear-gradient(90deg, var(--peach-500) 0 40px, var(--cream-50) 40px 80px);
  padding: 22px 0;
}
.stripe-band-inner { display: flex; justify-content: center; }
.stripe-label {
  font-size: 11.5px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--surface-card);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  text-align: center;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
}
.card-navy { background: var(--surface-navy); color: var(--text-inverse); }
.card-navy h1, .card-navy h2, .card-navy h3, .card-navy h4 { color: var(--white); }
.card-navy p { color: var(--sky-100); }
.card-peach { background: var(--surface-peach); color: var(--navy-900); }
.card-sky { background: var(--surface-sky); color: var(--text-body); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card { display: flex; flex-direction: column; gap: var(--space-3); }
.service-card .icon-badge {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--sky-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700);
}
.card-navy .icon-badge { background: rgba(255,255,255,0.14); color: var(--peach-300); }
.service-card h3 { font-size: var(--text-lg); }
.service-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-snug); }
.card-navy .service-card p, .card-navy p.muted-inverse { color: var(--sky-100); }

/* ---------- Diferentiators ---------- */
.diff-list { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
@media (min-width: 760px) { .diff-list { grid-template-columns: repeat(3, 1fr); } }
.diff-item { display: flex; gap: 14px; align-items: flex-start; }
.diff-item .icon-badge { flex: none; width: 40px; height: 40px; border-radius: var(--radius-pill); background: var(--peach-300); color: var(--navy-900); display: flex; align-items: center; justify-content: center; }
.diff-item h4 { font-size: var(--text-base); margin-bottom: 4px; }
.diff-item p { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-snug); }

/* ---------- Packages ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 760px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1140px) {
  .pkg-grid { grid-template-columns: repeat(4, 1fr); }
}
.pkg-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  border: 1px solid var(--border-subtle);
}
.pkg-card.featured { border: 2px solid var(--peach-700); }
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach-700);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.pkg-name { font-size: var(--text-xl); }
.pkg-price { display: flex; align-items: baseline; gap: 6px; }
.pkg-price .amount { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--navy-700); }
.pkg-price .unit { font-size: var(--text-sm); color: var(--text-muted); }
.pkg-card.card-navy .pkg-price .amount { color: var(--white); }
.pkg-card.card-navy .pkg-price .unit { color: var(--sky-100); }
.pkg-ref { font-size: 12px; color: var(--text-muted); }
.card-navy .pkg-ref { color: var(--sky-100); }
.pkg-blurb { font-size: var(--text-sm); line-height: var(--leading-snug); color: var(--text-muted); }
.card-navy .pkg-blurb { color: var(--sky-100); }
.pkg-divider { height: 1px; background: var(--border-subtle); border: none; margin: 0; }
.card-navy .pkg-divider { background: rgba(255,255,255,0.2); }
.pkg-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; flex: 1; }
.pkg-feats li { display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.pkg-feats li svg { flex: none; width: 16px; height: 16px; margin-top: 2px; color: var(--peach-700); }
.card-navy .pkg-feats li svg { color: var(--peach-300); }
.pkg-card .btn { margin-top: auto; }
.pkg-note { text-align: center; max-width: 720px; margin: var(--space-6) auto 0; font-size: 13.5px; color: var(--text-muted); }

.pkg-legal {
  max-width: 820px;
  margin: var(--space-7) auto 0;
  padding: var(--space-5);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  line-height: var(--leading-snug);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Venue-only secondary block ---------- */
.venue-only {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
}
.venue-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 760px) { .venue-grid { grid-template-columns: repeat(2, 1fr); } }
.venue-card { border: 1px solid var(--border-subtle); }
.venue-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.venue-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
.venue-price-row:last-of-type { border-bottom: none; }
.venue-price-row .price { font-family: var(--font-display); color: var(--navy-700); font-size: var(--text-lg); }
.venue-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: var(--space-4) 0; }
.venue-meta span {
  font-size: 12px; font-weight: 600; color: var(--navy-700);
  background: var(--sky-100); padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ---------- Add-ons ---------- */
.addon-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: var(--space-7);
}
@media (min-width: 760px) { .addon-feature { grid-template-columns: 1fr 1.1fr; } }
.addon-feature .frame { aspect-ratio: 4/3; overflow: hidden; }
.addon-feature .frame img { width: 100%; height: 100%; object-fit: cover; }
.addon-feature-copy { padding: var(--space-6); }
@media (min-width: 760px) { .addon-feature-copy { padding: var(--space-7) var(--space-7) var(--space-7) 0; } }
.addon-feature-copy h3 { font-size: var(--text-xl); margin: 6px 0 12px; }
.addon-feature-copy p { color: var(--text-muted); font-size: 14px; line-height: var(--leading-snug); max-width: 44ch; }
.addon-feature-price { margin-top: var(--space-4); font-family: var(--font-display); font-size: var(--text-lg); color: var(--peach-700); }

.addons-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 620px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
}
.addon-card h3 {
  font-size: var(--text-base);
  color: var(--navy-700);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}
.addon-card .addon-list { list-style: none; margin: 0; padding: 0; }
.addon-card .addon-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 9px 0; border-bottom: 1px dotted var(--border-subtle);
  font-size: 13.5px;
}
.addon-card .addon-list li:last-child { border-bottom: none; padding-bottom: 0; }
.addon-card .addon-list li span:first-child { color: var(--text-body); }
.addon-card .addon-list li span:first-child em { color: var(--text-muted); font-style: normal; font-size: 12px; }
.addon-card .addon-list li span:last-child { font-family: var(--font-display); font-size: 15px; color: var(--peach-700); white-space: nowrap; }
.addon-card .addon-list li span.tbd { font-family: var(--font-body); font-style: italic; color: var(--text-muted); font-size: 12.5px; }
.addons-note { margin-top: var(--space-6); text-align: center; color: var(--text-muted); font-size: 12.5px; }

/* ---------- Menu ---------- */
.menu-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 720px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-cat h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: var(--tracking-wide);
  color: var(--peach-700); margin-bottom: var(--space-3); font-family: var(--font-body); font-weight: 800;
}
.menu-cat ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.menu-cat li { font-size: 14px; padding-bottom: 8px; border-bottom: 1px dotted var(--border-subtle); color: var(--text-body); }
.menu-note { text-align: center; margin-top: var(--space-6); font-size: 13.5px; color: var(--text-muted); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
  background: var(--sky-100);
  box-shadow: var(--shadow-card);
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
@media (min-width: 760px) {
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--duration-base) var(--ease-standard);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--white);
  background: linear-gradient(180deg, rgba(56,69,95,0) 0%, rgba(56,69,95,0.75) 100%);
}

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(51,57,74,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 1000px); max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-size: 15px; font-weight: 700; color: var(--navy-700); font-family: var(--font-body);
}
.faq-q .chev { flex: none; width: 18px; height: 18px; transition: transform var(--duration-base) var(--ease-standard); color: var(--peach-700); }
.faq-item[data-open="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--duration-base) var(--ease-standard); }
.faq-a-inner { padding: 0 20px 20px; font-size: 14px; color: var(--text-muted); line-height: var(--leading-snug); }

/* ---------- Contact / form ---------- */
.contact-wrap { display: grid; gap: var(--space-7); grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-info-card { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-card .icon-badge { flex: none; width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--sky-100); color: var(--navy-700); display: flex; align-items: center; justify-content: center; }
.contact-info-card h4 { font-size: 14px; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--text-muted); }

.form-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11.5px; letter-spacing: var(--tracking-wide); text-transform: uppercase; font-weight: 700; color: var(--navy-700); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--white);
  color: var(--text-body);
  transition: border-color var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(107,123,160,0.2);
}
.field textarea { resize: vertical; min-height: 96px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--border-subtle);
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:has(input:checked) { background: var(--navy-100); border-color: var(--navy-500); }
.chip:has(input:focus-visible) { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.form-status { font-size: 13px; margin-top: 4px; display: none; }
.form-status.error { display: block; color: var(--danger); }
.field-error { font-size: 12px; color: var(--danger); display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .field-error { display: block; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--text-muted); }
.consent-row input { margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--sky-100); padding: var(--space-8) 0 var(--space-6); }
.footer-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-logo img { height: 46px; width: auto; margin-bottom: var(--space-4); }
.footer-address { font-size: 13.5px; color: var(--sky-100); opacity: 0.85; line-height: var(--leading-snug); margin-top: var(--space-3); }
.footer-address a { color: var(--sky-100); text-decoration: underline; text-underline-offset: 2px; }
.footer-address a:hover { color: var(--peach-300); }
.footer-grid p { font-size: 13.5px; color: var(--sky-100); opacity: 0.85; line-height: var(--leading-snug); }
.footer-col h5 { font-size: 12px; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--peach-300); margin-bottom: var(--space-3); }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; color: var(--sky-100); opacity: 0.9; margin-bottom: 10px; }
.footer-col a:hover { color: var(--peach-300); opacity: 1; }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-2); }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: rgba(227,232,238,0.7);
}

/* ---------- WhatsApp floating CTA ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform var(--duration-base) var(--ease-standard);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.bg-sky { background: var(--surface-sky); }
.bg-navy { background: var(--surface-navy); color: var(--text-inverse); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-cream { background: var(--surface-page); }
.bg-white { background: var(--surface-card); }
.two-col { display: grid; gap: var(--space-7); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.rounded-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy-700); color: var(--white); padding: 12px 20px; z-index: 200;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Standalone add-on price rows (used outside .addon-card) */
.addon-list { display: flex; flex-direction: column; }
.addon-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--border-subtle); }
.addon-row:last-child { border-bottom: none; }
.addon-name { font-weight: 600; color: var(--text-body); font-size: 14.5px; }
.addon-desc { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.addon-price { font-family: var(--font-display); color: var(--peach-700); font-size: 16px; white-space: nowrap; flex: none; }

/* ==========================================================================
   V2 — multi-page rebuild additions
   ========================================================================== */

/* ---------- Elegant icon badges ---------- */
.icon-badge {
  position: relative;
  box-shadow: 0 0 0 1px var(--peach-300), 0 0 0 4px var(--surface-page);
}
.card-navy .icon-badge, .bg-navy .icon-badge {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 0 0 4px rgba(255,255,255,0.06);
}
.icon-badge svg { stroke-width: 1.3; }

/* ---------- Flourish divider ---------- */
.flourish {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto var(--space-5);
  color: var(--peach-700);
}
.flourish::before, .flourish::after {
  content: ""; width: 40px; height: 1px; background: var(--border-strong); opacity: 0.5;
}
.flourish svg { width: 14px; height: 14px; }

/* ---------- Sub-page hero (banner) ---------- */
.page-hero {
  position: relative;
  padding: var(--space-9) 0 var(--space-7);
  text-align: center;
  overflow: hidden;
  background: var(--surface-navy);
  color: var(--white);
}
.page-hero picture, .page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(56,69,95,0.75) 0%, rgba(56,69,95,0.68) 60%, rgba(250,248,245,1) 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-hero .eyebrow { color: var(--peach-300); }
.page-hero h1 { font-size: var(--text-3xl); color: var(--white); line-height: var(--leading-tight); }
.page-hero p { margin-top: var(--space-4); color: var(--sky-100); font-size: var(--text-lg); line-height: var(--leading-snug); }
@media (max-width: 640px) { .page-hero h1 { font-size: var(--text-2xl); } }

/* ---------- Breadcrumb-ish crumb (back to hub) ---------- */
.crumb { display: flex; justify-content: center; gap: 8px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sky-100); opacity: 0.85; margin-bottom: var(--space-3); }
.crumb a { color: var(--sky-100); }
.crumb a:hover { color: var(--peach-300); }

/* ---------- Product card (decor / balloons / characters) ---------- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .frame { aspect-ratio: 4/5; overflow: hidden; background: var(--sky-100); }
.product-card .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-base) var(--ease-standard); }
.product-card:hover .frame img { transform: scale(1.04); }
.product-card .body { padding: var(--space-5); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card h3 { font-size: var(--text-base); }
.product-card p { font-size: 13px; color: var(--text-muted); line-height: var(--leading-snug); }
.product-card .price-row { margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; align-items: baseline; border-top: 1px dotted var(--border-subtle); }
.product-card .price { font-family: var(--font-display); font-size: var(--text-lg); color: var(--peach-700); }
.product-card .price.tbd { font-family: var(--font-body); font-size: 13px; font-style: italic; color: var(--text-muted); }

/* ---------- Category intro block (Decor vs Balloons split) ---------- */
.category-block { margin-bottom: var(--space-9); }
.category-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-6); }
.category-head h2 { font-size: var(--text-2xl); }
.category-head p { margin-top: 10px; color: var(--text-muted); font-size: 15px; }

/* ---------- Portfolio masonry-ish grid ---------- */
.portfolio-grid { column-count: 1; column-gap: 16px; }
@media (min-width: 640px) { .portfolio-grid { column-count: 2; } }
@media (min-width: 1020px) { .portfolio-grid { column-count: 3; } }
.portfolio-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; cursor: zoom-in; }
.portfolio-item img { width: 100%; display: block; }
.portfolio-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
  font-size: 12px; font-weight: 600; color: var(--white);
  background: linear-gradient(180deg, rgba(56,69,95,0) 0%, rgba(56,69,95,0.78) 100%);
}

/* ---------- Package v2 (total price emphasis) ---------- */
.pkg-price-total { font-family: var(--font-display); font-size: var(--text-3xl); color: var(--navy-700); line-height: 1; }
.card-navy .pkg-price-total { color: var(--white); }
.pkg-price-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }
.card-navy .pkg-price-sub { color: var(--sky-100); }

/* ---------- Protein choice chips (informational, not interactive) ---------- */
.protein-note { background: var(--sky-100); border-radius: var(--radius-md); padding: 14px 16px; font-size: 12.5px; color: var(--text-body); line-height: var(--leading-snug); margin-top: var(--space-4); }
.protein-note strong { color: var(--navy-700); }

/* ---------- Hub cards (Inicio -> overview links to each page) ---------- */
.hub-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.hub-card .frame { aspect-ratio: 4/3; overflow: hidden; }
.hub-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.hub-card .body { padding: var(--space-5); }
.hub-card h3 { font-size: var(--text-lg); color: var(--navy-700); margin-bottom: 6px; }
.hub-card p { font-size: 13.5px; color: var(--text-muted); line-height: var(--leading-snug); }
.hub-card .go { margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--peach-700); letter-spacing: 0.04em; text-transform: uppercase; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
