@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap');

:root {
  --ink: #1f1d1a;
  --muted: #6e675f;
  --paper: #f7f4ef;
  --white: #fffdf9;
  --sand: #ded3c2;
  --champagne: #a98d65;
  --line: rgba(31,29,26,.14);
  --shadow: 0 22px 70px rgba(31,29,26,.12);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }
.section.compact { padding: 78px 0; }
.eyebrow {
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 16px;
}
h1,h2,h3,.serif { font-family: 'Italiana', Georgia, serif; font-weight: 400; letter-spacing: -.02em; }
h1 { font-size: clamp(3.3rem, 8vw, 7.6rem); line-height: .96; margin: 0 0 28px; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; margin: 0 0 24px; }
h3 { font-size: clamp(1.7rem, 2.8vw, 2.6rem); line-height: 1.1; margin: 0 0 14px; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.24rem); max-width: 720px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid var(--ink);
  font-size: .9rem; font-weight: 600; letter-spacing: .03em; transition: .25s ease;
  background: var(--ink); color: var(--white); cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: #34302a; box-shadow: 0 14px 35px rgba(31,29,26,.12); }
.btn.secondary { background: transparent; color: var(--ink); }
.btn.secondary:hover { background: var(--white); }
.btn.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn.ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; transition: .3s ease;
  color: white;
}
.site-header.scrolled { background: rgba(247,244,239,.93); backdrop-filter: blur(16px); color: var(--ink); border-bottom: 1px solid var(--line); }
.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark { display:flex; align-items:center; gap:12px; min-width:max-content; }
.wordmark-mark { width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; display:grid; place-items:center; font-family:'Italiana'; font-size:1.15rem; }
.wordmark-text { line-height: 1; }
.wordmark-text strong { display:block; font-family:'Italiana'; font-weight:400; font-size:1.22rem; letter-spacing:.03em; }
.wordmark-text small { display:block; margin-top:5px; font-size:.58rem; letter-spacing:.24em; text-transform:uppercase; opacity:.72; }
.nav-links { display:flex; align-items:center; gap:24px; font-size:.82rem; font-weight:500; }
.nav-links a { position:relative; }
.nav-links a:not(.btn)::after { content:''; position:absolute; left:0; right:100%; bottom:-5px; height:1px; background:currentColor; transition:.25s; }
.nav-links a:not(.btn):hover::after, .nav-links a.active:not(.btn)::after { right:0; }
.nav .btn { min-height:44px; padding:0 18px; border-color:currentColor; background:transparent; color:inherit; }
.site-header.scrolled .nav .btn { background:var(--ink); color:white; border-color:var(--ink); }
.menu-btn { display:none; width:44px; height:44px; border:1px solid currentColor; border-radius:50%; background:transparent; color:inherit; }
.mobile-menu { display:none; }

.hero {
  min-height: 100vh; display:flex; align-items:flex-end; position:relative; overflow:hidden; color:white;
  background:#161513;
}
.hero-media { position:absolute; inset:0; }
.hero-media img { height:100%; object-position:center 45%; filter:saturate(.78) brightness(.68); transform:scale(1.02); }
.hero::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.06) 35%, rgba(0,0,0,.72) 100%); }
.hero-content { position:relative; z-index:2; padding: 190px 0 90px; width:100%; }
.hero-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:60px; align-items:end; }
.hero h1 { max-width:900px; }
.hero p { color:rgba(255,255,255,.84); max-width:560px; }
.hero-meta { border-left:1px solid rgba(255,255,255,.34); padding-left:30px; margin-bottom:10px; }
.hero-meta div { margin:14px 0; font-size:.9rem; }
.hero-meta span { display:block; opacity:.62; font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; margin-bottom:2px; }
.hero .btn { border-color:white; background:white; color:var(--ink); }
.hero .btn.secondary { background:transparent; color:white; }

