/* ==========================================================================
   Greenhouse Construction, Inc. — Stylesheet
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand greens (from logo gradient) */
  --forest-900: #0b1f14;
  --forest-800: #0f2c1c;
  --forest-700: #17462c;
  --forest-600: #1f6b3f;
  --forest-500: #2c8a52;
  --leaf-400: #6bc463;
  --leaf-300: #93d97f;

  /* Brand silver (from logo "HI") */
  --silver-100: #eef1f2;
  --silver-300: #c9ced2;
  --silver-500: #9aa2a8;
  --silver-700: #656d73;

  /* Neutrals */
  --ink-900: #15191a;
  --ink-700: #3c4547;
  --ink-500: #636d6f;
  --paper: #faf8f3;
  --paper-alt: #f1ede3;
  --white: #ffffff;
  --line: #e4ded0;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--forest-700) 0%, var(--forest-600) 45%, var(--leaf-400) 100%);
  --grad-silver: linear-gradient(120deg, var(--silver-700) 0%, var(--silver-300) 55%, var(--silver-100) 100%);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale (8pt rhythm) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;

  color-scheme: light;
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; text-wrap: balance; }
p { text-wrap: pretty; }

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

/* ---- Utility --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (min-width: 640px) {
  .container { padding-inline: var(--space-4); }
}

.section { padding-block: var(--space-7); }
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--forest-900); color: var(--silver-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-600);
}
.section--dark .eyebrow { color: var(--leaf-300); }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head h2 { font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem); margin-top: var(--space-2); }
.section-head p { margin-top: var(--space-2); color: var(--ink-500); font-size: 1.08rem; }
.section--dark .section-head p { color: var(--silver-300); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -60px;
  background: var(--forest-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: var(--space-2); }

:focus-visible {
  outline: 3px solid var(--leaf-400);
  outline-offset: 3px;
}

/* ---- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(23, 70, 44, 0.55);
}
.btn--primary:hover { box-shadow: 0 14px 30px -10px rgba(23, 70, 44, 0.65); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.4); }

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-900);
}
.btn--outline:hover { border-color: var(--forest-600); color: var(--forest-600); }

.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: var(--space-2);
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }

.site-header.is-scrolled {
  background: rgba(11, 31, 20, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
  padding-block: 0.7rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }

/* Crops the icon mark out of the full lockup (icon + wordmark) logo file,
   since the source jpg has no transparent/icon-only version. */
.logo-mark {
  --size: 42px;
  width: var(--size);
  height: var(--size);
  position: relative;
  display: inline-block;
  overflow: hidden;
  flex: none;
}
.logo-mark img {
  position: absolute;
  max-width: none;
  width: calc(2.625 * var(--size));
  height: calc(1.5 * var(--size));
  top: calc(-0.225 * var(--size));
  left: calc(-0.8 * var(--size));
  mix-blend-mode: screen;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-300); margin-top: 2px; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: var(--space-4); }
.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--silver-100);
  position: relative;
  padding-block: 0.3rem;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--leaf-400);
  transition: right var(--dur-fast) var(--ease-out);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-phone { display: none; align-items: center; gap: 0.5rem; color: var(--silver-100); font-weight: 600; font-size: 0.94rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--leaf-300); }

.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-dark);
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Below ~560px the lockup + "Get a Quote" + menu button no longer fit on
   one line; the mobile drawer already repeats the CTA, so drop it here. */
@media (max-width: 560px) {
  .header-actions .btn--primary { display: none; }
  .brand-name { font-size: 0.92rem; }
}
@media (max-width: 400px) {
  .brand-name small { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--forest-900);
  padding: 6.5rem var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav .header-phone { display: inline-flex; font-size: 1.1rem; }
@media (min-width: 900px) { .mobile-nav { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,20,15,0.55) 0%, rgba(11,20,15,0.35) 30%, rgba(9,16,12,0.85) 82%, rgba(8,14,10,0.97) 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(9,16,12,0.65) 0%, rgba(9,16,12,0) 55%);
}

.hero-inner { width: 100%; padding-block: 8.5rem var(--space-6); position: relative; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  margin-bottom: var(--space-3);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-400); box-shadow: 0 0 0 4px rgba(107,196,99,0.25); }

