:root {
  --green-dark: #1b332c;
  --green: #25473d;
  --green-soft: #3a5b50;
  --green-muted: #7c8d80;
  --surface: #f6f4ef;
  --surface-alt: #efece4;
  --text: #1c1f1d;
  --text-muted: #5b615c;
  --border: #dedad0;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(24, 45, 38, .14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Work Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.72; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #b7c8bf; outline-offset: 3px; }
::selection { background: var(--green-dark); color: var(--surface); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--green-dark);
  color: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.section { padding: clamp(68px, 8vw, 112px) 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { max-width: 700px; margin: 0 auto 54px; }
.section-heading h2, .intro h2, .location-grid h2, .facebook-inner h2, .final-cta h2,
.dark-section h2, .products-section h2, .hours-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 18px;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.08;
}
.section-heading p, .intro p, .location-grid p, .facebook-inner p, .products-section p {
  color: var(--text-muted);
  font-size: 16.5px;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-muted);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .16em;
  font-weight: 700;
}
.eyebrow > span { width: 24px; height: 1px; background: currentColor; display: block; }
.eyebrow.centered { justify-content: center; }
.eyebrow-on-dark { color: #a7b5ad; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 51, 44, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 210px; max-height: 54px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: #f4f1ea; font-size: 14px; font-weight: 600; }
.desktop-nav > a:not(.button) { position: relative; }
.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #f4f1ea;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: #f4f1ea; margin: 5px 0; transition: transform .2s, opacity .2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 78px 0 auto 0;
  background: var(--green-dark);
  padding: 34px 24px 38px;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.mobile-nav a:not(.button) { display: block; color: #f4f1ea; font-family: var(--serif); font-size: 25px; padding: 10px 0; }
.mobile-nav .button { margin-top: 22px; width: 100%; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .055em;
  text-align: center;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 11px 20px; }
.button-dark { background: var(--green-dark); color: #f7f4ee; border-color: var(--green-dark); }
.button-dark:hover { background: var(--green-soft); border-color: var(--green-soft); }
.button-light { background: #f7f4ee; color: var(--green-dark); border-color: #f7f4ee; }
.button-light:hover { background: #fff; }
.button-outline { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.button-outline:hover { background: var(--green-dark); color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.centered-buttons { justify-content: center; }

.hero { position: relative; overflow: hidden; padding: clamp(52px, 7vw, 88px) 0 clamp(70px, 8vw, 108px); }
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dedad0 1px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .72;
  mask-image: radial-gradient(ellipse 62% 70% at 78% 15%, #000, transparent);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr); align-items: center; gap: clamp(44px, 6vw, 82px); }
.hero-copy { max-width: 650px; }
.hero h1 {
  margin: 0 0 24px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: clamp(43px, 5.6vw, 71px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.025em;
}
.hero .lead { max-width: 570px; margin: 0 0 32px; color: var(--text-muted); font-size: 17.5px; }
.hero-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px 24px; color: var(--text-muted); font-size: 13.5px; }
.hero-meta a:hover { color: var(--green-dark); }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 50% 38%; box-shadow: var(--shadow); }
.hero-badge { position: absolute; width: 165px; right: -48px; bottom: -46px; filter: drop-shadow(0 12px 18px rgba(0,0,0,.18)); }

.intro { padding: clamp(72px, 8vw, 108px) 0; }
.intro p { margin: 0 0 18px; }
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; background: var(--surface); }
.divider span { width: 64px; height: 1px; background: var(--border); }
.divider i { width: 8px; height: 8px; border: 1px solid var(--green-muted); border-radius: 50%; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.service { border-top: 2px solid var(--green-dark); padding: 26px 4px 4px; }
.service-number { color: var(--green-muted); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.service h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--green-dark); margin: 13px 0 11px; }
.service p { color: var(--text-muted); margin: 0; font-size: 15.5px; }
.top-gap { margin-top: 48px; }
.top-gap-small { margin-top: 26px; }

.dark-section { position: relative; overflow: hidden; padding: clamp(72px, 8vw, 108px) 0; background: var(--green-dark); color: #f4f1ea; }
.dark-section h2, .products-section h2, .final-cta h2 { color: #f4f1ea; }
.rings { position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -170px; top: 50%; transform: translateY(-50%); }
.rings::before, .rings::after { content:""; position:absolute; border:1px solid rgba(255,255,255,.12); border-radius:50%; inset:48px; }
.rings::after { inset: 98px; }
.editorial-grid { position: relative; display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: clamp(48px, 7vw, 92px); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 42px; }
.why-grid article { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); }
.why-grid h3 { margin: 0 0 9px; font-size: 17px; }
.why-grid p { margin: 0; color: #cfd5d0; font-size: 14.5px; }

.reviews-section { overflow: hidden; }
.rating-strip { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); margin-bottom: 28px; background: #fff; }
.rating-item { padding: 25px 30px; display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.rating-item + .rating-item { border-left: 1px solid var(--border); }
.rating-item strong { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--green-dark); }
.rating-item span { color: var(--text-muted); font-size: 13.5px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { position: relative; margin: 0; min-height: 250px; padding: 34px 30px 28px; border: 1px solid var(--border); background: #fff; display: flex; flex-direction: column; }
.review-card.featured-review { background: var(--green-dark); color: #f7f4ee; border-color: var(--green-dark); }
.quote-mark { font-family: var(--serif); font-size: 62px; line-height: .7; color: var(--green-muted); }
.review-card blockquote { margin: 22px 0 auto; font-family: var(--serif); font-size: 22px; line-height: 1.32; }
.review-card figcaption { border-top: 1px solid var(--border); margin-top: 28px; padding-top: 15px; color: var(--text-muted); font-size: 12.5px; }
.featured-review figcaption { border-color: rgba(255,255,255,.22); color: #cfd5d0; }

.products-section { background: #203c33; color: #f4f1ea; padding: clamp(70px, 8vw, 108px) 0; }
.products-grid { display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); align-items: center; gap: clamp(50px, 8vw, 112px); }
.products-badge-wrap { display: grid; place-items: center; }
.products-badge { width: min(330px, 82%); filter: drop-shadow(0 22px 30px rgba(0,0,0,.24)); }
.products-section p { color: #d2d8d3; max-width: 670px; }
.products-section .button { margin-top: 10px; }

.location-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.9fr); gap: clamp(42px, 6vw, 78px); align-items: center; }
.address-block { margin: 26px 0 30px; padding-left: 18px; border-left: 2px solid var(--green-dark); display: grid; gap: 4px; }
.address-block strong { color: var(--green-dark); }
.address-block span { color: var(--text-muted); }
.map-wrap { overflow: hidden; min-height: 460px; border: 1px solid var(--border); box-shadow: 0 15px 38px rgba(25,46,39,.08); }
.map-wrap iframe { width: 100%; height: 460px; border: 0; display: block; }

.hours-section { padding: clamp(72px, 8vw, 104px) 0; }
.hours-list { margin: 0; border-top: 1px solid var(--border); }
.hours-list div { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 15px 4px; border-bottom: 1px solid var(--border); }
.hours-list dt { font-weight: 600; color: var(--green-dark); }
.hours-list dd { margin: 0; color: var(--text-muted); }
.hours-section .muted { font-size: 14px; margin-top: 22px; }

.facebook-section { padding: 60px 0; background: var(--surface-alt); border-top: 1px solid var(--border); }
.facebook-inner { display: flex; justify-content: space-between; gap: 38px; align-items: center; }
.facebook-inner > div { max-width: 620px; }
.facebook-inner h2 { font-size: clamp(29px, 3vw, 38px); margin-bottom: 8px; }
.facebook-inner p { margin: 0; }

.final-cta { position: relative; overflow: hidden; background: var(--green-dark); color: #f4f1ea; padding: clamp(80px, 9vw, 122px) 0; }
.cta-pattern { position:absolute; inset:0; background-image:radial-gradient(circle, rgba(246,244,239,.15) 1px, transparent 1.5px); background-size:24px 24px; mask-image:radial-gradient(ellipse 72% 100% at 50% 0%,#000,transparent); }
.cta-content { position: relative; }
.final-cta p:not(.eyebrow) { color: #cfd5d0; font-size: 17px; max-width: 610px; margin: 0 auto 30px; }
.text-link-on-dark { color: #fff; font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.55); padding: 8px 0; }

.site-footer { padding: 56px 0 24px; background: #142720; color: #d9dedb; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .7fr; gap: 48px; }
.footer-brand img { width: 250px; margin-bottom: 18px; }
.footer-brand p, .site-footer p { color: #adb8b2; font-size: 13.5px; line-height: 1.65; margin: 0; }
.site-footer h3 { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: #f4f1ea; margin: 0 0 14px; }
.site-footer a { display: block; width: fit-content; font-size: 14px; margin: 0 0 9px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: #829087; }
.mobile-booking-bar { display: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 380px; gap: 42px; }
  .hero h1 { font-size: clamp(42px, 6.7vw, 60px); }
  .hero-visual, .hero-photo { min-height: 480px; }
  .services-grid { gap: 25px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 390px; height: 390px; }
  .products-grid { gap: 50px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .container, .narrow { width: min(100% - 36px, 1240px); }
  .site-header, .header-inner { height: 72px; }
  .brand img { width: 178px; max-height: 46px; }
  .mobile-nav { inset: 72px 0 auto 0; }
  .hero { padding: 28px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; min-height: 0; aspect-ratio: 4/3; }
  .hero-photo { min-height: 0; height: 100%; object-position: 50% 35%; }
  .hero-badge { width: 116px; right: -12px; bottom: -25px; }
  .hero h1 { font-size: clamp(39px, 11.4vw, 54px); }
  .hero .lead { font-size: 16px; }
  .hero .button-row .button { width: 100%; }
  .hero-meta { display: grid; gap: 10px; }
  .section, .intro, .dark-section, .products-section, .hours-section { padding: 72px 0; }
  .section-heading { margin-bottom: 40px; }
  .services-grid, .reviews-grid, .products-grid, .footer-grid { grid-template-columns: 1fr; }
  .service { padding-top: 23px; }
  .why-grid { grid-template-columns: 1fr; gap: 25px; }
  .rating-strip { grid-template-columns: 1fr; }
  .rating-item { justify-content: flex-start; padding: 20px 22px; flex-wrap: wrap; }
  .rating-item + .rating-item { border-left: 0; border-top: 1px solid var(--border); }
  .review-card { min-height: 220px; }
  .products-badge { width: min(250px, 72%); }
  .products-badge-wrap { order: 2; margin-top: 10px; }
  .products-grid > div:last-child { order: 1; }
  .location-grid .button-row .button { width: 100%; }
  .facebook-inner { display: block; }
  .facebook-inner .button { margin-top: 22px; width: 100%; }
  .site-footer { padding-bottom: 94px; }
  .footer-grid { gap: 34px; }
  .mobile-booking-bar {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 120;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: rgba(246,244,239,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
  }
  .mobile-booking-bar a {
    display: block;
    padding: 15px 18px;
    background: var(--green-dark);
    color: #fff;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .065em;
  }
}

@media (max-width: 430px) {
  .container, .narrow { width: calc(100% - 30px); }
  .button { width: 100%; }
  .hero-meta { font-size: 12.7px; }
  .hours-list div { padding: 14px 0; }
  .rating-item strong { font-size: 25px; }
  .review-card { padding: 28px 24px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
