:root {
  --maroon: #7a1f2b;
  --maroon-deep: #4a1218;
  --maroon-soft: #9a3a46;
  --gold: #c4a265;
  --gold-dark: #8f7140;
  --gold-light: #e8d5a3;
  --cream: #f7f1e8;
  --cream-2: #efe6d6;
  --ink: #1c1512;
  --muted: #5e534c;
  --line: rgba(28, 21, 18, 0.1);
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(74, 18, 24, 0.12);
  --radius: 14px;
  --header-h: 78px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; letter-spacing: 0.01em; }
h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2.1rem); margin: 2.2rem 0 0.7rem; }
h3 { font-size: 1.22rem; margin: 1.4rem 0 0.45rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.2rem; }
li { margin-bottom: 0.35rem; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 99; padding: 0.7rem 1rem; background: var(--maroon); color: #fff; }
.skip-link:focus { left: 0; }
.container { width: min(1160px, 92vw); margin-inline: auto; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.55rem;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 241, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--maroon));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  box-shadow: 0 0 0 2px var(--gold);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }
.logo-sub { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.header-phone { font-weight: 700; white-space: nowrap; color: var(--maroon-deep); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 8px; }
.site-nav ul { display: flex; gap: 0.15rem 1.05rem; list-style: none; margin: 0; padding: 0; align-items: center; flex-wrap: wrap; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--maroon); }
.btn, .btn-nav {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--maroon); color: #fff !important; text-decoration: none;
  border-radius: 999px; padding: 0.72rem 1.2rem; font-weight: 700; border: 0; cursor: pointer;
  box-shadow: 0 8px 20px rgba(122, 31, 43, 0.25);
}
.btn:hover, .btn-nav:hover { background: var(--maroon-deep); color: #fff !important; }
.btn-gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: var(--maroon-deep) !important; }
.btn-outline { background: transparent; color: var(--maroon) !important; border: 1px solid var(--gold); box-shadow: none; }

.hero {
  position: relative; min-height: min(86vh, 760px);
  display: grid; align-items: end; color: #fff;
  background: #2a1216 center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,10,12,0.18) 0%, rgba(28,10,12,0.72) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 5rem 0 3.2rem; }
.hero h1 { max-width: 16ch; }
.hero p { max-width: 58ch; color: #f3e7d8; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.hero-meta { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.6rem; font-size: 0.92rem; color: var(--gold-light); }

.section { padding: 4.2rem 0; }
.section-alt { background: var(--white); }
.grid-3, .grid-4, .grid-2 { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 1.05rem 1.15rem 1.25rem; }
.card h3 { margin-top: 0; }
.card a.stretched { text-decoration: none; color: inherit; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.7rem; }
.gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.video-grid video { width: 100%; border-radius: 12px; background: #000; max-height: 240px; object-fit: cover; }

.prose { max-width: 78ch; }
.prose h2:first-child { margin-top: 0; }
.prose img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 14px; }
.crumb { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.crumb a { color: var(--muted); text-decoration: none; }
.page-hero {
  padding: 2.6rem 0 2rem;
  background: linear-gradient(180deg, #efe3d3, var(--cream));
  border-bottom: 1px solid var(--line);
}
.lead { font-size: 1.15rem; color: var(--muted); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 1.2rem; list-style: none; padding: 0; }
.feature-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 0.85rem 1rem;
}
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 0.6rem; }
.faq summary { cursor: pointer; font-weight: 700; }
.cta-band {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: #fff; padding: 3rem 0; text-align: center;
}
.cta-band h2 { margin-top: 0; color: #fff; }
.cta-band p { color: #f3e7d8; }
.site-footer { background: var(--maroon-deep); color: #f3e7d8; padding: 3rem 0 1.4rem; font-size: 0.95rem; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; }
.site-footer h3 { color: #fff; margin-top: 0; font-size: 1.05rem; }
.site-footer ul { list-style: none; padding: 0; }
.copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.6rem; padding-top: 1rem; font-size: 0.85rem; }

.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  background: #25d366; color: #fff !important; text-decoration: none;
  border-radius: 999px; padding: 0.8rem 1.05rem; font-weight: 800;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.form { display: grid; gap: 0.7rem; max-width: 560px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 0.8rem 0.9rem; border-radius: 10px;
  border: 1px solid var(--line); font: inherit; background: var(--white);
}
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.related a {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 0.9rem 1rem; text-decoration: none; color: var(--ink); font-weight: 700;
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin: 1.5rem 0; }
.stat { background: var(--white); border-radius: 12px; padding: 1rem; text-align: center; border: 1px solid var(--line); }
.stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--maroon); }
.media-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.6rem; align-items: center; }
.media-split img, .media-split video { border-radius: var(--radius); width: 100%; max-height: 420px; object-fit: cover; }
.map-embed { width: 100%; height: 340px; border: 0; border-radius: var(--radius); margin: 1.4rem 0; }

@media (max-width: 980px) {
  .grid-4, .grid-3, .grid-2, .footer-grid, .related, .stat-row, .media-split, .feature-list { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--cream); border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 0.8rem 6vw 1.2rem; }
  .header-phone { display: none; }
}
@media (max-width: 680px) {
  .grid-4, .grid-3, .grid-2, .footer-grid, .related, .stat-row, .media-split, .feature-list { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
}
