:root {
  --olive: #5d6a36;
  --olive-dk: #404a26;
  --cream: #f4f1e7;
  --sand: #e8e1d0;
  --taupe: #b3a282;
  --ink: #2e2c24;
  --muted: #5c5848;
  --line: #e4ddcb;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.serif { font-family: 'Cormorant Garamond', serif; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--olive);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-fill:hover { box-shadow: 0 8px 22px rgba(64, 74, 38, .25); }
.btn-fill { background: var(--olive); color: var(--cream); }
.btn-fill:hover { background: var(--olive-dk); }
.btn-out { background: transparent; color: var(--olive); }
.btn-out:hover { background: var(--olive); color: var(--cream); }
.btn-out.light { color: var(--cream); border-color: var(--cream); }
.btn-out.light:hover { background: var(--cream); color: var(--olive-dk); }
.btn-cream { background: var(--cream); color: var(--olive-dk); border-color: var(--cream); }
.btn-cream:hover { background: transparent; color: var(--cream); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(46, 44, 36, .07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px;
  max-width: 1120px;
  margin: 0 auto;
}
section[id] { scroll-margin-top: 150px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 140px; }
.brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: .18em;
  color: var(--olive-dk);
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.04; }
.brand .brand-name { font-size: 1.7rem; letter-spacing: .2em; }
.brand .brand-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 6px;
}
.links { display: flex; gap: 30px; align-items: center; }
.links a {
  text-decoration: none;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.links a.nav-cta { color: var(--cream); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--olive-dk);
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(64,74,38,.42), rgba(64,74,38,.52)),
    url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--cream);
}
.hero-label { color: #e7e2cf; }
.hero h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.05;
  margin: .18em 0 .35em;
  max-width: 14ch;
}
.hero-sub { font-size: 1.05rem; max-width: 46ch; font-weight: 300; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust strip */
.strip {
  background: var(--olive-dk);
  color: var(--cream);
  text-align: center;
  padding: 16px;
}
.strip span { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.strip .dot { opacity: .5; margin: 0 14px; }

/* Sections */
.pad { padding: 84px 0; }
.center { text-align: center; max-width: 62ch; margin: 0 auto 54px; }
.center h2 { font-size: 2.7rem; font-weight: 500; margin: .15em 0 .25em; color: var(--olive-dk); }
.center p { color: var(--muted); }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(46, 44, 36, .06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(46, 44, 36, .12); }
.card .ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--sand);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--olive); font-size: 1.4rem;
}
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; color: var(--olive-dk); margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--muted); }
.card .price { margin-top: 12px; color: var(--olive); font-weight: 500; }