.page-hero { min-height: 58vh; display:flex; align-items:flex-end; position:relative; overflow:hidden; color:white; background:#24211e; }
.page-hero .hero-media img { height:100%; filter:saturate(.72) brightness(.55); }
.page-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.68)); }
.page-hero .hero-content { padding:170px 0 68px; }
.page-hero h1 { font-size:clamp(3.4rem,7vw,6.6rem); }

.split { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.split.reverse .media-card { order:2; }
.media-card { border-radius:var(--radius); overflow:hidden; min-height:590px; box-shadow:var(--shadow); }
.media-card img { height:100%; min-height:590px; }
.stat-row { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-top:40px; }
.stat { padding:26px 20px 26px 0; }
.stat + .stat { padding-left:20px; border-left:1px solid var(--line); }
.stat strong { display:block; font-family:'Italiana'; font-size:2.1rem; font-weight:400; }
.stat span { color:var(--muted); font-size:.8rem; }

.cards-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.event-card { position:relative; min-height:520px; border-radius:var(--radius); overflow:hidden; color:white; background:#25221f; }
.event-card img { position:absolute; inset:0; height:100%; filter:brightness(.72) saturate(.86); transition:transform .7s ease; }
.event-card::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.75)); }
.event-card:hover img { transform:scale(1.04); }
.event-card-content { position:absolute; z-index:2; left:28px; right:28px; bottom:28px; }
.event-card-content p { color:rgba(255,255,255,.78); }
.text-link { display:inline-flex; align-items:center; gap:10px; font-size:.85rem; font-weight:600; border-bottom:1px solid currentColor; padding-bottom:3px; }

.quote-band { background:var(--ink); color:white; }
.quote-band blockquote { font-family:'Italiana'; font-size:clamp(2.3rem,5vw,5.2rem); line-height:1.08; margin:0; max-width:1050px; }
.quote-band p { color:rgba(255,255,255,.68); margin-top:28px; }

.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:92px; gap:16px; }
.gallery-item { overflow:hidden; border-radius:20px; position:relative; cursor:zoom-in; background:#ddd; }
.gallery-item img { height:100%; transition:.45s ease; }
.gallery-item:hover img { transform:scale(1.035); }
.gallery-item:nth-child(1){grid-column:span 7;grid-row:span 6}
.gallery-item:nth-child(2){grid-column:span 5;grid-row:span 3}
.gallery-item:nth-child(3){grid-column:span 5;grid-row:span 3}
.gallery-item:nth-child(4){grid-column:span 4;grid-row:span 4}
.gallery-item:nth-child(5){grid-column:span 4;grid-row:span 4}
.gallery-item:nth-child(6){grid-column:span 4;grid-row:span 4}
.gallery-item:nth-child(n+7){grid-column:span 6;grid-row:span 4}
.gallery-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px; }
.filter-btn { border:1px solid var(--line); background:transparent; border-radius:999px; padding:10px 16px; cursor:pointer; color:var(--muted); }
.filter-btn.active, .filter-btn:hover { background:var(--ink); color:white; border-color:var(--ink); }
.lightbox { position:fixed; inset:0; background:rgba(14,13,12,.94); z-index:100; display:none; place-items:center; padding:40px; }
.lightbox.open { display:grid; }
.lightbox img { max-width:min(1100px,92vw); max-height:86vh; width:auto; border-radius:16px; }
.lightbox button { position:absolute; top:24px; right:24px; width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,.4); background:transparent; color:white; font-size:1.4rem; cursor:pointer; }

.review-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.review-card { background:var(--white); padding:38px; border-radius:var(--radius); border:1px solid rgba(31,29,26,.06); }
.stars { letter-spacing:.15em; color:var(--champagne); margin-bottom:18px; }
.review-card blockquote { font-family:'Italiana'; font-size:2rem; line-height:1.25; margin:0 0 24px; }
.review-card .reviewer { color:var(--muted); font-size:.85rem; }

