:root {
  --bg: #f7f4ee;
  --surface: #fffdf9;
  --surface-2: #f1ece3;
  --ink: #18202a;
  --muted: #5d6773;
  --line: #ddd3c4;
  --brand: #b08a57;
  --brand-dark: #8a6b42;
  --accent: #223244;
  --accent-2: #31475f;
  --success: #365c4a;
  --shadow: 0 20px 60px rgba(24,32,42,.12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(176,138,87,.12), transparent 22%),
    linear-gradient(180deg, #faf7f2 0%, #f6f2eb 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: var(--accent);
  color: #eef2f6;
  font-size: .92rem;
}
.topbar-inner {
  display: flex; gap: 18px; justify-content: space-between; align-items: center;
  min-height: 48px; flex-wrap: wrap; padding: 8px 0;
}
.topbar-links, .topbar-hours { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.topbar a { opacity: .95; }
.topbar a:hover { opacity: 1; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(250,247,242,.82);
  border-bottom: 1px solid rgba(138,107,66,.12);
}
.navbar {
  display: flex; justify-content: space-between; align-items: center; min-height: 52px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; max-width: 132px; }
.brand-logo {
  width: 100%;
  max-width: 118px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.nav-toggle {
  display: none; border: 0; background: var(--surface); color: var(--ink);
  width: 40px; height: 40px; border-radius: 12px; box-shadow: var(--shadow);
}
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  padding: 8px 12px; border-radius: 999px; color: var(--muted); font-weight: 600; font-size: .93rem;
}
.nav-links a:hover, .nav-links a.active { background: rgba(176,138,87,.14); color: var(--ink); }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; }
.has-dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  margin-top: 4px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,253,249,.98);
  border: 1px solid rgba(138,107,66,.16);
  box-shadow: 0 24px 50px rgba(24,32,42,.14);
  z-index: 50;
}
.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu,
.has-dropdown.active .submenu,
.has-dropdown.submenu-open .submenu { display: grid; gap: 6px; }
.submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.submenu a:hover { background: rgba(176,138,87,.14); }
.nav-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: white !important;
  box-shadow: 0 16px 32px rgba(176,138,87,.28);
}
.hero {
  position: relative; overflow: hidden; padding: 82px 0 58px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(24,32,42,.86) 0%, rgba(24,32,42,.72) 38%, rgba(24,32,42,.24) 100%),
  url('images/hero.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: end;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px; color: #f3e7d3;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 10px 16px; border-radius: 999px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; font-size: .76rem;
}
.hero h1, .page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: .95; margin: 18px 0 18px; color: #fff;
}
.hero p.lead, .page-hero p.lead { color: rgba(255,255,255,.9); font-size: 1.14rem; max-width: 64ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff;
  box-shadow: 0 20px 34px rgba(176,138,87,.26);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.06);
}
.hero-card, .stat-card, .card, .content-box, .contact-panel, .hours-card, .map-card, .service-panel {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 26px; backdrop-filter: blur(10px); align-self: stretch;
}
.hero-card h2 { margin: 0 0 10px; font-size: 1.1rem; color: var(--accent); }
.hero-card p { margin: 0 0 16px; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li {
  position: relative; padding-left: 28px; color: var(--ink);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px;
  display: grid; place-items: center; border-radius: 999px; background: rgba(54,92,74,.12); color: var(--success); font-weight: 800; font-size: .82rem;
}
main section { padding: 28px 0; }
.section-head { margin-bottom: 22px; }
.section-head .eyebrow {
  color: var(--brand-dark); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800;
}
.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1; margin: 10px 0 8px;
}
.section-head p { margin: 0; color: var(--muted); max-width: 68ch; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -36px; position: relative; z-index: 2;
}
.stat-card { padding: 24px; }
.stat-number {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.4rem; line-height: 1; color: var(--accent);
}
.stat-label { color: var(--muted); margin-top: 8px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-flow {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.about-flow > * {
  width: 100%;
}
.about-copy-top,
.about-copy-bottom,
.about-image-panel {
  max-width: 980px;
  margin: 0 auto;
}
.about-flow .section-head,
.about-flow .content-box {
  width: 100%;
}
.about-flow .section-head p {
  max-width: none;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card, .content-box, .service-panel, .contact-panel, .hours-card, .map-card { padding: 28px; }
.card h3, .service-panel h3 { margin-top: 0; font-size: 1.18rem; }
.card p, .service-panel p { color: var(--muted); }
.card-link { margin-top: 16px; color: var(--brand-dark); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.image-panel {
  min-height: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  position: relative;
}
.image-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 440px; }
.about-image-panel {
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
}
.about-image-panel img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.image-panel::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(24,32,42,.12) 100%);
}
.quote-box {
  padding: 28px; border-radius: var(--radius); background: linear-gradient(135deg, var(--accent), #111925); color: #edf2f6;
  box-shadow: var(--shadow);
}
.quote-box blockquote {
  margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; line-height: 1.15;
}
.quote-box p { margin-bottom: 0; color: rgba(237,242,246,.8); }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  border: 1px solid var(--line); background: var(--surface); color: var(--accent); padding: 10px 14px; border-radius: 999px; font-weight: 600; font-size: .92rem;
}
.process { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process .card { position: relative; padding-top: 72px; }
.process .card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 24px; top: 22px; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem; color: var(--brand-dark);
}
.service-list { display: grid; gap: 16px; }
.service-list li {
  list-style: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 18px 18px 20px;
}
.cta-band {
  background: linear-gradient(135deg, rgba(34,50,68,.98), rgba(18,27,37,.96));
  border-radius: calc(var(--radius) + 2px); padding: 36px; color: #fff; box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,.82); }
.page-hero {
  position: relative; overflow: hidden; padding: 70px 0 42px;
  background:
  linear-gradient(135deg, rgba(34,50,68,.96), rgba(18,27,37,.94)),
  radial-gradient(circle at top right, rgba(176,138,87,.16), transparent 24%);
}
.page-hero .breadcrumbs { color: rgba(255,255,255,.72); font-size: .94rem; }
.page-hero .breadcrumbs a { color: rgba(255,255,255,.92); }
.featured-copy p, .content-box p, .contact-panel p, .hours-card p { color: var(--muted); }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.info-list li {
  padding: 14px 0; border-bottom: 1px solid rgba(221,211,196,.7);
}
.info-list li:last-child { border-bottom: 0; }
.info-label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-dark); font-weight: 800; margin-bottom: 6px; }
.embed {
  width: 100%; min-height: 420px; border: 0; border-radius: 18px;
}
.footer {
  margin-top: 36px; background: #121a24; color: #dfe7ef; padding: 46px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 28px; }
.footer h3, .footer h4 { margin-top: 0; color: #fff; }
.footer p, .footer li, .footer a { color: rgba(223,231,239,.82); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 24px; padding-top: 16px; color: rgba(223,231,239,.64);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .92rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  background: rgba(176,138,87,.12); color: var(--brand-dark); font-weight: 700; font-size: .9rem;
}
@media (max-width: 1100px) {
  .hero-grid, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .hero-card { max-width: 740px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none; position: absolute; left: 16px; right: 16px; top: 62px; padding: 16px;
    background: rgba(250,247,242,.98); border: 1px solid rgba(138,107,66,.14); border-radius: 22px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px 14px; }
  .nav-item { width: 100%; }
  .nav-item > a { width: 100%; }
  .has-dropdown .submenu {
    display: grid;
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px 0 0 10px;
    border: 0;
    border-left: 2px solid rgba(176,138,87,.22);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .submenu a {
    white-space: normal;
    padding: 10px 12px;
  }
  .hero { padding-top: 56px; }
  .hero-grid, .grid-3, .grid-4, .stats, .process { grid-template-columns: 1fr; }
  .topbar-inner, .navbar { align-items: flex-start; }
  .brand { max-width: 150px; }
  .brand-logo { max-width: 112px; }
  .cta-band { padding: 28px; }
  .hero-card, .card, .content-box, .service-panel, .contact-panel, .hours-card, .map-card { padding: 22px; }
}
