/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --forest:      #1a3a2e;
  --forest-dark: #0f2419;
  --sage:        #2d6a50;
  --sage-light:  #3d8a68;
  --cream:       #fdf6ec;
  --cream-dark:  #f5ece0;
  --gold:        #c8922a;
  --gold-light:  #e0a83a;
  --gold-pale:   rgba(200, 146, 42, 0.12);
  --text:        #1c1c1c;
  --text-mid:    #4a4a4a;
  --text-light:  #767676;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
}

/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--gold); }

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────────── */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── LAYOUT ────────────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: 9px 22px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--gold-light); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ── SECTION HEADERS ───────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-mid);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ── NAV ───────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: var(--forest-dark);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-badge {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text em {
  font-size: 0.7rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--forest-dark);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(45,106,80,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,146,42,.08) 0%, transparent 60%),
    linear-gradient(135deg, #0f2419 0%, #1a3a2e 50%, #0f2419 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 580px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.trust-item svg { width: 15px; height: 15px; stroke: var(--gold); }

.hero-image {
  width: 440px;
  flex-shrink: 0;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(200,146,42,.2);
}
.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(45,106,80,.6) 0%, transparent 60%),
    linear-gradient(160deg, #1a3a2e 0%, #0f2419 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(200,146,42,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-overlay-text {
  text-align: center;
  color: rgba(255,255,255,.35);
}
.photo-overlay-text svg { width: 40px; height: 40px; margin: 0 auto 8px; }
.photo-overlay-text p { font-size: 0.8rem; letter-spacing: 0.08em; }

/* ── SERVICES ──────────────────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--forest); }
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.services-footer {
  text-align: center;
  margin-top: 48px;
}
.services-footer p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ── PHOTO STRIP ───────────────────────────────────────────────────── */
.photo-strip {
  background: var(--forest-dark);
  padding: 0;
  overflow: hidden;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
}
.strip-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  cursor: pointer;
}
.strip-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.strip-photo:hover img { transform: scale(1.05); }

/* ── WHY US ────────────────────────────────────────────────────────── */
.why-us { background: var(--cream-dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left h2 { margin: 12px 0 16px; }
.why-left > p { color: var(--text-mid); font-size: 1rem; margin-bottom: 36px; }
.why-pillars { display: flex; flex-direction: column; gap: 22px; }
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pillar-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: 0.95rem; color: var(--forest); margin-bottom: 3px; }
.pillar p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

.about-card {
  background: var(--forest);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-wrap {
  height: 240px;
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-text { padding: 28px 28px 32px; }
.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
}
.about-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.about-text p { color: rgba(255,255,255,.7); font-size: 0.9rem; font-style: italic; margin-bottom: 20px; }
.about-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.about-actions .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.about-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ── REVIEWS ───────────────────────────────────────────────────────── */
.reviews { background: var(--forest-dark); }
.reviews .section-eyebrow { color: var(--gold); }
.reviews .section-header h2 { color: var(--white); }
.reviews .section-header p { color: rgba(255,255,255,.6); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), transform var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(200,146,42,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--white); }
.review-author span { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.reviews-cta { text-align: center; margin-top: 44px; }
.reviews-cta .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.reviews-cta .btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}

/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin: 12px 0 28px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-item p { font-size: 0.95rem; margin-bottom: 2px; }
.contact-item a { font-size: 0.95rem; color: var(--forest); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }
.contact-note { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 2px; font-style: italic; }
.contact-serving {
  background: var(--gold-pale);
  border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
}
.contact-serving strong { display: block; color: var(--forest); margin-bottom: 4px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-serving span { color: var(--text-mid); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--forest-dark);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.3); }
.footer-copy a { color: rgba(255,255,255,.4); }
.footer-copy a:hover { color: var(--gold); }

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .hero { padding: 100px 0 60px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-image { width: 100%; max-width: 400px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--forest-dark);
    padding: 80px 32px 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
    gap: 8px;
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); height: 180px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-sub { max-width: 100%; }
  .about-actions { flex-direction: column; }
}