.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.feature { padding:26px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.32); }
.feature .icon { font-size:1.5rem; margin-bottom:16px; }
.feature h3 { font-family:'DM Sans'; font-size:1rem; font-weight:600; margin-bottom:8px; letter-spacing:0; }
.feature p { font-size:.88rem; margin:0; }

.faq-list { max-width:900px; }
.faq-item { border-top:1px solid var(--line); }
.faq-item:last-child { border-bottom:1px solid var(--line); }
.faq-q { width:100%; text-align:left; border:0; background:transparent; padding:24px 0; display:flex; justify-content:space-between; align-items:center; font-size:1rem; cursor:pointer; color:var(--ink); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a p { padding:0 0 24px; max-width:760px; }
.faq-item.open .faq-a { max-height:240px; }
.faq-item.open .faq-q span:last-child { transform:rotate(45deg); }

.form-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:start; }
.form-card { background:var(--white); border-radius:var(--radius); padding:42px; box-shadow:var(--shadow); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1 / -1; }
label { font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; font-weight:600; }
input, select, textarea { width:100%; border:1px solid var(--line); border-radius:12px; background:#fbfaf7; padding:14px 15px; color:var(--ink); outline:none; }
input:focus, select:focus, textarea:focus { border-color:var(--champagne); box-shadow:0 0 0 3px rgba(169,141,101,.12); }
textarea { min-height:145px; resize:vertical; }
.form-note { font-size:.78rem; color:var(--muted); margin-top:14px; }
.form-status { margin-top:14px; font-size:.9rem; display:none; }
.form-status.success { display:block; color:#386a48; }
.form-status.error { display:block; color:#9a403b; }
.contact-list { margin-top:36px; }
.contact-row { padding:18px 0; border-top:1px solid var(--line); }
.contact-row span { display:block; font-size:.7rem; text-transform:uppercase; letter-spacing:.16em; color:var(--champagne); margin-bottom:4px; }
.contact-row a, .contact-row strong { font-size:1.05rem; font-weight:500; }
.map-frame { width:100%; min-height:460px; border:0; border-radius:var(--radius); }

.cta { position:relative; overflow:hidden; border-radius:32px; min-height:500px; color:white; display:flex; align-items:flex-end; }
.cta img { position:absolute; inset:0; height:100%; filter:brightness(.52) saturate(.8); }
.cta::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.05)); }
.cta-content { position:relative; z-index:2; padding:48px; max-width:750px; }
.cta-content p { color:rgba(255,255,255,.8); }

