:root {
  --navy: #12202e;
  --accent: #c9a77f;
  --accent-soft: #f0e6d8;
  --color-primary: #c9a77f;
  --color-primary-dark: #a37f56;
  --bg: #fff;
  --card: #fff;
  --text: #12202e;
  --muted: #6b7280;
  --line: #ebe6e1;
  --ok: #1f7a4d;
  --bad: #b42318;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.app { min-height: 100vh; }
button, a { font: inherit; }
button { color: inherit; }

.site-header {
  position: relative; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 84px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-right { justify-content: flex-end; }
.logo-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  overflow: hidden; max-width: 100%; z-index: 0;
}
.logo-btn img { height: 52px; display: block; max-width: 100%; }
.nav-link {
  isolation: isolate;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 8px 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  color: var(--navy);
  transition: color .3s cubic-bezier(.58, .3, .005, 1);
}
.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  z-index: -1;
  transform: scale(.5);
  opacity: 0;
  transition: transform .3s cubic-bezier(.58, .3, .005, 1), opacity .3s cubic-bezier(.58, .3, .005, 1);
}
.nav-link:hover, .nav-link:focus-visible { color: #fff; }
.nav-link:hover::before, .nav-link:focus-visible::before {
  transform: scale(1); opacity: 1;
}
.book-btn {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  border: 0; border-radius: 999px;
  background: var(--accent); color: var(--navy);
  font-weight: 800; padding: 10px 16px; cursor: pointer;
  margin-left: 12px;
  pointer-events: auto;
}
.book-btn.is-mobile { display: none; }
.lang-switch { position: relative; display: inline-block; z-index: 6; margin-left: 12px; }
.lang-now {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 6px 6px 7px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; cursor: pointer; color: var(--navy); font-weight: 800;
}
.lang-now > * { pointer-events: none; }
.lang-now:hover, .lang-switch.open .lang-now { border-color: var(--navy); }
.lang-flag {
  display: block; width: 22px; height: 15px; border-radius: 2px;
  overflow: hidden; border: 1px solid rgba(18, 32, 46, .16); line-height: 0;
}
.lang-flag svg { display: block; width: 100%; height: 100%; }
.lang-caret { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  z-index: 50; min-width: 176px; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(18,32,46,.08);
}
.lang-switch.open .lang-menu { display: grid; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px;
  background: none; border: 0; text-align: left;
  padding: 11px 14px; font-weight: 700; cursor: pointer; color: var(--navy);
}
.lang-menu button:hover, .lang-menu button.on { background: var(--accent-soft); }
.lang-name { font-size: 14px; }
.lang-switch.is-mobile { display: none; }
.burger {
  display: none; background: var(--navy); color: #fff; border: 0;
  width: 41px; height: 41px; padding: 9px; border-radius: 50%; cursor: pointer;
}
.burger svg { display: block; width: 23px; height: 23px; fill: currentColor; }
.burger .ico-close { display: none; }
.burger.open .ico-bars { display: none; }
.burger.open .ico-close { display: block; }
.mobile-nav { display: none; }
.mobile-nav.open {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: max(96px, calc(env(safe-area-inset-top) + 72px)) 24px 40px;
  background: var(--accent);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.hero, .page-head, .story, .home-grid, .compose-cta, .philo-teaser, .menu-wrap {
  max-width: 1180px; margin: 0 auto; padding: 48px 28px;
}
.hero { padding-top: 72px; padding-bottom: 36px; }
.hero.is-visual {
  max-width: none; margin: 0; padding: 0;
  position: relative; overflow: hidden;
  min-height: min(78vh, 760px);
  display: flex; align-items: flex-end;
  background: var(--navy);
}
.hero-media, .hero-veil { position: absolute; inset: 0; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero-media img.on { opacity: 1; transform: none; }
.hero-veil {
  background:
    linear-gradient(180deg, rgba(18,32,46,.18) 0%, rgba(18,32,46,.28) 42%, rgba(18,32,46,.82) 100%),
    linear-gradient(90deg, rgba(18,32,46,.55) 0%, rgba(18,32,46,.12) 58%, transparent 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%;
  margin: 0 auto; padding: 80px 28px 56px;
}
.hero.is-visual h1 { color: #fff; }
.hero.is-visual .lede { color: rgba(255,255,255,.84); max-width: 560px; }
.hero.is-visual .btn-ghost {
  color: #fff; border: 1.5px solid rgba(255,255,255,.55);
}
.hero.is-visual .btn-ghost:hover { background: rgba(255,255,255,.12); }
.hero-dots {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 18px;
  display: flex; justify-content: center; gap: 8px;
}
.hero-dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.38); cursor: pointer;
}
.hero-dots button.on { background: var(--accent); transform: scale(1.2); }
.eyebrow {
  margin: 0 0 8px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); font-size: 13px;
}
.hero h1, .page-head h1, .story h1, .philo-hero h1 {
  margin: 0 0 16px; font-size: clamp(42px, 7vw, 84px);
  line-height: .95; font-weight: 900; letter-spacing: -.03em;
}
.hero .lede, .page-head p { color: var(--muted); font-size: 18px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
a.nav-link, a.book-btn, a.mobile-nav-link, a.product-name, a.product-media, a.logo-btn { text-decoration: none; color: inherit; }
.faq-list { display: grid; gap: 10px; max-width: 760px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.faq-list summary { font-weight: 800; cursor: pointer; }
.faq-list p { margin: 10px 0 0; color: var(--muted); }
.center-actions { text-align: center; margin-top: 28px; }

.product-grid, .service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card, .card, .service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
}
.product-card, .service-card { overflow: hidden; display: flex; flex-direction: column; }
.product-media, .service-media {
  background: var(--accent-soft); border: 0; padding: 0; cursor: pointer;
}
.product-media img, .product-hero > img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}
.product-media.is-profile, .product-hero.is-profile > img { background: #eceae6; }
.product-media.is-profile img, .product-hero.is-profile > img {
  aspect-ratio: 16 / 9; object-fit: contain;
}
.product-body, .service-card { padding: 18px; display: grid; gap: 10px; }
.service-card { padding: 24px; }
.product-name, .service-card h3 {
  background: none; border: 0; padding: 0; text-align: left;
  font-size: 22px; font-weight: 900; cursor: pointer; margin: 0;
}
.product-body p, .service-card p, .product-hero p {
  margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45;
}
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card li { font-size: 14px; padding: 4px 0; }
.service-card li::before { content: "✓ "; color: var(--accent); font-weight: 800; }
a.service-card { text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; }
a.service-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc-copy { max-width: 760px; }
.svc-copy p { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }
.home-grid h2 { margin: 0 0 20px; font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -.03em; }
.stretch-3d { max-width: 1100px; margin: 0 auto; padding: 0 28px 28px; display: grid; gap: 28px; }
.stretch-3d-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.stretch-3d-view { height: min(52vh, 460px); background: #eceae6; cursor: grab; touch-action: none; }
.stretch-3d-view:active { cursor: grabbing; }
.stretch-3d-view canvas { display: block; width: 100%; height: 100%; }
.stretch-3d-meta { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 24px 24px; }
.stretch-3d-meta h2 { margin: 0 0 6px; font-size: clamp(22px, 3vw, 32px); }
.stretch-3d-meta p { margin: 0; color: var(--muted); }
.specs { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 700; }
.ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--accent); color: var(--navy);
  display: grid; place-items: center;
}
.ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.compose-cta, .philo-teaser, .philo-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.compose-cta h2, .philo-copy h2, .philo-signatures h2 {
  margin: 0 0 12px; font-size: clamp(32px, 5vw, 52px); line-height: 1.05; font-weight: 900;
}
.philo-photo {
  width: 100%; display: block; border-radius: 20px; object-fit: cover;
  background: var(--accent-soft); aspect-ratio: 3 / 2;
}
.philo-photo.is-portrait { aspect-ratio: 3 / 4; max-height: 640px; }
.philo-copy p, .philo-pillar p { margin: 0 0 12px; font-size: 18px; line-height: 1.65; }
.philo-hero, .philo-block, .philo-pillars, .philo-signatures {
  max-width: 1180px; margin: 0 auto; padding: 28px 28px 48px;
}
.philo-hero { padding-top: 56px; padding-bottom: 8px; }
.philo-block.is-reverse { direction: rtl; }
.philo-block.is-reverse > * { direction: ltr; }
.philo-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 0; }
.philo-pillar { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.philo-pillar strong { display: block; margin-bottom: 8px; font-size: 18px; }

.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.cat-tabs button {
  border: 0; border-radius: 999px; padding: 10px 16px;
  background: #f3f1ee; font-weight: 800; cursor: pointer;
}
.cat-tabs button.on { background: var(--accent); color: var(--navy); }

.product-hero {
  max-width: 1100px; margin: 0 auto; padding: 40px 28px 64px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start;
}
.product-hero img { border-radius: 18px; background: var(--accent-soft); }
.back-link { background: none; border: 0; padding: 0; font-weight: 800; cursor: pointer; margin-bottom: 12px; }
a.back-link { display: inline-block; text-decoration: none; color: inherit; }
.hero-price { display: block; font-size: 28px; margin: 16px 0; }

.site-footer { background: var(--navy); color: #fff; padding: 48px 28px 64px; margin-top: 24px; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px;
}
.site-footer h3, .site-footer h4 { margin: 0 0 10px; }
.site-footer p { margin: 0 0 8px; color: rgba(255,255,255,.78); }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer button { background: none; border: 0; color: #fff; padding: 0; cursor: pointer; font-weight: 700; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 999px; background: rgba(255,255,255,.14); color: #fff;
}
.socials a:hover { background: var(--accent); color: var(--navy); }
.socials a svg { width: 18px; height: 18px; fill: currentColor; }
.nl { display: flex; gap: 8px; margin-top: 12px; }
.nl input, .nl button { padding: 12px 14px; border: 0; }
.nl input { flex: 1; }
.nl button { background: var(--accent); color: var(--navy); font-weight: 800; cursor: pointer; }
.nl-msg { margin: 8px 0 0; font-size: 13px; font-weight: 700; }
.nl-msg.ok { color: #8ee0b0; }
.nl-msg.err { color: #ffb4ae; }
.footer-legal { max-width: 1180px; margin: 28px auto 0; color: rgba(255,255,255,.5); font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.contact-grid .card, .card { padding: 20px; }
.contact-page p a { color: var(--navy); font-weight: 800; text-decoration: none; box-shadow: inset 0 -2px 0 var(--accent); }
.shop-map { width: 100%; height: 280px; border: 0; border-radius: 14px; margin-top: 14px; background: #f3f1ee; }

.btn {
  border: 0; border-radius: 12px; padding: 13px 18px; font-weight: 800; cursor: pointer;
}
a.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: inherit; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-accent { background: var(--accent); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-wide { width: 100%; }

.page { padding: 36px 40px 80px; max-width: 980px; margin: 0 auto; }
.page h1 { margin: 0 0 8px; font-size: 32px; }
.meta { color: var(--muted); font-size: 13px; line-height: 1.45; }
.err { color: var(--bad); font-size: 13px; margin: 0 0 10px; }
.ok { color: var(--ok); }
.empty { text-align: center; color: var(--muted); padding: 40px 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.chip { background: var(--accent-soft); border-radius: 999px; padding: 3px 8px; font-size: 12px; font-weight: 600; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { text-align: center; padding: 28px 22px; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 12px 32px rgba(201,167,127,.18); }
.price-card .badge {
  display: inline-block; background: var(--accent); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px; padding: 4px 10px; margin-bottom: 10px;
}
.price-card h4 { margin: 0 0 8px; font-size: 20px; }
.price-card .amount { font-size: 36px; font-weight: 900; margin: 8px 0; }
.price-card .amount small { display: block; font-size: 13px; color: var(--muted); font-weight: 600; }
.price-card ul { list-style: none; padding: 0; margin: 12px 0 20px; text-align: left; }
.price-card li { padding: 6px 0; font-size: 14px; }
.price-card li::before { content: "✓ "; color: var(--accent); font-weight: 800; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.partner-tile { text-align: center; padding: 24px; }
.partner-tile .star { color: var(--accent); letter-spacing: .12em; margin-bottom: 8px; }
.partner-tile h4 { margin: 0 0 6px; }
.partner-tile p { margin: 0; color: var(--muted); font-size: 13px; }

.wizard { display: grid; gap: 20px; }
.steps-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.steps-bar .step {
  flex: 1; min-width: 120px; padding: 12px 14px; border-radius: 12px;
  background: #f3f1ee; font-weight: 800; font-size: 13px; text-align: center;
}
.steps-bar .step.on { background: var(--accent); }
.steps-bar .step.done { background: var(--accent-soft); }
.type-picks, .choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice {
  border: 2px solid var(--line); background: #fff; border-radius: 14px;
  padding: 16px; text-align: left; cursor: pointer; font-weight: 800;
}
.choice.on { border-color: var(--accent); background: var(--accent-soft); }
.choice h4 { margin: 0 0 4px; }
.choice .small { font-size: 13px; color: var(--muted); font-weight: 600; }
.choice .price { color: var(--accent); font-size: 14px; }
.form { display: grid; gap: 12px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label, .checkout-fields label { display: block; font-weight: 800; font-size: 13px; margin-bottom: 6px; }
.form input, .form textarea, .form select,
.checkout-fields input, .checkout-fields textarea, .checkout-fields select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 16px; background: #fff; color: var(--navy);
}
.checkout-fields { display: grid; gap: 12px; }
.checkout-fields .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-fields.is-parked {
  position: fixed !important; left: -100vw; top: 0; width: 320px;
  opacity: 0; pointer-events: none;
}
.toggle { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.summary-box { padding: 20px; }
.summary-box dl { display: grid; grid-template-columns: 120px 1fr; gap: 6px 12px; margin: 0; }
.summary-box dt { color: var(--muted); font-size: 13px; }
.summary-box dd { margin: 0; font-weight: 700; }
.desktop-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.footer-bar { display: none; }

.wed-board {
  max-width: 1280px;
  margin: 0 auto 24px;
  padding: 36px 28px 48px;
  background: #12202e;
  color: #fff;
  border-radius: 0;
}
.wed-board h2 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.wed-board .eyebrow { color: var(--accent); }
.wed-from, .wed-includes-title { color: rgba(255,255,255,.72); margin: 0 0 12px; }
.wed-includes {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 8px;
}
.wed-includes li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.4; }
.wed-includes li span {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; flex: none; font-size: 12px; font-weight: 800;
}
.wed-includes .ok span { background: var(--accent); color: var(--navy); }
.wed-includes .no span { background: #5c2a2a; color: #ffb4ae; }
.wed-table-wrap { overflow-x: auto; }
.wed-table {
  width: 100%; border-collapse: separate; border-spacing: 0 12px;
  min-width: 860px;
}
.wed-table th, .wed-table td { text-align: center; vertical-align: middle; }
.wed-table thead th {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 800; padding: 0 8px 8px;
}
.wed-table thead img {
  width: 120px; height: 56px; object-fit: contain; border-radius: 10px;
  display: block; margin: 0 auto 8px; background: #fff;
}
.wed-table tbody tr { background: rgba(255,255,255,.06); }
.wed-table tbody th, .wed-table tbody td {
  padding: 16px 12px;
}
.wed-table tbody th { text-align: left; border-radius: 16px 0 0 16px; }
.wed-table tbody td:last-child { border-radius: 0 16px 16px 0; }
.wed-tag {
  display: inline-block; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.wed-table tbody th strong { display: block; font-size: 15px; margin-bottom: 6px; }
.wed-table tbody th small { display: block; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 500; }
.wed-table tbody td strong { display: block; font-size: 18px; margin-bottom: 10px; }
.wed-table td.is-empty { color: rgba(255,255,255,.35); font-weight: 700; }
.wed-book {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: #e8e4dc; color: var(--navy); font-size: 12px; font-weight: 800;
  text-decoration: none; text-transform: uppercase; letter-spacing: .04em;
}
.wed-book:hover { background: var(--accent); }
.wed-partner-cta {
  max-width: 1280px; margin: 0 auto 40px; padding: 0 28px;
  display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  align-items: center;
}
.wed-partner-cta img {
  width: 100%; height: 110px; object-fit: cover; border-radius: 16px;
}
.wed-partner-cta p { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.wed-partner-cta a { color: var(--navy); font-weight: 800; }
.wed-partner-cta small { display: block; color: var(--muted); margin-top: 4px; }
.partner-grid.is-wedding { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.partner-tile.is-wedding img {
  width: 100%; height: 88px; object-fit: contain; background: #f6f3ee;
  border-radius: 10px; margin-bottom: 12px;
}
.partner-tile.is-wedding a { font-weight: 700; color: var(--navy); }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { z-index: 210; }
  .site-header-inner { grid-template-columns: 1fr auto auto auto; padding: 10px 12px; min-height: 68px; gap: 8px; z-index: 6; }
  .nav-left, .nav-right { display: none; }
  .logo-btn { justify-self: start; }
  .lang-switch.is-mobile { display: block; margin: 0; }
  .book-btn.is-mobile { display: inline-flex; padding: 8px 12px; font-size: 12px; margin: 0; }
  .burger { display: block; }
  html.nav-open, html.nav-open body { overflow: hidden; }
  body.nav-open .site-header { background: transparent; border-bottom-color: transparent; }
  body.nav-open .book-btn.is-mobile, body.nav-open .lang-switch.is-mobile {
    visibility: hidden; pointer-events: none;
  }
  .mobile-nav {
    display: flex; position: fixed; inset: 0; z-index: 100;
    align-items: center; justify-content: center;
    padding: max(96px, calc(env(safe-area-inset-top) + 72px)) 24px 40px;
    background: var(--accent);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, transform .32s ease;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-nav-panel { width: min(420px, 100%); display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .mobile-nav-links { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .mobile-nav-link {
    appearance: none; background: none; border: 0; width: 100%;
    padding: 10px 8px; font-weight: 900;
    font-size: clamp(26px, 8vw, 40px); letter-spacing: -.03em;
    text-transform: uppercase; color: var(--navy); cursor: pointer; text-align: center;
  }
  .mobile-nav-link.on { color: #fff; }
  .logo-btn img { height: 40px; }
  .hero:not(.is-visual), .page-head, .story, .home-grid, .compose-cta, .philo-teaser,
  .philo-hero, .philo-block, .philo-pillars, .philo-signatures, .menu-wrap, .stretch-3d,
  .wed-board, .wed-partner-cta { padding: 28px 16px; }
  .wed-partner-cta { grid-template-columns: 1fr; }
  .stretch-3d-meta { flex-direction: column; align-items: flex-start; }
  .stretch-3d-view { height: 42vh; }
  .hero.is-visual { min-height: 70vh; }
  .hero-copy { padding: 48px 16px 64px; }
  .product-grid, .service-grid, .compose-cta, .philo-teaser, .philo-block,
  .philo-pillars, .contact-grid, .product-hero, .footer-grid, .price-grid,
  .partner-grid, .form .row, .checkout-fields .row, .type-picks, .choice-grid {
    grid-template-columns: 1fr;
  }
  .philo-block.is-reverse { direction: ltr; }
  .site-footer { text-align: center; }
  .footer-grid { justify-items: center; }
  .desktop-actions { display: none; }
  .footer-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff; border-top: 1px solid var(--line);
    justify-content: space-between; gap: 10px;
    padding: 12px 16px 18px; z-index: 20;
  }
  html[data-view="booking"] .page { padding-bottom: 120px; }
  .page { padding: 20px 16px 40px; }
}

.vx-picker { position: relative; }
.vx-picker-btn {
  width: 100%; padding: 14px; background: #fff;
  border: 2px solid #e5e7eb; border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  cursor: pointer; font: inherit; font-size: 14px; font-weight: 600; color: #1e293b;
  transition: border-color .2s;
}
.vx-picker.open .vx-picker-btn { border-color: var(--color-primary); }
.vx-picker-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.vx-picker-left svg { width: 16px; height: 16px; color: var(--color-primary); flex: none; }
.vx-picker-btn .vx-chev { width: 14px; height: 14px; color: #cbd5e1; flex: none; }
.vx-picker-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vx-picker-label.is-empty { color: #94a3b8; }
.vx-date-pop, .vx-time-pop {
  position: absolute; bottom: 100%; left: 0; margin-bottom: 8px;
  background: #fff; border-radius: 16px; border: 2px solid #f1f5f9;
  box-shadow: 0 -10px 40px rgba(0,0,0,.15); z-index: 50;
}
.vx-date-pop { width: 360px; max-width: calc(100vw - 32px); padding: 16px; }
.vx-time-pop { left: 0; right: 0; max-height: 240px; overflow-y: auto; }
.vx-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vx-cal-head strong { font-size: 15px; }
.vx-cal-nav {
  width: 36px; height: 36px; border: 0; border-radius: 50%; background: #f8fafc;
  cursor: pointer; display: flex; align-items: center; justify-content: center; color: #64748b;
}
.vx-cal-nav svg { width: 14px; height: 14px; }
.vx-cal-dow, .vx-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.vx-cal-dow { margin-bottom: 6px; }
.vx-cal-dow span {
  height: 32px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px;
}
.vx-cal-empty { height: 40px; }
.vx-cal-day {
  width: 40px; height: 40px; margin: 0 auto; border-radius: 12px;
  border: 2px solid transparent; background: transparent; color: #1e293b;
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.vx-cal-day.is-today { border-color: var(--color-primary); background: rgba(201,167,127,.08); font-weight: 700; }
.vx-cal-day.is-selected {
  border-color: transparent; color: #fff; font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}
.vx-cal-day.is-past { color: #cbd5e1; cursor: not-allowed; }
.vx-time-slot {
  display: block; width: 100%; padding: 10px 16px; text-align: left;
  font-size: 14px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  border: 0; border-bottom: 1px solid #f1f5f9; background: transparent; color: #1e293b; cursor: pointer;
}
.vx-time-slot.is-selected {
  font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.addr-wrap { position: relative; margin-bottom: 0; }
.addr-wrap .field { margin-bottom: 0; padding-right: 76px; }
.addr-aside {
  position: absolute; right: 12px; top: 0; bottom: 0;
  display: flex; align-items: center; pointer-events: none;
}
.addr-npa {
  font-size: 12px; font-weight: 800; letter-spacing: .03em;
  color: #92400E; background: #FEF3C7; border-radius: 8px; padding: 4px 8px;
}
.addr-loader {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #FDE68A; border-top-color: var(--color-primary);
  animation: vx-spin .6s linear infinite;
}
@keyframes vx-spin { to { transform: rotate(360deg); } }
.addr-suggest {
  position: fixed; z-index: 80; background: #fff;
  border: 1.5px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, .16);
  max-height: 240px; overflow: auto; padding: 4px 0;
}
.addr-suggest button {
  display: block; width: 100%; text-align: left;
  padding: 8px 12px; border: 0; background: transparent;
  cursor: pointer; font: inherit; color: inherit;
}
.addr-suggest button:hover { background: #FEF3C7; }
.addr-suggest .addr-line { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.addr-suggest .sub { font-size: 11px; color: var(--muted); margin-top: 1px; }

.yt-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 28px 64px;
}
.yt-block h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -.03em;
}
.yt-block > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 22px;
  line-height: 1.55;
}
.yt-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(18, 32, 46, .18);
}
.yt-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vx-voice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.vx-voice[hidden] { display: none; }
.vx-voice-card {
  pointer-events: none;
  background: rgba(18, 32, 46, .92);
  color: #fff;
  border: 1px solid rgba(201, 167, 127, .45);
  border-radius: 16px;
  padding: 10px 14px;
  min-width: 132px;
  box-shadow: 0 12px 32px rgba(18, 32, 46, .28);
}
.vx-voice-caption {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.vx-voice-track {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}
.vx-voice-orb {
  pointer-events: auto;
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: radial-gradient(circle at 30% 28%, #2a4158, var(--navy) 68%);
  color: var(--accent);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(18, 32, 46, .38), 0 0 0 6px rgba(201, 167, 127, .12);
}
.vx-voice-orb svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  position: relative;
  z-index: 2;
}
.vx-voice.is-playing .vx-voice-play,
.vx-voice:not(.is-playing) .vx-voice-pause { display: none; }
.vx-voice-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--p) * 360deg), transparent 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  opacity: .85;
}
.vx-voice-bars {
  position: absolute;
  bottom: 8px;
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
  z-index: 2;
}
.vx-voice.is-playing .vx-voice-bars { display: flex; }
.vx-voice-bars i {
  display: block;
  width: 3px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: vx-voice-bar .7s ease-in-out infinite alternate;
}
.vx-voice-bars i:nth-child(2) { animation-delay: .12s; height: 8px; }
.vx-voice-bars i:nth-child(3) { animation-delay: .24s; }
.vx-voice.is-idle .vx-voice-orb { animation: vx-voice-vibe 1.35s ease-in-out infinite; }
.vx-voice.is-playing .vx-voice-orb { animation: vx-voice-vibe .55s ease-in-out infinite; }
@keyframes vx-voice-vibe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  20% { transform: translate3d(-2px, 1px, 0) scale(1.05); }
  40% { transform: translate3d(2px, -2px, 0) scale(1.07); }
  60% { transform: translate3d(-1px, -1px, 0) scale(1.03); }
  80% { transform: translate3d(1px, 2px, 0) scale(1.06); }
}
@keyframes vx-voice-bar {
  from { transform: scaleY(.45); }
  to { transform: scaleY(1.2); }
}

@media (max-width: 760px) {
  .yt-block { padding: 28px 16px 40px; }
  .vx-voice { right: 12px; bottom: 16px; }
  html[data-view="booking"] .vx-voice { bottom: 92px; }
  .vx-voice-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .nav-link, .nav-link::before { transition: none; }
  .addr-loader { animation: none; }
  .hero-media img { transition: none; transform: none; }
  .vx-voice.is-idle .vx-voice-orb,
  .vx-voice.is-playing .vx-voice-orb,
  .vx-voice-bars i { animation: none; }
}
