/* ============================================================
   North & Moss Gardens — Design System
   Premium eco-friendly garden design studio
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --forest: #1C3A2E;
  --forest-700: #254A3B;
  --moss: #4A6741;
  --moss-light: #6B8964;
  --terracotta: #C8825A;
  --terracotta-dark: #B06D48;
  --terracotta-light: #D99A70;
  --cream: #F7F3EC;
  --cream-dark: #EDE6D6;
  --charcoal: #2A2620;
  --stone: #6E6960;
  --white: #ffffff;

  /* Typography */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  /* Layout */
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28, 38, 26, 0.08);
  --shadow: 0 4px 20px rgba(28, 38, 26, 0.1);
  --shadow-lg: 0 12px 48px rgba(28, 38, 26, 0.14);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.3s;

  /* Nav */
  --nav-h: 76px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--terracotta-dark); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--forest); }

ul, ol { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.3vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 0.85rem;
}

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.65;
  color: var(--moss);
  font-weight: 300;
}

.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--cream); }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-moss { background: var(--moss); color: var(--cream); }

.text-center { text-align: center; }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head.text-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8em 1.5em;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: 1.5px solid transparent;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 130, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 236, 0.45);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

.btn-arrow::after {
  content: "→";
  font-size: 1.05em;
  transition: transform var(--dur) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), height var(--dur) var(--ease);
}

.site-nav.scrolled {
  background: rgba(247, 243, 236, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 64px;
}

/* Transparent nav for home hero */
body.nav-transparent .site-nav:not(.scrolled) {
  background: linear-gradient(180deg, rgba(7, 14, 10, 0.5), rgba(7, 14, 10, 0));
}
body.nav-transparent .site-nav:not(.scrolled) .nav-link,
body.nav-transparent .site-nav:not(.scrolled) .brand {
  color: var(--cream);
}
body.nav-transparent .site-nav:not(.scrolled) .btn-outline {
  border-color: rgba(247, 243, 236, 0.55);
  color: var(--cream);
}
body.nav-transparent .site-nav:not(.scrolled) .btn-outline:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--dur) var(--ease);
}

.brand-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-block: 0.4rem;
  transition: color var(--dur) var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--terracotta-dark); }

.nav-cta { margin-left: 0.5rem; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--cream);
}

.mobile-menu .nav-link.active { color: var(--terracotta-light); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 10, 0.5) 0%, rgba(7, 14, 10, 0.25) 30%, rgba(7, 14, 10, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content h1 { color: var(--cream); max-width: 14ch; }
.hero-content .lead { color: rgba(247, 243, 236, 0.95); max-width: 52ch; margin-bottom: 1.75rem; }
.hero-content .eyebrow { color: var(--terracotta-light); }

.hero-accent { color: var(--terracotta-light); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

/* Page hero (smaller) for interior pages */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(7, 14, 10, 0.62), rgba(7, 14, 10, 0.48));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(247, 243, 236, 0.92); }

/* Tight hero for pages without big image */
.page-hero-tight {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2.5rem;
  background: var(--forest);
  color: var(--cream);
}
.page-hero-tight h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero-tight .eyebrow { color: var(--terracotta-light); }
.page-hero-tight .lead { color: rgba(247, 243, 236, 0.85); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--moss);
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--stone); font-size: 0.9375rem; line-height: 1.6; }

/* Service highlight cards */
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); }

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body { padding: 1.75rem; }
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.9375rem; color: var(--stone); }

/* Pricing/Package cards */
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease);
}
.pkg-card:hover { box-shadow: var(--shadow); }

.pkg-card.featured {
  border: 2px solid var(--terracotta);
  position: relative;
}

.pkg-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35em 0.85em;
  border-radius: var(--radius-pill);
}

.pkg-head { padding: 2rem 2rem 1rem; }
.pkg-head h3 { margin-bottom: 0.5rem; }
.pkg-price {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--forest);
  margin-top: 0.5rem;
}
.pkg-price small { font-size: 0.875rem; color: var(--stone); font-family: var(--font-sans); }

.pkg-body { padding: 0 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.pkg-features { margin: 1.5rem 0; flex: 1; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9375rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
}
.pkg-features li::before {
  content: "✓";
  color: var(--moss);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Before & After Slider ---------- */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow);
}

.ba-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slide-after {
  width: 50%;
  clip-path: inset(0 0 0 0);
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--cream);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--forest);
  pointer-events: none;
  border: 2px solid var(--cream);
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.35em 1em;
  background: rgba(7, 14, 10, 0.72);
  color: var(--cream);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  z-index: 4;
  pointer-events: none;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  padding: 1.3rem 2.5rem 1.3rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terracotta); }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.25rem;
  font-size: 1.35rem;
  color: var(--terracotta);
  transition: transform var(--dur) var(--ease);
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-content {
  padding: 0 2.5rem 1.3rem 0;
  color: var(--stone);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonial {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; color: var(--cream); font-size: 0.9375rem; }
.testimonial-role { font-size: 0.85rem; color: rgba(247, 243, 236, 0.7); }

.testimonial-grid .testimonial {
  background: var(--forest-700);
  border-radius: var(--radius-lg);
}
.testimonial-grid .testimonial-quote { font-size: 1.1rem; }

/* ---------- Pull quote (home page) ---------- */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--forest);
  max-width: 900px;
}

