:root {
  --forest: #2D4C3B;
  --forest-dark: #20362A;
  --gold: #CDA87C;
  --gold-light: #E3C9A4;
  --slate: #738892;
  --cream: #FAF6EF;
  --cream-deep: #F1EBDD;
  --ink: #1E2A22;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 999;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  margin: 0 0 0.6em;
}
.eyebrow-light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.5em;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.icon-phone { width: 1em; height: 1em; }

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 4px 14px rgba(45,76,59,0.25);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-ghost-light {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-ghost-light:hover { background: rgba(227,201,164,0.12); }

.btn-call {
  background: var(--forest);
  color: var(--white);
  padding: 0.6em 1.1em;
  font-size: 0.92rem;
}
.btn-call:hover { background: var(--forest-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo { height: 38px; width: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle .bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--forest-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--forest-dark);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-call { display: inline-flex; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--forest-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .nav-link { color: var(--cream); font-size: 1.1rem; }
  .nav-call { width: 100%; justify-content: center; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center 65%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,26,18,0.82) 0%, rgba(20,26,18,0.55) 38%, rgba(20,26,18,0.15) 62%, rgba(20,26,18,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  color: var(--white);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 16ch;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 38ch;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ---------- Signature divider: a tape-measure tick rule ---------- */
.tick-divider {
  height: 18px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0, var(--gold) 2px,
    transparent 2px, transparent 28px
  );
  background-position: center;
  background-repeat: repeat-x;
  background-size: 28px 18px;
  opacity: 0.55;
  margin: 0 auto;
  max-width: var(--max);
}

/* ---------- About ---------- */
.about { padding: 5rem 1.25rem; }
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img { max-width: 280px; margin: 0 auto; }
.about-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.about-text p { color: var(--ink); max-width: 56ch; }

@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-img { max-width: 200px; }
  .about-text p { margin-left: auto; margin-right: auto; }
}

/* ---------- Services ---------- */
.services { padding: 5rem 1.25rem; background: var(--white); }
.section-head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.card-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-top: 4px solid var(--forest);
  border-radius: 10px;
  padding: 2rem 1.75rem;
}
.card h3 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--forest-dark);
}
.card-tag {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75em;
}
.card p:last-child { margin-bottom: 0; color: var(--ink); }

@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Offer ---------- */
.offer {
  background: var(--forest-dark);
  padding: 5rem 1.25rem;
}
.offer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.offer h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}
.offer p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}
.offer-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 3rem 1.25rem 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  height: 34px;
  margin: 0 auto 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250,246,239,0.1);
  color: var(--cream);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover {
  background: var(--gold);
  color: var(--forest-dark);
  transform: translateY(-2px);
}
.footer-area {
  color: rgba(250,246,239,0.75);
  font-size: 0.92rem;
}
.footer-copy {
  color: rgba(250,246,239,0.5);
  font-size: 0.82rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-link::after, .nav-toggle .bar, .primary-nav { transition: none; }
}
