:root {
  --cream: #f5efe5;
  --paper: #fbf8f2;
  --green: #17352d;
  --green-soft: #315247;
  --green-dark: #0c211b;
  --rose: #8f3346;
  --terracotta: #b45c3f;
  --gold: #c5a46d;
  --ink: #1d211e;
  --muted: #6d716c;
  --line: rgba(23, 53, 45, 0.16);
  --white: #fff;
  --shadow: 0 24px 70px rgba(24, 34, 29, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--green);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.demo-ribbon {
  background: var(--green-dark);
  color: rgba(255,255,255,.82);
  text-align: center;
  font-size: .74rem;
  letter-spacing: .09em;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 53, 45, .08);
}
.nav-shell {
  width: var(--container);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--rose);
  border: 1px solid rgba(143, 51, 70, .28);
  border-radius: 50%;
  flex: 0 0 auto;
}
.brand-mark svg { width: 31px; height: 31px; }
.brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  color: var(--green-dark);
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .69rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--rose);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-order {
  text-decoration: none;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 12px 19px;
  font-weight: 700;
  font-size: .82rem;
  transition: transform .2s ease, background .2s ease;
}
.nav-order:hover { transform: translateY(-2px); background: var(--rose); border-color: var(--rose); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 11px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 4px;
  background: var(--green);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  width: var(--container);
  margin: 0 auto;
  padding: 4px 0 22px;
  display: grid;
  gap: 4px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding: 13px 2px;
  font-weight: 600;
}
.mobile-menu .mobile-cta {
  text-align: center;
  color: white;
  background: var(--green);
  border-radius: 14px;
  margin-top: 8px;
  border: 0;
}