.pull-quote-attr {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--terracotta);
}

/* ---------- Project Cards ---------- */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.project-card:hover { box-shadow: var(--shadow-lg); }

.project-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.project-card:hover .project-card-img img { transform: scale(1.04); }

.project-card-body { padding: 1.5rem; background: var(--white); }
.project-card-body h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.project-card-body p { font-size: 0.9375rem; color: var(--stone); margin: 0; }

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

/* Project filter buttons */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5em 1.2em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--cream-dark);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--moss); color: var(--moss); }
.filter-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ---------- Process Steps ---------- */
.process-grid { counter-reset: step; }

.process-step {
  position: relative;
  padding-left: 4.5rem;
  padding-bottom: 2.25rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 52px; height: 52px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 25px; top: 52px; bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}

.process-step:last-child::after { display: none; }

.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--stone); font-size: 0.9375rem; }

/* ---------- Team Cards ---------- */
.team-card { text-align: center; }

.team-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--moss);
  border: 3px solid var(--cream);
  box-shadow: var(--shadow-sm);
}

.team-card h3 { margin-bottom: 0.25rem; }
.team-role { color: var(--terracotta); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.9375rem; color: var(--stone); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--moss), var(--cream-dark));
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  background: var(--cream);
  translate: -5px 0;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 600;
}
.timeline-item p { font-size: 0.9375rem; color: var(--stone); }

/* ---------- Philosophy Cards ---------- */
.phil-card {
  text-align: center;
  padding: 2rem;
}
.phil-card .card-icon {
  margin-inline: auto;
  width: 60px; height: 60px;
  font-size: 1.6rem;
}

/* ---------- Forms (Jaxly adapted) ---------- */
.booking-form {
  display: grid;
  gap: 1.25rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field-group { display: flex; flex-direction: column; gap: 0.4rem; }

.field-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.18);
}

.field-group textarea { resize: vertical; min-height: 100px; }

.field-help {
  font-size: 0.8rem;
  color: var(--stone);
}

.form-status {
  padding: 0.85em 1.1em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--terracotta);
  line-height: 1.5;
}

.form-status a { font-weight: 600; }

.btn-submit:disabled,
.btn-submit[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-submit:disabled:hover {
  background: var(--terracotta);
  box-shadow: none;
}

.form-alt {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.form-alt p { color: var(--stone); font-size: 0.9rem; margin-bottom: 0.5rem; }
.form-alt a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* Honeypot — visually hidden, not display:none */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Stats strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--terracotta-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.75);
  margin-top: 0.4rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.cta-banner .cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-banner .cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-banner .cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7, 14, 10, 0.82), rgba(28, 58, 46, 0.68));
}
.cta-banner-content {
  position: relative; z-index: 2;
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 620px;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(247, 243, 236, 0.85); margin-bottom: 1.5rem; }

/* ---------- Contact Info ---------- */
.contact-info-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--cream);
  height: 100%;
}

.contact-info-card h3 { color: var(--cream); margin-bottom: 1.5rem; }

.contact-list { display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-list .ci-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 243, 236, 0.6);
}
.contact-list .ci-value { font-size: 1rem; color: var(--cream); }
.contact-list .ci-value a { color: var(--cream); }
.contact-list .ci-value a:hover { color: var(--terracotta-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest);
  color: rgba(247, 243, 236, 0.8);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 2rem;
}

.site-footer a { color: rgba(247, 243, 236, 0.7); }
.site-footer a:hover { color: var(--terracotta-light); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.9375rem; max-width: 32ch; }

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.9375rem; }

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.15);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.note-sample {
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.5);
  font-style: italic;
}

/* ---------- Helpers ---------- */
.divider {
  height: 1px;
  background: var(--cream-dark);
  border: none;
  margin-block: clamp(2rem, 4vw, 3.5rem);
}

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
  background: var(--cream-dark);
  color: var(--moss);
}
.badge-sample { background: rgba(200, 130, 90, 0.15); color: var(--terracotta-dark); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.7s var(--ease-out) both;
}

[data-reveal] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; color: var(--forest); }
  body.nav-transparent .site-nav:not(.scrolled) .hamburger { color: var(--cream); }
  body.nav-transparent .site-nav.scrolled .hamburger { color: var(--forest); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .hero { min-height: 88svh; }
  .page-hero { min-height: 46vh; }

  .hero-content .lead { font-size: 1.1rem; }

  .process-step { padding-left: 3.5rem; }
  .process-step::before { width: 42px; height: 42px; font-size: 1.1rem; }
  .process-step::after { left: 20px; top: 42px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --container-pad: 1.25rem; }
  h1 { font-size: 2.2rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .mobile-menu a { font-size: 1.5rem; }
}

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--forest);
  color: var(--cream);
  padding: 0.6em 1.2em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Skip link target — offset for fixed nav */
#main { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* ---------- Selection ---------- */
::selection { background: var(--terracotta); color: var(--white); }
