:root {
  --forest: #1c2b23;
  --forest-dark: #101a15;
  --cream: #f6f2ea;
  --gold: #c9a35a;
  --gold-light: #e4c98a;
  --text-dark: #22281f;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.eyebrow.center, .section-sub.center, h2.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-dark);
}

.section-sub {
  color: #555;
  max-width: 620px;
  margin-bottom: 40px;
}
.section-sub.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: inherit;
}
.hero .btn-ghost, .contact .btn-ghost { border-color: var(--gold); }
.btn-ghost:hover { background: rgba(201,163,90,0.12); }

/* Announcement bar */
.announce {
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 16px;
  letter-spacing: 0.4px;
}
.announce a { color: var(--gold-light); text-decoration: underline; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--cream);
}
.brand img { height: 34px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: 0.3px;
}
.brand-text em { font-style: italic; color: var(--gold-light); }

nav#nav { display: flex; gap: 28px; }
nav#nav a {
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  position: relative;
}
nav#nav a:hover { color: var(--gold-light); }

.header-cta { white-space: nowrap; }

#menuToggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,163,90,0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(201,163,90,0.12), transparent 50%),
    linear-gradient(160deg, var(--forest-dark), var(--forest) 60%, #24352b);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 60px 24px;
}
.hero .eyebrow { text-align: center; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: #e7e2d6;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-note { font-size: 0.85rem; color: #b9c2b7; }

/* Sections */
.section { padding: 90px 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: #3c463e; }
.about-logo {
  background: var(--forest-dark);
  border-radius: 4px;
  padding: 50px;
}
.badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.badges li {
  padding-left: 26px;
  position: relative;
  font-size: 0.92rem;
  color: var(--forest-dark);
  font-weight: 500;
}
.badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

/* Services */
.services { background: #fff; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.service-card {
  border: 1px solid #e7dfce;
  padding: 32px 26px;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(28,43,35,0.08);
  border-color: var(--gold);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: #555; font-size: 0.95rem; }
.services-cta { text-align: center; margin-top: 44px; }

/* Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hours-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid #e2d9c4;
  font-size: 0.95rem;
}
.hours-table td:first-child { font-weight: 500; color: var(--forest-dark); }
.hours-table td:last-child { text-align: right; color: #555; }
.hours-note { font-size: 0.85rem; color: #777; margin-bottom: 24px; }
.map-wrap {
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(28,43,35,0.15);
}

/* Reviews */
.reviews { background: var(--forest-dark); color: var(--cream); text-align: center; }
.reviews h2 { color: var(--cream); }
.review-cta { margin-top: 26px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-details { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
}
.contact-item a:hover { color: var(--gold); }
.contact-logo {
  background: var(--forest-dark);
  border-radius: 4px;
  padding: 50px;
}

/* Footer */
.footer { background: var(--forest-dark); color: #cfd6cf; padding: 34px 0 90px; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-logo { height: 26px; width: auto; }

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--forest-dark);
  text-align: center;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  z-index: 200;
}

@media (max-width: 900px) {
  nav#nav { display: none; }
  .header-cta { display: none; }
  #menuToggle { display: block; }
  nav#nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--forest);
    padding: 18px 24px;
    gap: 16px;
  }
  .about-grid, .hours-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-logo, .contact-logo { order: -1; padding: 30px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .mobile-call-bar { display: block; }
  .section { padding: 64px 0; }
  body { padding-bottom: 56px; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 0.92rem; }
}