.section-pad { padding: 110px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.light { color: #e9c99c; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.035em;
}
h2 { font-size: clamp(2.6rem, 5.2vw, 5.2rem); }

.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(143,51,70,.09), transparent 33%),
    linear-gradient(180deg, var(--paper), var(--cream));
  padding-top: 78px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -220px;
  border: 1px solid rgba(197,164,109,.3);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  align-items: center;
  gap: 74px;
}
.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: clamp(3.7rem, 6.5vw, 7.4rem);
}
.hero-copy h1 em { color: var(--rose); font-style: italic; font-weight: 500; }
.hero-lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--rose); box-shadow: 0 14px 30px rgba(143,51,70,.18); }
.button-primary:hover { background: #76283a; box-shadow: 0 18px 36px rgba(143,51,70,.24); }
.button-outline { color: var(--green); border-color: rgba(23,53,45,.32); background: rgba(255,255,255,.24); }
.button-outline:hover { background: var(--green); color: white; }
.button-light { color: var(--green-dark); background: #f7e7cb; }
.button-light:hover { background: white; }
.button-ghost { color: white; border-color: rgba(255,255,255,.35); }
.button-ghost:hover { background: white; color: var(--green-dark); }
.button-full { width: 100%; border-radius: 14px; }
.hero-points {
  list-style: none;
  margin: 44px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 690px;
}
.hero-points li { color: var(--green); font-size: .82rem; font-weight: 700; }
.hero-points span { display: block; color: var(--gold); font-family: "Fraunces", serif; font-size: 1.05rem; margin-bottom: 4px; }
.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap {
  height: min(650px, 66vw);
  min-height: 500px;
  overflow: hidden;
  border-radius: 230px 230px 30px 30px;
  box-shadow: var(--shadow);
  background: #d9ddd9;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-note {
  position: absolute;
  left: -74px;
  bottom: 42px;
  width: min(300px, 80%);
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 20px;
  padding: 19px 21px;
  box-shadow: var(--shadow);
}
.hero-note p { margin: 0; font-size: .87rem; color: var(--muted); }
.hero-note strong { color: var(--green-dark); }
.note-icon { color: var(--gold); font-size: 1.35rem; line-height: 1; }
.hero-stamp {
  position: absolute;
  right: -30px;
  top: 42px;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: #f9e5bd;
  background: var(--green);
  border: 7px solid var(--cream);
  transform: rotate(8deg);
}
.hero-stamp span { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-stamp strong { font-family: "Fraunces", serif; font-size: 1.55rem; }

.marquee { overflow: hidden; background: var(--rose); color: #fff5e6; padding: 15px 0; }
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span { text-transform: lowercase; }
.marquee-track b { color: #e9c99c; font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

.menu-section { background: var(--paper); }
.section-heading {
  width: var(--container);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 60px;
  align-items: end;
}
.section-heading h2 { max-width: 790px; margin-bottom: 0; color: var(--green-dark); }
.section-heading > p { margin: 0 0 10px; color: var(--muted); }
.menu-filters {
  width: var(--container);
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover, .filter-btn.is-active { background: var(--green); color: white; border-color: var(--green); }
.menu-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
}
.menu-feature {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #312c28;
}
.menu-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,16,.92), transparent 60%);
}
.menu-feature img { width: 100%; height: 100%; object-fit: cover; }
.feature-overlay {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: white;
}
.feature-overlay span { color: #e9c99c; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.feature-overlay h3 { margin: 8px 0 4px; font-family: "Fraunces", serif; font-size: 2.4rem; }
.feature-overlay p { margin: 0 0 12px; color: rgba(255,255,255,.76); }
.feature-overlay strong { font-family: "Fraunces", serif; font-size: 1.35rem; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.menu-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 25px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .2s ease;
}
.menu-card:hover { transform: translateY(-5px); border-color: rgba(143,51,70,.38); box-shadow: 0 18px 42px rgba(35,44,39,.08); }
.menu-card.is-hidden { display: none; }
.menu-number { color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.menu-card h3 { margin: 7px 0 5px; color: var(--green-dark); font-family: "Fraunces", serif; font-size: 1.42rem; }
.menu-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.menu-card > strong { color: var(--rose); font-family: "Fraunces", serif; font-size: 1.15rem; }
.menu-callout {
  width: var(--container);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 1px dashed rgba(23,53,45,.28);
  border-radius: 20px;
  padding: 20px 24px;
  color: var(--muted);
}
.menu-callout p { margin: 0; }
.menu-callout strong { color: var(--green-dark); }
.text-link { color: var(--rose); font-weight: 800; text-decoration: none; white-space: nowrap; }

.story-section { background: var(--green); color: white; position: relative; overflow: hidden; }
.story-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(233,201,156,.22);
  border-radius: 50%;
}
.story-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 78px;
}
.story-media { position: relative; min-width: 0; }
.story-media img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; border-radius: 220px 220px 28px 28px; }
.story-badge {
  position: absolute;
  right: -28px;
  bottom: 60px;
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  border: 8px solid var(--green);
}
.story-badge strong { font-family: "Fraunces", serif; font-size: 1.6rem; }
.story-badge span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.story-copy h2 { max-width: 700px; margin-bottom: 26px; color: #fff7e9; }
.story-copy > p:not(.eyebrow) { max-width: 660px; color: rgba(255,255,255,.72); font-size: 1.04rem; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 38px 0;
}
.story-stats div { border-left: 1px solid rgba(255,255,255,.22); padding-left: 16px; }
.story-stats strong { display: block; color: #e9c99c; font-family: "Fraunces", serif; font-size: 2rem; }
.story-stats span { color: rgba(255,255,255,.66); font-size: .78rem; }

.experience-section { background: var(--cream); }
.experience-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: center;
}
.experience-copy h2 { color: var(--green-dark); margin-bottom: 24px; }
.experience-copy > p:not(.eyebrow) { color: var(--muted); }
.amenities { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 12px; }
.amenities li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--green); }
.amenities span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(143,51,70,.1); color: var(--rose); }
.experience-gallery {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr .56fr;
  gap: 16px;
}
.experience-gallery figure { margin: 0; overflow: hidden; border-radius: 24px; min-width: 0; }
.experience-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { grid-row: 1 / 3; }
.gallery-tall { grid-column: 2; grid-row: 1; }
.gallery-small { grid-column: 2; grid-row: 2; }
.gallery-small img { object-position: center 58%; }

.visit-section { background: var(--paper); }
.visit-card {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 70px;
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(143,51,70,.35), transparent 35%),
    var(--green-dark);
  border-radius: 42px;
  padding: clamp(34px, 6vw, 76px);
  box-shadow: var(--shadow);
}
.visit-copy h2 { max-width: 650px; color: #fff7e9; margin-bottom: 22px; }
.visit-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.visit-copy em { font-size: .78rem; color: rgba(255,255,255,.5); }
.hours { margin: 32px 0; display: grid; gap: 14px; max-width: 480px; }
.hours div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 12px; }
.hours span { color: rgba(255,255,255,.58); }
.hours strong { color: #f1d7a8; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.brief-form {
  align-self: start;
  color: var(--ink);
  background: #fffaf0;
  border-radius: 26px;
  padding: 28px;
}
.form-kicker { margin: 0 0 3px; color: var(--rose); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.brief-form h3 { font-family: "Fraunces", serif; font-size: 2rem; margin-bottom: 22px; color: var(--green-dark); }
.brief-form label { display: grid; gap: 7px; margin-bottom: 14px; font-size: .8rem; font-weight: 800; color: var(--green-dark); }
.brief-form input, .brief-form select, .brief-form textarea {
  width: 100%;
  border: 1px solid rgba(23,53,45,.18);
  background: white;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(143,51,70,.1); }
.brief-form small { display: block; color: var(--muted); margin-top: 12px; text-align: center; }

.faq-section { background: var(--cream); }
.faq-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 80px;
}
.faq-intro h2 { color: var(--green-dark); font-size: clamp(2.5rem,4.5vw,4.5rem); }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.accordion details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.accordion summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--green-dark);
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: sans-serif; transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); background: var(--green); color: white; }
.accordion details p { margin: 0 50px 20px 0; color: var(--muted); }

