:root {
  --black: #0c0c0c;
  --ink: #161616;
  --charcoal: #2c2c2c;
  --muted: #6a655e;
  --paper: #f4f1ea;
  --cream: #fbf9f4;
  --white: #ffffff;
  --gold: #b0893d;
  --gold-dark: #8e6c2c;
  --gold-soft: #d4b36a;
  --line: rgba(22, 22, 22, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --header: 4.65rem;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 2.4rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

p { margin: 0 0 1rem; }
.lede { font-size: 1.16rem; color: var(--charcoal); max-width: 42rem; }

.section { padding: 5.2rem 0; }
.section-tight { padding: 3.4rem 0; }
.section-dark {
  background: var(--black);
  color: #f3eee4;
}
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark p,
.section-dark .lede { color: rgba(243, 238, 228, 0.78); }

.section-head { max-width: 40rem; margin-bottom: 2.4rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-dark {
  background: var(--black);
  color: var(--paper);
}
.btn-dark:hover { background: var(--charcoal); }
.btn-line {
  background: transparent;
  border-color: currentColor;
}
.btn-line:hover { background: rgba(255,255,255,0.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Header */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: cover;
}
.logo-word {
  margin-left: 0.75rem;
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.25;
}
.logo-word strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: white;
  border-radius: 8px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: white;
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.15rem;
}
.site-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold-soft); }
.site-nav .btn { margin-left: 0.4rem; color: var(--black); }

.has-sub { position: relative; }
.subnav {
  display: none;
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 16rem;
  padding: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 12px;
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav { display: grid; }
.subnav a {
  color: var(--ink) !important;
  padding: 0.45rem 0.6rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  border-radius: 8px;
}
.subnav a:hover { background: var(--paper); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(86vh, 760px);
  background: var(--black);
  color: white;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 6vw 4.5rem max(1.2rem, calc((100vw - var(--max)) / 2));
}
.hero-copy h1 { color: white; max-width: 12ch; }
.hero-copy p { color: rgba(255,255,255,0.74); max-width: 36rem; }
.hero-photo {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 28%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 2.6rem;
}
.stat {
  padding: 1.15rem 1rem 1.15rem 0;
  background: var(--black);
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold-soft);
}
.stat span { color: rgba(255,255,255,0.62); font-size: 0.86rem; }

/* Cards / grids */
.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 1.25rem;
}
.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: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(176, 137, 61, 0.4);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); margin-bottom: 0.8rem; }
.card .more {
  color: var(--gold-dark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  min-height: 420px;
  box-shadow: var(--shadow);
}
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse img { order: 2; }

.checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.quote {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; }
.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.4rem;
  background: var(--black);
  color: white;
  border-radius: 20px;
}
.cta-band h2 { color: white; margin-bottom: 0.35rem; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 0; }

.page-hero {
  background:
    linear-gradient(90deg, rgba(12,12,12,0.78), rgba(12,12,12,0.35)),
    var(--black) center/cover no-repeat;
  color: white;
  padding: 5.5rem 0 4.2rem;
}
.page-hero.with-photo {
  background-image:
    linear-gradient(90deg, rgba(12,12,12,0.82), rgba(12,12,12,0.45)),
    url("../images/building.jpg");
}
.page-hero h1 { color: white; max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,0.76); max-width: 38rem; }

.prose { max-width: 46rem; }
.prose h2, .prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

.hours, .contact-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.contact-list li, .hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--gold-dark); }

.form {
  display: grid;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  background: var(--cream);
  color: var(--ink);
}
.form textarea { min-height: 8.5rem; resize: vertical; }
.form .honey { position: absolute; left: -9999px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 0; }
.form-error {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #f8e8e4;
  color: #7a2e22;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.map-wrap {
  overflow: hidden;
  border-radius: 18px;
  min-height: 320px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.7rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--gold-dark); }
.faq details p { margin: 0.8rem 0 0.2rem; color: var(--muted); }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.72);
  padding: 3.4rem 0 1.4rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.site-footer h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}
.site-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.48);
}
.site-credit a {
  color: rgba(255,255,255,0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-credit a:hover { color: var(--gold-soft); }
.disclaimer {
  max-width: 48rem;
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .split.reverse,
  .grid-3,
  .grid-4,
  .quote-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .split.reverse img { order: 0; }
  .hero-copy { padding: 3rem 1.2rem; }
  .cta-band, .nav-inner { flex-wrap: wrap; }
}

@media (max-width: 800px) {
  .hero-copy { padding: 2.4rem 1.2rem 1.4rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #111;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1.2rem 1.2rem;
    gap: 0.2rem;
  }
  .site-nav.open { display: flex; }
  .site-nav .btn { margin: 0.6rem 0 0; }
  .has-sub .subnav {
    display: grid;
    position: static;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0.2rem 0 0.6rem 0.6rem;
  }
  .subnav a { color: rgba(255,255,255,0.7) !important; }
  .hero,
  .grid-2,
  .grid-3,
  .grid-4,
  .quote-grid,
  .footer-grid,
  .stats,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-photo { min-height: 420px; }
  .hero-photo::after {
    background: linear-gradient(180deg, transparent 40%, var(--black));
  }
  .logo-word { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .split img { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card:hover { transform: none; }
}