.site-footer { background:#171614; color:white; padding:72px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:70px; }
.site-footer p, .site-footer a { color:rgba(255,255,255,.7); }
.site-footer h4 { font-size:.72rem; text-transform:uppercase; letter-spacing:.18em; margin:0 0 18px; color:rgba(255,255,255,.52); }
.footer-links { display:flex; flex-direction:column; gap:10px; font-size:.9rem; }
.footer-bottom { margin-top:58px; padding-top:22px; border-top:1px solid rgba(255,255,255,.14); display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.42); font-size:.76rem; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-links { display:none; }
  .menu-btn { display:inline-grid; place-items:center; }
  .mobile-menu { position:fixed; top:0; left:0; right:0; background:var(--paper); color:var(--ink); padding:110px 24px 34px; border-bottom:1px solid var(--line); box-shadow:var(--shadow); z-index:55; }
  .mobile-menu.open { display:block; }
  .mobile-menu a { display:block; font-family:'Italiana'; font-size:2rem; padding:10px 0; }
  .hero-grid,.split,.form-layout,.footer-grid { grid-template-columns:1fr; }
  .hero-grid { gap:30px; }
  .hero-meta { border-left:0; border-top:1px solid rgba(255,255,255,.3); padding:22px 0 0; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
  .media-card,.media-card img { min-height:450px; }
  .cards-3 { grid-template-columns:1fr 1fr; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .split.reverse .media-card { order:0; }
}

@media (max-width: 680px) {
  .container { width:min(100% - 26px, var(--max)); }
  .section { padding:78px 0; }
  .nav { height:76px; }
  .wordmark-mark { width:38px; height:38px; }
  .wordmark-text strong { font-size:1rem; }
  .hero-content { padding:150px 0 58px; }
  .page-hero .hero-content { padding:140px 0 48px; }
  h1 { font-size:clamp(3.2rem,16vw,5rem); }
  .hero-meta { grid-template-columns:1fr; }
  .cards-3,.review-grid,.feature-grid,.form-grid { grid-template-columns:1fr; }
  .event-card { min-height:450px; }
  .gallery-grid { grid-template-columns:1fr; grid-auto-rows:320px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column:auto; grid-row:auto; }
  .form-card { padding:26px 20px; }
  .field.full { grid-column:auto; }
  .cta { min-height:500px; }
  .cta-content { padding:30px 24px; }
  .footer-bottom { flex-direction:column; }
  .stat-row { grid-template-columns:1fr; }
  .stat + .stat { border-left:0; border-top:1px solid var(--line); padding-left:0; }
}

/* Deep audit refinements */
.skip-link { position:fixed; top:10px; left:10px; z-index:200; transform:translateY(-180%); background:var(--ink); color:#fff; padding:10px 14px; border-radius:10px; font-weight:600; }
.skip-link:focus { transform:none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [role="button"]:focus-visible { outline:3px solid #b89563; outline-offset:4px; }
.footer-intro { max-width:430px; margin-top:22px; }
.footer-contact { gap:12px; }
.footer-contact-link { display:flex; align-items:flex-start; gap:10px; width:fit-content; max-width:100%; line-height:1.45; }
.footer-contact-link:hover span:not(.footer-icon):not(.external-arrow) { color:#fff; text-decoration:underline; text-underline-offset:4px; }
.footer-icon { width:20px; flex:0 0 20px; text-align:center; color:#d7c3a2; }
.social-svg { width:19px; height:19px; flex:0 0 19px; color:#d7c3a2; margin-top:1px; }
.external-arrow { opacity:.65; font-size:.8em; }
.site-footer p, .site-footer a { color:rgba(255,255,255,.78); }
.footer-bottom { color:rgba(255,255,255,.62); }
.footer-bottom a:hover { color:#fff; text-decoration:underline; text-underline-offset:4px; }
.contact-action { display:inline-flex; align-items:center; gap:8px; text-decoration:none; }
.contact-action:hover { text-decoration:underline; text-underline-offset:5px; }
.instagram-contact .social-svg { color:var(--champagne); }
.location-card { min-height:460px; padding:48px; border-radius:var(--radius); background:linear-gradient(145deg,#ece5dc,#f8f5f0); border:1px solid var(--line); display:flex; flex-direction:column; justify-content:flex-end; box-shadow:var(--shadow); }
.location-card h3 { font-size:clamp(2.3rem,4vw,4rem); }
.location-note { max-width:430px; }
.hp-field { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.form-note a { text-decoration:underline; text-underline-offset:3px; }
.review-source { display:inline-block; margin-top:8px; font-size:.78rem; color:var(--champagne); text-decoration:underline; text-underline-offset:4px; }
.reviews-source-cta { margin-top:38px; padding-top:28px; border-top:1px solid var(--line); max-width:760px; }
body.menu-open { overflow:hidden; }
.menu-btn { cursor:pointer; }
.faq-q span:last-child { transition:transform .25s ease; }
.gallery-item img[role="button"] { outline:none; }
.privacy-content { max-width:860px; }
.privacy-content h3 { margin:42px 0 12px; }
.privacy-content a { text-decoration:underline; text-underline-offset:3px; }
button:disabled { cursor:not-allowed; opacity:.65; transform:none !important; }

@media (max-width: 1120px) and (min-width: 981px) {
  .nav-links { gap:15px; font-size:.78rem; }
  .nav { gap:18px; }
}
@media (max-width: 680px) {
  .location-card { min-height:380px; padding:30px 24px; }
  .footer-contact-link { width:100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