.site-footer { background: #081712; color: rgba(255,255,255,.68); padding: 70px 0 24px; }
.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .72fr);
  gap: 50px;
}
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid > div:first-child { max-width: 390px; }
.footer-brand strong { color: #fff7e9; }
.footer-brand small { color: rgba(255,255,255,.45); }
.footer-grid h3 { margin: 0 0 8px; color: #f1d7a8; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid p { margin: 10px 0 0; font-size: .87rem; }
.footer-grid a { color: rgba(255,255,255,.64); text-decoration: none; font-size: .86rem; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  width: var(--container);
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.4);
  font-size: .74rem;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.07); }
.floating-whatsapp svg { width: 31px; height: 31px; }
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1190;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--green-dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  :root { --container: min(100% - 32px, 980px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 7vw, 5.5rem); }
  .hero-note { left: -32px; }
  .story-grid, .experience-grid { gap: 46px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .nav-order { display: none; }
  .nav-shell { min-height: 76px; }
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 680px; }
  .hero-image-wrap { height: 620px; max-width: 560px; margin: 0 auto; }
  .hero-note { left: 20px; bottom: 22px; }
  .hero-stamp { right: max(0px, calc(50% - 290px)); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .section-heading > p { max-width: 620px; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-feature { min-height: 520px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 560px; }
  .story-media img { aspect-ratio: 5 / 4; border-radius: 32px; }
  .story-badge { right: 20px; bottom: -34px; }
  .story-copy { padding-top: 30px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-copy { max-width: 650px; }
  .experience-gallery { min-height: 590px; }
  .visit-card { grid-template-columns: 1fr; gap: 42px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { max-width: 670px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); --radius-lg: 26px; }
  .demo-ribbon { font-size: .62rem; line-height: 1.4; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark svg { width: 27px; height: 27px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .56rem; max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu-toggle { width: 42px; height: 42px; }
  .section-pad { padding: 70px 0; }
  h2 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-copy h1 { font-size: clamp(3.2rem, 16.3vw, 5rem); line-height: .98; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { grid-template-columns: 1fr; gap: 12px; }
  .hero-points li { display: flex; align-items: center; gap: 12px; }
  .hero-points span { margin: 0; width: 30px; }
  .hero-image-wrap { height: 520px; min-height: 0; border-radius: 180px 180px 24px 24px; }
  .hero-note { position: relative; left: auto; bottom: auto; width: calc(100% - 24px); margin: -38px auto 0; }
  .hero-stamp { width: 100px; height: 100px; right: -8px; top: 24px; border-width: 6px; }
  .marquee-track { font-size: .9rem; gap: 20px; }
  .menu-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .menu-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }
  .menu-feature { min-height: 500px; }
  .feature-overlay { left: 22px; right: 22px; bottom: 22px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 158px; }
  .menu-callout { flex-direction: column; align-items: flex-start; }
  .text-link { white-space: normal; }
  .story-media img { aspect-ratio: 1 / 1.05; }
  .story-badge { width: 108px; height: 108px; right: 10px; bottom: -32px; }
  .story-stats { grid-template-columns: 1fr; }
  .story-stats div { display: flex; align-items: center; gap: 18px; }
  .story-stats strong { min-width: 64px; }
  .experience-gallery { min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 330px 210px; }
  .gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .gallery-tall { grid-column: 1; grid-row: 2; }
  .gallery-small { grid-column: 2; grid-row: 2; }
  .visit-card { border-radius: 28px; padding: 30px 20px; }
  .hours div { flex-direction: column; gap: 2px; }
  .visit-actions { flex-direction: column; }
  .visit-actions .button { width: 100%; }
  .brief-form { padding: 22px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { width: 54px; height: 54px; }
  .back-to-top { right: 20px; }
}

@media (max-width: 390px) {
  :root { --container: calc(100% - 22px); }
  .brand small { max-width: 155px; }
  .hero-copy h1 { font-size: 3.15rem; }
  .hero-image-wrap { height: 470px; }
  .hero-stamp { display: none; }
  .experience-gallery { grid-template-rows: 300px 190px; }
}