/* About */
.about { background: var(--sand); }
.about .row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; box-shadow: 0 18px 44px rgba(46, 44, 36, .14); }
.about h2 { font-size: 2.4rem; font-weight: 500; color: var(--olive-dk); margin: .1em 0 .3em; }
.about h2.oneline { white-space: nowrap; }
.about p { color: #54513f; margin-bottom: 14px; }

/* Location */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 14px 38px rgba(46, 44, 36, .08); }
.loc .info { padding: 48px; }
.loc .info h3 { font-size: 2.2rem; font-weight: 500; color: var(--olive-dk); margin-bottom: 18px; }
.loc .info p { color: #54513f; margin-bottom: 8px; }
.loc .info .gap { margin-top: 14px; }
.loc .info .gap-btn { margin-top: 18px; }
.map { min-height: 360px; }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* CTA band */
.cta {
  text-align: center;
  padding: 78px 0;
  color: var(--cream);
  background:
    linear-gradient(rgba(64,74,38,.86), rgba(64,74,38,.86)),
    url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.cta h2 { font-size: 2.6rem; font-weight: 500; margin-bottom: 10px; }
.cta p { font-weight: 300; margin-bottom: 26px; }
.cta .hero-actions { justify-content: center; }

/* Footer */
footer { background: var(--ink); color: #cfc9b8; padding: 48px 0 28px; font-size: .82rem; }
.foot-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.foot-brand .brand span { color: #e7e2cf; font-size: 1.3rem; }
.foot-brand .brand img { height: 34px; }
.foot-tag { margin-top: 12px; opacity: .7; max-width: 32ch; }
.foot-links { display: flex; flex-direction: column; }
.foot-links a, .foot-host { color: #cfc9b8; text-decoration: none; margin-bottom: 6px; opacity: .85; }
.foot-links a:hover { opacity: 1; }
.copyright { text-align: center; opacity: .5; margin-top: 36px; font-size: .75rem; }

/* Specialties line */
.specialties {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .03em;
}
.specialties strong { color: var(--olive-dk); }

/* Rates */
.rates { background: var(--sand); }
.rates-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.rate-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px 38px; box-shadow: 0 12px 34px rgba(46, 44, 36, .06); }
.rate-list { list-style: none; }
.rate-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.rate-list li:last-child { border-bottom: 0; }
.rate-list .amt { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--olive-dk); font-weight: 600; }
.rate-card.feature { background: var(--olive); color: var(--cream); text-align: center; display: flex; flex-direction: column; justify-content: center; }
.rate-card.feature .label { color: #e7e2cf; }
.rate-card.feature h3 { font-size: 1.9rem; margin: 6px 0 10px; }
.rate-card.feature .pack-detail { opacity: .9; }
.rate-card.feature .pack-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; line-height: 1; margin: 8px 0; }
.rate-card.feature .pack-note { font-size: .82rem; opacity: .85; }
.discounts { text-align: center; margin-top: 32px; color: var(--muted); font-size: .92rem; }
.discounts strong { color: var(--olive-dk); }
.discounts .dot { opacity: .4; margin: 0 12px; }

/* Reviews carousel */
.review-carousel { position: relative; max-width: 1200px; margin: 0 auto; }
.review-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 64px;
  padding: 12px 64px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.review-track::-webkit-scrollbar { display: none; }
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--olive-dk);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(46, 44, 36, .14);
  transition: background .2s, color .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-arrow:hover { background: var(--olive); color: var(--cream); transform: translateY(-50%) scale(1.06); }
.rev-arrow.prev { left: 6px; }
.rev-arrow.next { right: 6px; }
.quote {
  position: relative;
  flex: 0 0 340px;
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 50px 34px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(46, 44, 36, .08);
  transition: transform .25s, box-shadow .25s;
}
.quote:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(46, 44, 36, .13); }
.quote .q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0;
  color: var(--taupe);
  position: absolute;
  top: 38px; left: 26px;
  opacity: .5;
}
.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.42;
  margin-bottom: 20px;
  flex-grow: 1;
}
.quote .who {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

/* About creds */
.creds { font-size: .82rem; color: var(--olive); letter-spacing: .02em; margin: 18px 0 22px; }

/* Service area */
.service-area { text-align: center; margin-top: 32px; color: var(--muted); font-size: .9rem; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* Policies */
.policies { background: var(--olive-dk); color: var(--cream); padding: 40px 0; }
.policies .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.pol-item { font-size: .92rem; line-height: 1.6; }
.pol-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; letter-spacing: .02em; margin-bottom: 4px; color: var(--cream); }

/* Faith line */
.faith-line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; margin-top: 22px; opacity: .9; }

/* Location links */
.loc .info a:not(.btn) { color: var(--olive); text-decoration: none; }
.loc .info a:not(.btn):hover { text-decoration: underline; }
.foot-name { font-size: 1.3rem; }

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .rates-grid { grid-template-columns: 1fr; }
  .policies .wrap { grid-template-columns: 1fr; gap: 22px; }
  .discounts .dot { display: none; }
  .discounts span { display: block; margin: 4px 0; }
  .links {
    display: none;
    position: absolute;
    top: 120px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 8px 28px 20px;
  }
  .links.open { display: flex; }
  .links a { padding: 12px 0; }
  .links a.nav-cta { color: var(--cream); text-align: center; margin-top: 8px; }
  .hero h1 { font-size: 2.7rem; }
  .cards, .about .row, .loc-grid { grid-template-columns: 1fr; }
  .about-img { height: 240px; }
  .about h2.oneline { white-space: normal; }
  .brand { gap: 10px; }
  .brand img { height: 104px; }
  .brand .brand-name { font-size: 1.35rem; letter-spacing: .14em; }
  .brand .brand-tag { font-size: .5rem; letter-spacing: .1em; }
  .rev-arrow { display: none; }
  .review-track { padding: 12px 20px 26px; scroll-padding: 0 20px; }
  .quote { flex-basis: 80vw; }
}
