:root {
  --ink: #1d2622;
  --muted: #66706b;
  --paper: #f7f5ef;
  --white: #fff;
  --sage: #dfe7df;
  --green: #21493b;
  --green-dark: #17352c;
  --brass: #76501d;
  --line: rgba(29, 38, 34, 0.14);
  --shadow: 0 24px 60px rgba(25, 37, 31, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: none; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}
h1 { max-width: 860px; margin-bottom: 24px; font-size: clamp(3rem, 7vw, 6.6rem); letter-spacing: -.055em; }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4.4vw, 4.25rem); letter-spacing: -.045em; }
h3 { margin-bottom: 12px; font-size: 1.55rem; }
p { margin: 0 0 20px; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.section { padding: clamp(72px, 10vw, 132px) 0; }
.section--white { background: var(--white); }
.section--green { background: var(--green); color: var(--white); }
.section--green .eyebrow { color: #f0d8b0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border .25s ease;
}
.site-header.scrolled,
.site-header.inner-header {
  border-color: var(--line);
  background: rgba(247, 245, 239, .94);
  backdrop-filter: blur(12px);
}
.nav { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}
.logo-mark::after { content: ""; position: absolute; width: 26px; height: 1px; transform: rotate(-45deg); background: var(--brass); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: Georgia, serif; font-size: 1rem; font-weight: 500; letter-spacing: .04em; }
.logo-text small { margin-top: 5px; color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .85rem; font-weight: 700; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brass); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--green);
  border-radius: 99px;
  background: var(--green);
  color: white;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-dark); }
