:root {
  --forest: #1a3a2a;
  --forest-mid: #2d5a3a;
  --forest-light: #3d7a50;
  --gold: #c9a85c;
  --gold-light: #e8cc8a;
  --cream: #fdf8f0;
  --cream-dark: #f0e8d8;
  --bark: #8a6a45;
  --bark-light: #b5956a;
  --text: #2a2018;
  --text-mid: #5a4a35;
  --text-light: #8a7a65;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,92,0.2);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(253,248,240,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── PAGE SECTIONS ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HOME HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Animated sky */
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #091520 0%,
    #0d2030 25%,
    #122d3a 50%,
    #1a3a2a 80%,
    #162e20 100%
  );
}

/* Stars */
.stars-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle aurora */
.aurora {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(45,106,90,0.18) 0%, transparent 70%);
  filter: blur(40px);
  animation: aurora 8s ease-in-out infinite alternate;
}
@keyframes aurora { 0% { opacity: 0.4; transform: translateX(-50%) scaleX(1); } 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1.15); } }

/* Moon */
.hero-moon {
  position: absolute;
  top: 80px;
  right: 12%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #fef5c0, #f0d060);
  box-shadow: 0 0 40px 16px rgba(249,230,90,0.25), 0 0 80px 32px rgba(249,230,90,0.08);
}

/* Mountains SVG */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  pointer-events: none;
}

/* Trees SVG */
.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  pointer-events: none;
}

/* Lake */
.hero-lake {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 80px;
  background: linear-gradient(180deg, rgba(80,160,190,0.2) 0%, rgba(40,100,140,0.35) 100%);
  border-radius: 50%;
  filter: blur(2px);
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  animation: fadeUp 1.2s 0.1s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.0;
  letter-spacing: -0.02em;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(253,248,240,0.65);
  margin-top: 18px;
  letter-spacing: 0.04em;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeUp 1.2s 0.35s ease both;
}
.hero-buttons {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 0.5s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,92,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253,248,240,0.4);
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(253,248,240,0.08); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.2s 0.8s ease both;
  z-index: 10;
}
.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,168,92,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ─── HOME INTRO STRIP ─── */
.intro-strip {
  background: var(--forest);
  padding: 28px 5vw;
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(201,168,92,0.2);
}
.intro-pill {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.intro-pill:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,92,0.4), transparent);
}
.intro-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  width: 28px;
  height: 28px;
  color: var(--gold);
  opacity: 0.85;
}
.intro-pill-icon svg { width: 22px; height: 22px; }
.intro-pill-label {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--cream);
  display: block;
  margin-bottom: 2px;
}
.intro-pill-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── HOME ABOUT TEASER ─── */
.home-about {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--forest-mid); }
.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.home-about-visual {
  position: relative;
}
.visual-card {
  background: var(--forest);
  border-radius: 4px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,92,0.12), transparent 70%);
}
.visual-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
}
.visual-quote-mark {
  font-size: 72px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.visual-attr {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.visual-offset {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  opacity: 0.2;
  border-radius: 2px;
}

/* ─── HOME SERVICES TEASER ─── */
.home-services {
  background: var(--cream-dark);
  padding: 100px 5vw;
}
.home-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px auto 0;
  max-width: 300px;
}
.rule-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--bark-light), transparent); }
.rule-diamond { width: 6px; height: 6px; background: var(--bark-light); transform: rotate(45deg); flex-shrink: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1px solid rgba(181,149,106,0.2);
  padding: 40px 32px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,58,42,0.12); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--forest-mid);
}
.service-icon svg { width: 28px; height: 28px; }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── HOME TESTIMONIAL ─── */
.home-testimonial {
  background: var(--forest);
  padding: 100px 5vw;
  text-align: center;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: var(--cream);
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.testimonial-attr {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.big-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 5vw;
  background: var(--cream-dark);
  text-align: center;
}
.cta-banner .section-title { margin-bottom: 12px; }
.cta-banner .section-body { max-width: 500px; margin: 0 auto 32px; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--forest);
  padding: 160px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,92,0.08), transparent 70%);
}
.about-hero .section-title { color: var(--cream); font-size: clamp(40px, 6vw, 64px); }
.about-hero .section-body { color: rgba(253,248,240,0.65); max-width: 600px; margin: 0 auto; }

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.about-body p strong {
  font-weight: 500;
  color: var(--text);
}