.hero h1 {
  font-size: clamp(2.6rem, 1.9rem + 3.2vw, 4.6rem);
  max-width: 16ch;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--leaf-300); }

.hero-sub {
  margin-top: var(--space-3);
  max-width: 46ch;
  font-size: 1.15rem;
  color: var(--silver-100);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }

.hero-stats {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 720px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem);
  color: var(--white);
  display: block;
}
.hero-stat .label { font-size: 0.82rem; color: var(--silver-300); margin-top: 0.2rem; }

.scroll-cue {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  display: none;
  align-items: center;
  gap: 0.6rem;
  color: var(--silver-300);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--leaf-400), transparent); }
@media (min-width: 900px) { .scroll-cue { display: flex; } }

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust-strip {
  background: var(--forest-800);
  color: var(--silver-100);
  padding-block: var(--space-3);
}
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  text-align: center;
}
@media (min-width: 720px) { .trust-strip ul { grid-template-columns: repeat(4, 1fr); } }
.trust-strip li { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; font-size: 0.86rem; }
.trust-strip svg { width: 22px; height: 22px; color: var(--leaf-300); }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(23,70,44,0.28); border-color: transparent; }

.service-icon {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  color: var(--white);
  margin-bottom: var(--space-3);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--ink-500); font-size: 0.98rem; }

/* ==========================================================================
   Recent work banner
   ========================================================================== */
.callout {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-brand);
  color: var(--white);
  padding: var(--space-6) var(--space-4);
  isolation: isolate;
}
.callout::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,0.18), transparent 55%);
}
.callout-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) { .callout-grid { grid-template-columns: 1.1fr 0.9fr; } }
.callout h2 { font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.3rem); max-width: 20ch; }
.callout p { margin-top: var(--space-2); color: rgba(255,255,255,0.88); max-width: 55ch; font-size: 1.05rem; }
.callout-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.callout-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  backdrop-filter: blur(4px);
}
.callout-stat .num { font-family: var(--font-display); font-size: 2.1rem; display: block; }
.callout-stat .label { font-size: 0.86rem; color: rgba(255,255,255,0.85); margin-top: 0.2rem; }

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--forest-800);
  color: var(--white);
  text-align: left;
  border: none;
  width: 100%;
  padding: 0;
}
.project-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}
.project-card:hover img { transform: scale(1.06); }
.project-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,16,12,0.95) 0%, rgba(9,16,12,0.62) 42%, rgba(9,16,12,0.1) 72%);
  transition: background var(--dur-med) var(--ease-out);
}
.project-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-3);
}
.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 14, 10, 0.62);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  margin-bottom: 0.6rem;
}
.project-card h3 { font-size: 1.3rem; color: var(--white); }
.project-card .loc { font-size: 0.88rem; color: var(--silver-300); margin-top: 0.2rem; display: flex; align-items: center; gap: 0.35rem; }
.project-card .loc svg { width: 14px; height: 14px; }
.project-card .view {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: var(--space-2);
  font-size: 0.88rem; font-weight: 600; color: var(--leaf-300);
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.project-card:hover .view, .project-card:focus-visible .view { opacity: 1; transform: translateY(0); }
.project-card .view svg { width: 16px; height: 16px; }

.project-card--placeholder {
  background: var(--grad-brand);
  display: flex;
  align-items: flex-end;
  cursor: default;
}
.project-card--placeholder::before { display: none; }
.project-card--placeholder .badge-soon {
  position: absolute; top: var(--space-3); right: var(--space-3);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0,0,0,0.25); padding: 0.35rem 0.7rem; border-radius: 999px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,12,10,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-3);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-inner { width: 100%; max-width: 1000px; }
.lightbox-frame { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--forest-900); }
.lightbox-frame img { width: 100%; max-height: 68vh; object-fit: contain; background: var(--forest-900); }
.lightbox-head { display: flex; align-items: center; justify-content: space-between; color: var(--white); margin-bottom: var(--space-2); gap: var(--space-2); }
.lightbox-head h3 { font-size: 1.3rem; }
.lightbox-head p { color: var(--silver-300); font-size: 0.9rem; margin-top: 0.15rem; }
.lightbox-close, .lightbox-nav {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); flex: none;
}
.lightbox-close svg, .lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-nav-row { display: flex; justify-content: space-between; margin-top: var(--space-2); align-items: center; }
.lightbox-counter { color: var(--silver-300); font-size: 0.85rem; }
.lightbox-arrows { display: flex; gap: 0.6rem; }