.btn--light { border-color: white; background: white; color: var(--green); }
.btn--outline { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--small { min-height: 42px; padding: 9px 18px; }

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  align-items: end;
  overflow: hidden;
  background: #ddd6c8;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,245,239,.98) 0%, rgba(247,245,239,.86) 39%, rgba(247,245,239,.12) 72%), url("assets/grand-lounge-hero.webp") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; padding: 190px 0 90px; }
.hero h1 { color: var(--green-dark); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 68px; color: #47534d; font-size: .83rem; }
.hero-meta span { display: flex; align-items: center; gap: 9px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.feature-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature-num { color: var(--brass); font-family: Georgia, serif; font-size: 1.2rem; }
.feature p { margin: 0; color: var(--muted); }

.gallery { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.gallery-card { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); background: #dedbd3; }
.gallery-card:last-child { min-height: 420px; align-self: end; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-label { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 20px; border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.gallery-label strong { display: block; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.gallery-label span { color: var(--muted); font-size: .82rem; }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.experience-card { min-height: 280px; padding: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); }
.experience-card .icon { display: grid; width: 52px; height: 52px; margin-bottom: 48px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #dec59d; }
.experience-card p { color: rgba(255,255,255,.68); font-size: .94rem; }

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.info-list { display: grid; margin-top: 30px; }
.info-row { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid var(--line); }
.info-row span:first-child { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.info-row a { text-decoration-color: rgba(33,73,59,.25); text-underline-offset: 4px; }
.map-card { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); background: #dfe7df; }
.map-art { position: absolute; inset: 0; opacity: .78; background-image: linear-gradient(28deg, transparent 47%, rgba(33,73,59,.15) 48%, rgba(33,73,59,.15) 51%, transparent 52%), linear-gradient(112deg, transparent 42%, rgba(33,73,59,.11) 43%, rgba(33,73,59,.11) 46%, transparent 47%); background-size: 180px 160px, 230px 210px; }
.map-pin { position: absolute; top: 50%; left: 50%; display: grid; width: 70px; height: 70px; place-items: center; transform: translate(-50%,-50%); border: 10px solid rgba(255,255,255,.65); border-radius: 50%; background: var(--green); color: white; box-shadow: var(--shadow); font-family: Georgia, serif; }
.map-caption { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 22px; border-radius: 16px; background: rgba(255,255,255,.93); }
.map-caption p { margin: 4px 0 0; color: var(--muted); font-size: .88rem; }

.cta { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; padding: clamp(40px, 7vw, 80px); border-radius: calc(var(--radius) + 8px); background: var(--sage); }
.cta h2 { margin-bottom: 12px; }
.cta .lead { color: #46534d; }

.page-hero { padding: 185px 0 84px; border-bottom: 1px solid var(--line); background: white; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.content-page { padding: 70px 0 120px; }
.content-page h2 { margin-top: 58px; font-size: 2rem; letter-spacing: -.02em; }
.content-page h3 { margin-top: 32px; }
.content-page p, .content-page li { color: #4e5b55; }
.content-page li { margin-bottom: 10px; }
.meta-line { margin-top: 28px; color: var(--muted); font-size: .86rem; }
.cards-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 38px; }
.plain-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.plain-card p:last-child { margin-bottom: 0; }

.accordion { margin-top: 38px; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.accordion-trigger strong { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.accordion-trigger span { font-size: 1.4rem; transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] span { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel.open { grid-template-rows: 1fr; }
.accordion-panel p { padding: 0 36px 24px 0; color: var(--muted); }

.form { display: grid; gap: 16px; margin-top: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .8rem; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: white;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(33,73,59,.1); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: .8rem; }
.form-success { display: none; padding: 16px; border-radius: 12px; background: var(--sage); color: var(--green-dark); }
.form-success.show { display: block; }

.site-footer { padding: 72px 0 28px; background: #18221e; color: white; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
.footer-title { max-width: 320px; margin: 20px 0 0; color: rgba(255,255,255,.63); font-size: .92rem; }
.footer-col strong { display: block; margin-bottom: 16px; color: #c9ab79; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 8px 0; color: rgba(255,255,255,.72); font-size: .87rem; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .75rem; }

.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(18, 25, 22, .72);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal.show { opacity: 1; visibility: visible; }
.modal-card { width: min(520px, 100%); padding: clamp(30px, 6vw, 56px); border-radius: 28px; background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.3); text-align: center; }
.age-symbol { display: grid; width: 76px; height: 76px; margin: 0 auto 28px; place-items: center; border: 2px solid var(--brass); border-radius: 50%; color: var(--brass); font-family: Georgia, serif; font-size: 1.8rem; }
.modal-card h2 { margin-bottom: 14px; font-size: 2.5rem; }
.modal-card p { color: var(--muted); }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }

.cookie-banner { position: fixed; z-index: 200; right: 20px; bottom: 20px; display: none; width: min(430px, calc(100% - 40px)); padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow); }
.cookie-banner.show { display: block; }
.cookie-banner p { margin-bottom: 16px; color: var(--muted); font-size: .84rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 74px; right: 20px; left: 20px; display: none; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links .btn { width: 100%; }
  .menu-toggle { display: grid; place-items: center; }
  .hero { min-height: 780px; }
  .hero::before { background: linear-gradient(180deg, rgba(247,245,239,.98) 0%, rgba(247,245,239,.85) 52%, rgba(247,245,239,.3) 100%), url("assets/grand-lounge-hero.webp") 61% center/cover no-repeat; }
  .hero-content { padding-top: 150px; }
  .intro-grid, .visit-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:last-child { min-height: 480px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card:last-child { grid-column: 1 / -1; }
  .cta { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .nav { min-height: 72px; }
  .logo-text small { display: none; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 12px; }
  .hero { min-height: 730px; }
  .hero-content { padding: 132px 0 58px; }
  .hero-meta { display: grid; gap: 10px; margin-top: 44px; }
  .hero-actions .btn { width: 100%; }
  .gallery-card, .gallery-card:last-child { min-height: 360px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card:last-child { grid-column: auto; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .map-card { min-height: 390px; }
  .cards-two, .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 135px 0 64px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-top > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .modal-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