/* Photo bio card */
.bio-photo-card {
  margin-bottom: 28px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.bio-photo-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  border-radius: 2px 2px 0 0;
}
.bio-photo-name {
  background: var(--forest);
  padding: 20px 24px;
  border-radius: 0 0 2px 2px;
}
.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.bio-creds {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.sidebar-card {
  background: var(--forest);
  padding: 36px 28px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,92,0.25);
}
.sidebar-list {
  list-style: none;
}
.sidebar-list li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,248,240,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-list li::before {
  content: '—';
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.about-philosophy {
  background: var(--cream-dark);
  padding: 80px 5vw;
}
.about-philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.philosophy-card {
  padding: 32px 24px;
  border-left: 2px solid var(--gold);
}
.philosophy-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.philosophy-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 10px;
}
.philosophy-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── SERVICES PAGE ─── */
.services-hero {
  background: var(--forest);
  padding: 160px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,92,0.08), transparent 70%);
}
.services-hero .section-title { color: var(--cream); font-size: clamp(40px, 6vw, 64px); }
.services-hero .section-body { color: rgba(253,248,240,0.65); max-width: 580px; margin: 0 auto; }

.services-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 5vw;
}
.service-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(181,149,106,0.2);
  align-items: start;
}
.service-full:first-child { padding-top: 0; }
.service-full-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -8px;
}
.service-full-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.service-full-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-full-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.service-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-bullets li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.services-pricing {
  background: var(--forest);
  padding: 80px 5vw;
  text-align: center;
}
.services-pricing .section-title { color: var(--cream); margin-bottom: 12px; }
.services-pricing .section-body { color: rgba(253,248,240,0.6); max-width: 500px; margin: 0 auto 48px; }
.pricing-note {
  display: inline-block;
  border: 1px solid rgba(201,168,92,0.4);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--forest);
  padding: 160px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,92,0.08), transparent 70%);
}
.contact-hero .section-title { color: var(--cream); font-size: clamp(40px, 6vw, 64px); }
.contact-hero .section-body { color: rgba(253,248,240,0.65); max-width: 500px; margin: 0 auto; }

.contact-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 20px;
}
.contact-info-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(181,149,106,0.2);
}
.contact-detail-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
.contact-detail-val {
  font-size: 14px;
  color: var(--text);
}
.contact-detail-val a {
  color: var(--text);
  text-decoration: none;
}
.contact-detail-val a:hover { color: var(--forest-mid); }

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream-dark);
  border: 1px solid rgba(181,149,106,0.3);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--forest-mid); transform: translateY(-1px); }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 40px;
  background: var(--cream-dark);
  border: 1px solid rgba(181,149,106,0.3);
  border-radius: 2px;
}
.form-success-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--forest);
}
.form-success-check svg { width: 22px; height: 22px; }
.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-success-text { font-size: 14px; color: var(--text-mid); font-weight: 300; }

/* ─── FOOTER ─── */
footer {
  background: #0d1f14;
  padding: 60px 5vw 30px;
  border-top: 1px solid rgba(201,168,92,0.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,248,240,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,248,240,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(253,248,240,0.3);
  letter-spacing: 0.1em;
}
.footer-disclaimer {
  font-size: 10px;
  color: rgba(253,248,240,0.25);
  max-width: 400px;
  text-align: right;
  line-height: 1.6;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--forest);
    padding: 24px 5vw;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,92,0.2);
  }
  .home-about { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; gap: 20px; }
  .service-bullets { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .intro-strip { flex-wrap: wrap; }
  .intro-pill { flex: 1 0 40%; }
}