/* ==========================================================================
   About
   ========================================================================== */
.about-layout {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 980px) { .about-layout { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }

.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 980px) { .about-media { position: sticky; top: 110px; } }
.about-media-badge {
  position: absolute; left: var(--space-3); bottom: var(--space-3);
  background: rgba(11,31,20,0.85);
  color: var(--white);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid rgba(255,255,255,0.15);
}
.about-media-badge .num { font-family: var(--font-display); font-size: 2rem; }
.about-media-badge .label { font-size: 0.8rem; color: var(--silver-300); }

.about-block + .about-block { margin-top: var(--space-5); }
.about-block h3 {
  font-size: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.about-block h3 svg { width: 22px; height: 22px; color: var(--forest-600); flex: none; }
.about-block p { margin-top: 0.8rem; color: var(--ink-700); }
.about-block p + p { margin-top: 0.8rem; }

.about-leads { display: grid; gap: var(--space-3); margin-top: var(--space-3); }
@media (min-width: 560px) { .about-leads { grid-template-columns: 1fr 1fr; } }
.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.lead-card .role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--forest-600); }
.lead-card h4 { font-family: var(--font-display); font-size: 1.2rem; margin-top: 0.3rem; }
.lead-card p { font-size: 0.92rem; margin-top: 0.4rem; color: var(--ink-500); }

.about-list { margin-top: 0.8rem; display: grid; gap: 0.6rem; }
.about-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-700); }
.about-list svg { width: 20px; height: 20px; color: var(--leaf-400); flex: none; margin-top: 0.15rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.9rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--paper-alt); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.45rem 0.9rem; font-size: 0.86rem; font-weight: 600;
}
.chip svg { width: 15px; height: 15px; color: var(--forest-600); }

.about-quote {
  margin-top: var(--space-5);
  border-left: 3px solid var(--forest-600);
  padding-left: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--forest-800);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  background: none; border: none; text-align: left;
  padding: var(--space-3) 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-900);
}
.faq-q .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--forest-600);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item[open] .faq-q .plus { background: var(--forest-600); border-color: var(--forest-600); }
.faq-item[open] .faq-q .plus::before, .faq-item[open] .faq-q .plus::after { background: var(--white); }
.faq-item[open] .faq-q .plus::after { transform: rotate(90deg) scaleY(0); }

.faq-a { padding: 0 0.25rem var(--space-3); color: var(--ink-500); max-width: 68ch; }

.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* Animate details open (progressive enhancement via JS max-height not required; fine natively) */

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }

.contact-card {
  background: var(--forest-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 10% 0%, rgba(107,196,99,0.18), transparent 55%);
}
.contact-card h2 { font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.4rem); max-width: 16ch; }
.contact-card > p { margin-top: var(--space-2); color: var(--silver-300); max-width: 46ch; }

.contact-methods { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.contact-method {
  display: flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.contact-method:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.28); transform: translateX(3px); }
.contact-method .ico {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--grad-brand);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-method .ico svg { width: 22px; height: 22px; color: var(--white); }
.contact-method .txt .k { font-size: 0.78rem; color: var(--silver-300); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method .txt .v { font-weight: 600; font-size: 1.08rem; margin-top: 0.15rem; }

.contact-side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-map { aspect-ratio: 4/3; width: 100%; border: none; filter: grayscale(0.15) contrast(1.05); }
.contact-side-body { padding: var(--space-4); }
.contact-side-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.contact-area-list { display: grid; gap: 0.55rem; }
.contact-area-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-700); font-size: 0.96rem; }
.contact-area-list svg { width: 17px; height: 17px; color: var(--forest-600); flex: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--forest-900); color: var(--silver-300); padding-block: var(--space-6) var(--space-4); }
.footer-grid { display: grid; gap: var(--space-5); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: var(--space-2); }
.footer-brand .logo-mark { --size: 38px; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; }
.footer-col p { font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 { color: var(--white); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.94rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--space-3); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  justify-content: space-between;
  font-size: 0.84rem;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
