:root {
  --ink: #1a1a1a;
  --ink-light: #333;
  --cream: #f4f5f6;
  --cream-dark: #ecedf0;
  --terra: #c2552a;
  --terra-hover: #a84520;
  --terra-light: rgba(194, 85, 42, 0.08);
  --forest: #2d4a2c;
  --forest-light: #3d6a3a;
  --white: #ffffff;
  --gray-50: #f8f8fa;
  --gray-100: #f0f0f3;
  --gray-200: #e2e2e7;
  --gray-400: #a4a4ad;
  --gray-500: #84848f;
  --gray-600: #65656e;
  --line: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --r-xl: 20px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(20px, 4vw, 60px);
  --inner-hero-height: clamp(520px, 64vh, 620px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Outfit, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(36px, 5.5vw, 72px); margin-bottom: 20px; }
h2 { font-size: clamp(28px, 3.8vw, 48px); margin-bottom: 16px; }

h3 {
  font-family: Outfit, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
}

.eyebrow {
  color: var(--forest);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

/* ── Scroll progress ── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--forest);
  z-index: 100;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  will-change: transform;
}

/* ── Header ── */

.site-header {
  align-items: center;
  background: rgba(244, 245, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  right: 0;
  padding: 12px max(var(--pad), env(safe-area-inset-right)) 12px max(var(--pad), env(safe-area-inset-left));
  position: fixed;
  top: 0;
  z-index: 50;
  transition: background 250ms var(--ease), box-shadow 250ms var(--ease);
}

.site-header.scrolled {
  background: rgba(244, 245, 246, 0.95);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.brand img { height: 58px; width: auto; }

.site-nav { align-items: center; display: flex; gap: 4px; }

.site-nav a {
  border-radius: var(--r-sm);
  color: var(--gray-500);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 200ms ease-out;
}

.site-nav a.nav-active { color: var(--forest); }

.site-nav .nav-social {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  margin-left: 6px;
  padding: 0;
  transition: background 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out, transform 160ms ease-out;
  width: 36px;
}

.site-nav .nav-social svg {
  flex-shrink: 0;
}

.site-nav .nav-cta {
  background: var(--forest);
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  margin-left: 12px;
  padding: 10px 22px;
  transition: background 200ms ease-out, transform 160ms ease-out;
}

.site-nav .nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  transition: transform 250ms var(--ease), opacity 200ms ease-out;
  width: 20px;
}

.nav-toggle span + span { margin-top: 5px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover { color: var(--ink); }
  .site-nav .nav-social:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
    transform: translateY(-1px);
  }
  .site-nav .nav-cta:hover { background: var(--forest-light); }
  .nav-toggle:hover { border-color: var(--gray-400); }
}

/* ── Hero ── */

.hero {
  padding: 104px var(--pad) 0;
}

.hero-banner {
  border-radius: var(--r-xl);
  min-height: calc(100vh - 124px);
  min-height: calc(100svh - 124px);
  overflow: hidden;
  position: relative;
}

.hero-banner > img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-overlay {
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 100%);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: calc(100vh - 124px);
  min-height: calc(100svh - 124px);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: var(--white);
  max-width: 600px;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 12px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

.hero-card {
  align-items: flex-end;
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.hero-card-logo {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}

.hero-card-logo img { height: 40px; width: auto; }

.hero-phone {
  align-items: center;
  background: var(--terra);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  padding: 12px 20px;
  transition: background 200ms ease-out, transform 160ms ease-out;
  white-space: nowrap;
}

.hero-phone:active { transform: scale(0.97); }

.hero-phone svg { flex-shrink: 0; }

@media (hover: hover) and (pointer: fine) {
  .hero-phone:hover { background: var(--terra-hover); }
}


/* ── Text link ── */

.text-link {
  align-items: center;
  color: var(--forest);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  margin-top: 24px;
  transition: gap 200ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover { gap: 12px; }
}

/* ── About / Who we are ── */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(80px, 10vw, 140px) var(--pad);
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.about-text > p:not(.eyebrow) {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.8;
  max-width: 500px;
}

.about-text .button {
  margin-top: 24px;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  transition-delay: 100ms;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ── About Forest (home page) ── */

.about-forest {
  background: var(--forest);
  margin-top: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.about-forest-body {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  padding: clamp(72px, 9vw, 120px) var(--pad);
}

.about-forest .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.about-forest-text h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 20px;
}

.about-forest-text > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0;
}

.about-forest-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  margin-top: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .about-forest-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
  }
}

.about-forest-image {
  align-items: center;
  display: flex;
  justify-content: center;
}

.about-forest-image img {
  aspect-ratio: 72 / 70;
  border-radius: var(--r-md);
  max-height: 460px;
  max-width: 480px;
  object-fit: cover;
  width: 100%;
}

.about-forest-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  padding-top: 24px;
}

.about-forest-stats div {
  padding: 0 12px 0 0;
}

.about-forest-stats div:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 12px;
}

.about-forest-stats strong {
  color: var(--white);
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.about-forest-stats span {
  color: rgba(255, 255, 255, 0.60);
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}

/* ── Section header ── */

.section-header {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-header h2 { margin-bottom: 0; max-width: 560px; }

/* ── Services ── */

.services {
  padding: clamp(72px, 10vw, 120px) 0;
}

.services .section-header {
  padding-inline: var(--pad);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
  transition: border-color 200ms ease-out, background 200ms ease-out, transform 160ms ease-out;
}

.slider-btn:active { transform: scale(0.95); }

.service-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 12px var(--pad) 12px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  cursor: grab;
  user-select: none;
}

.service-slider::-webkit-scrollbar { display: none; }

/* Block native image/link drag ghosts inside the slider so a grab only scrolls */
.service-slider img,
.service-slider a {
  -webkit-user-drag: none;
  user-select: none;
}

.service-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.service-slider.is-dragging .service-card {
  pointer-events: none;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  cursor: pointer;
  flex: 0 0 clamp(300px, 33vw, 420px);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}

.card-visual {
  align-items: flex-end;
  background:
    linear-gradient(135deg, var(--card-accent, var(--forest)), var(--card-accent-light, var(--forest-light)));
  display: flex;
  justify-content: space-between;
  min-height: 248px;
  padding: 20px 24px;
  position: relative;
  transition: filter 300ms ease-out;
}

.card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.12), transparent 50%);
  pointer-events: none;
}

.card-num {
  color: rgba(255, 255, 255, 0.15);
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  transition: color 300ms ease-out;
}

.card-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 36px;
  justify-content: center;
  position: relative;
  width: 36px;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

/* Service thumbnail photo (residential card + detail) */
.card-photo,
.service-detail-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-visual:has(.card-photo)::before {
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.62));
  z-index: 1;
}

.card-visual:has(.card-photo) > .card-num,
.card-visual:has(.card-photo) > .card-arrow {
  z-index: 2;
}

.service-detail-mark:has(.service-detail-photo) {
  position: relative;
}

.service-detail-mark:has(.service-detail-photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.detail-mark-num {
  position: relative;
  z-index: 2;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  transition: color 300ms ease-out;
}

.card-body p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .slider-btn:hover {
    border-color: var(--gray-200);
    background: var(--gray-50);
  }
  .service-card:hover {
    border-color: var(--gray-200);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px) scale(1.01);
  }
  .service-card:hover .card-visual {
    filter: brightness(1.06);
  }
  .service-card:hover .card-arrow {
    transform: translate(3px, -3px);
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .service-card:hover .card-num {
    color: rgba(255, 255, 255, 0.25);
  }
  .service-card:hover h3 {
    color: var(--forest);
  }
}

/* ── Buttons ── */

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  transition: transform 160ms ease-out, background 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
  white-space: nowrap;
}

.button:active { transform: scale(0.97); }

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .button.primary:hover {
    background: var(--forest-light);
    box-shadow: 0 6px 20px rgba(45, 74, 44, 0.25);
  }
  .button.secondary:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
  }
}

/* ── Services footer ── */

.services-footer {
  padding: 24px var(--pad) 0;
}

/* About page */

.about-page-hero {
  padding: 104px var(--pad) 0;
}

.about-page-grid {
  background: var(--forest);
  border-radius: var(--r-xl);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: clamp(420px, 64vh, 620px);
  overflow: hidden;
  position: relative;
}

.about-page-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  padding: clamp(36px, 5vw, 72px) clamp(36px, 5vw, 72px) 132px;
}

.about-page-copy h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
}

.about-page-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}

.about-page-copy .eyebrow {
  color: var(--forest-light);
}

.about-page-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.about-page-actions .button.primary {
  background: var(--terra);
}

.about-hero-stats {
  background: var(--white);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 0;
  margin-top: 0;
  min-height: 92px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  width: auto;
}

.about-hero-stats div {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  min-width: 0;
  padding: 18px;
}

.about-hero-stats strong {
  color: var(--forest);
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.about-hero-stats strong span {
  color: var(--terra);
  font-family: Outfit, sans-serif;
  font-size: 0.42em;
  font-weight: 700;
  margin-left: 3px;
  vertical-align: super;
}

.about-hero-stats small {
  color: var(--gray-600);
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 8px;
}

.about-page-image {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px) 132px;
}

.about-page-image img {
  border-radius: var(--r-sm);
  clip-path: inset(0 round var(--r-sm));
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about-statement {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  padding: clamp(72px, 9vw, 120px) var(--pad);
}

.about-statement h2 {
  margin-bottom: 0;
  max-width: 560px;
}

.about-statement > p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 0;
}

.process-section,
.values-section {
  padding: clamp(72px, 9vw, 120px) var(--pad);
}

.process-grid,
.values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card,
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 26px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.process-card span {
  color: rgba(45, 74, 44, 0.18);
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 56px;
  line-height: 0.9;
  margin-bottom: 28px;
}

.process-card h3,
.value-card h3 {
  color: var(--ink);
}

.process-card p,
.value-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-visual-band {
  align-items: center;
  background: #050505;
  border-radius: var(--r-xl);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  margin: 0 var(--pad);
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
}

.about-visual-copy .eyebrow {
  color: var(--forest-light);
}

.about-visual-copy h2 {
  color: var(--white);
  max-width: 560px;
}

.about-visual-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
}

.about-visual-image img {
  border-radius: var(--r-md);
  mix-blend-mode: screen;
  width: 100%;
}

.about-page-cta {
  margin-bottom: clamp(80px, 10vw, 120px);
}

.services-index.about-stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-index.about-stats-strip div {
  align-items: center;
  display: flex;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  min-height: 80px;
  padding: 14px 12px;
  text-align: center;
  transition: background 200ms ease-out, color 200ms ease-out;
  width: 100%;
}

.services-index.about-stats-strip strong {
  color: inherit;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.services-index.about-stats-strip span {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.services-index.about-stats-strip .stat-icon {
  align-items: center;
  background: var(--terra-light);
  border-radius: var(--r-sm);
  color: var(--terra);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.services-index.about-stats-strip .stat-icon svg {
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .services-index.about-stats-strip div:hover {
    background: var(--gray-50);
    color: var(--forest);
  }
  .about-page-actions .button.primary:hover {
    background: var(--terra-hover);
    box-shadow: 0 6px 20px rgba(194, 85, 42, 0.3);
  }
  .process-card:hover,
  .value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
}

/* Services page */

.services-page-hero {
  padding: 104px var(--pad) 0;
}

.services-page-banner {
  background: var(--forest);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: clamp(400px, 64vh, 620px);
  overflow: hidden;
}

.services-page-banner > img {
  align-self: center;
  border-radius: var(--r-sm);
  clip-path: inset(0 round var(--r-sm));
  grid-column: 2;
  height: auto;
  justify-self: center;
  object-fit: cover;
  padding: 0;
  width: 100%;
  max-width: calc(100% - clamp(56px, 8vw, 104px));
}

.services-page-overlay {
  align-items: flex-start;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 28px;
  grid-column: 1;
  grid-row: 1;
  justify-content: space-between;
  min-height: clamp(400px, 64vh, 620px);
  padding: clamp(28px, 4vw, 52px);
}

.services-page-copy {
  color: var(--white);
  max-width: none;
  width: 100%;
}

.services-page-copy .eyebrow {
  color: var(--forest-light);
}

.services-page-copy h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 66px);
  max-width: 100%;
}

.services-page-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 100%;
}

.services-page-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

.services-page-actions .button.primary {
  background: var(--terra);
}

.services-index {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: -34px var(--pad) 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.services-index a {
  align-items: center;
  color: var(--gray-600);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  min-height: 72px;
  padding: 14px 12px;
  text-align: center;
  transition: background 200ms ease-out, color 200ms ease-out;
}

.service-detail-list {
  display: grid;
  gap: 18px;
  padding: clamp(64px, 8vw, 108px) var(--pad) clamp(80px, 10vw, 120px);
}

.service-detail {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  scroll-margin-top: 96px;
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
}

.service-detail:nth-child(even) .service-detail-mark {
  order: 2;
}

.service-detail-mark {
  align-items: flex-end;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--detail-accent, var(--forest)), color-mix(in srgb, var(--detail-accent, var(--forest)) 78%, white));
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(70px, 9vw, 132px);
  line-height: 0.85;
  min-height: 100%;
  padding: 28px;
}

.service-detail-body {
  padding: clamp(28px, 4vw, 48px);
}

.service-detail-body h2 {
  font-size: clamp(27px, 3.1vw, 44px);
  max-width: 720px;
}

.service-detail-body > p:not(.eyebrow) {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
}

.service-points {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.service-points li {
  align-items: center;
  color: var(--ink-light);
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.service-points li::before {
  background: var(--terra);
  border-radius: 50%;
  content: '';
  flex: 0 0 7px;
  height: 7px;
  width: 7px;
}

.cta-banner.service-page-cta {
  background: #050505;
  margin-bottom: clamp(80px, 10vw, 120px);
}

.cta-banner.service-page-cta .cta-content .eyebrow {
  color: var(--forest-light);
}

.cta-banner.service-page-cta .cta-image {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
}

.cta-banner.service-page-cta .cta-image img {
  border-radius: var(--r-sm);
  clip-path: inset(0 round var(--r-sm));
  height: auto;
  mix-blend-mode: screen;
  object-fit: contain;
  padding: 0;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .services-page-actions .button.primary:hover {
    background: var(--terra-hover);
    box-shadow: 0 6px 20px rgba(194, 85, 42, 0.3);
  }
  .services-index a:hover {
    background: var(--gray-50);
    color: var(--forest);
  }
}

/* Contact page */

.contact-hero {
  padding: 104px var(--pad) 0;
}

.contact-hero-grid {
  background: var(--forest);
  border-radius: var(--r-xl);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: clamp(420px, 66vh, 640px);
  overflow: hidden;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}

.contact-hero-copy .eyebrow {
  color: var(--forest-light);
}

.contact-hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 68px);
  max-width: 520px;
}

.contact-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
}

.contact-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-hero-actions .button.primary {
  background: var(--terra);
}

.contact-hero-image {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 52px);
  position: relative;
}

.contact-hero-image::after {
  content: none;
}

.contact-hero-image img {
  border-radius: var(--r-sm);
  clip-path: inset(0 round var(--r-sm));
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about-page-grid,
.services-page-banner,
.services-page-overlay,
.contact-hero-grid {
  height: var(--inner-hero-height);
  min-height: 0;
}

.about-page-image,
.contact-hero-image {
  min-height: 0;
}

.about-page-image img,
.contact-hero-image img {
  height: 100%;
}

.services-page-banner > img {
  height: calc(var(--inner-hero-height) - clamp(56px, 8vw, 104px));
  object-fit: cover;
}

.about-page-grid,
.services-page-banner,
.contact-hero-grid {
  background: var(--forest);
}

.contact-panel {
  margin: -34px var(--pad) 0;
  position: relative;
  z-index: 2;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.contact-method {
  align-items: center;
  background: var(--white);
  display: flex;
  gap: 18px;
  min-height: 80px;
  padding: 14px 12px;
  transition: background 200ms ease-out;
}

.method-icon {
  align-items: center;
  background: var(--terra-light);
  border-radius: var(--r-md);
  color: var(--terra);
  display: flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}

.contact-method small {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.45;
}

.contact-main {
  align-items: start;
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  padding: clamp(64px, 8vw, 108px) var(--pad) clamp(80px, 10vw, 120px);
}

.contact-form-card,
.contact-map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 48px);
}

.contact-form-card h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  max-width: 560px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  outline: none;
  padding: 13px 15px;
  transition: background 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
  width: 100%;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(45, 74, 44, 0.35);
  box-shadow: 0 0 0 4px rgba(45, 74, 44, 0.08);
}

.contact-form .button {
  justify-self: start;
  margin-top: 8px;
}

.contact-map-card {
  position: sticky;
  top: 92px;
}

.map-frame {
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
}

.map-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.map-caption {
  padding: 24px;
}

.map-caption h3 {
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 4px;
}

.map-caption p:not(.eyebrow) {
  color: var(--gray-500);
  margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .contact-hero-actions .button.primary:hover {
    background: var(--terra-hover);
    box-shadow: 0 6px 20px rgba(194, 85, 42, 0.3);
  }
  .contact-method[href]:hover {
    background: var(--gray-50);
  }
}

/* ── CTA Banner ── */

.cta-banner {
  background: var(--forest);
  border-radius: var(--r-xl);
  color: var(--white);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin: 0 var(--pad) clamp(80px, 10vw, 120px);
  overflow: hidden;
  position: relative;
}

.cta-content {
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content .eyebrow { color: rgba(255, 255, 255, 0.5); }
.cta-content h2 { color: var(--white); max-width: 400px; }

.cta-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-actions .button.primary {
  background: var(--terra);
}

@media (hover: hover) and (pointer: fine) {
  .cta-actions .button.primary:hover {
    background: var(--terra-hover);
    box-shadow: 0 6px 20px rgba(194, 85, 42, 0.3);
  }
}

.cta-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* ── Partners ── */

.partners {
  padding: clamp(72px, 10vw, 120px) var(--pad);
}

.partner-wall {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.partner-track {
  animation: marquee 35s linear infinite;
  display: flex;
  gap: 14px;
  width: max-content;
}

.partner-track img {
  aspect-ratio: 2 / 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  flex-shrink: 0;
  height: auto;
  object-fit: contain;
  padding: 14px 18px;
  transition: transform 250ms var(--ease);
  width: 200px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (hover: hover) and (pointer: fine) {
  .partner-track img:hover {
    transform: scale(1.05);
  }
  .partner-track img:active {
    transform: scale(1.02);
  }
  .partner-wall:hover .partner-track {
    animation-play-state: paused;
  }
}


/* ── Footer ── */

.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) var(--pad) 0;
}

.footer-top {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(240px, 1fr) minmax(120px, 0.8fr) minmax(180px, 1.6fr) minmax(140px, 1fr) minmax(140px, 1fr);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.footer-brand img {
  display: block;
  height: 68px;
  margin-bottom: 16px;
  width: auto;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 290px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  display: flex;
  height: 36px;
  justify-content: center;
  transition: background 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out;
  width: 36px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-social-btn:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
  }
}

.footer-col h4 {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: clamp(12px, 1vw, 20px);
}

.footer-col a {
  color: var(--gray-500);
  display: block;
  font-size: 14px;
  line-height: 1.45;
  transition: color 200ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: var(--ink); }
}

.footer-hours {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-hours > div {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.footer-hours dt {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-hours dd {
  color: var(--gray-500);
  font-size: 14px;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.footer-hours-closed {
  color: var(--terra) !important;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.footer-contact-icon {
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-list a,
.footer-contact-list span {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact-list a:hover { color: var(--ink); }
}

.footer-bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  padding: 24px 0 max(32px, env(safe-area-inset-bottom));
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 13px;
  margin: 0;
}

.footer-credit {
  color: var(--gray-400);
  font-size: 13px;
  margin: 0;
}

.footer-credit a {
  color: inherit;
  font-weight: 600;
  transition: color 200ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .footer-credit a:hover { color: var(--terra); }
}

/* ── Reveal animations ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-children] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}

[data-reveal-children].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-hero-reveal] {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-enter 650ms var(--ease) forwards;
}

@keyframes hero-enter {
  to { opacity: 1; transform: none; }
}

/* ── Reduced motion ── */

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

  [data-reveal],
  [data-reveal-children] > *,
  [data-hero-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .partner-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Tablet ── */

@media (max-width: 1040px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about-image img { min-height: 320px; max-height: 400px; }

  .about-forest-body {
    grid-template-columns: 1fr;
  }

  .about-forest-image img {
    max-height: none;
  }

  .cta-banner,
  .section-header,
  .about-page-grid,
  .services-page-banner,
  .about-statement,
  .about-visual-band,
  .service-detail,
  .service-detail:nth-child(even),
  .contact-hero-grid,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page-overlay {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }

  .services-page-banner > img {
    grid-column: 1;
    max-width: none;
    order: 2;
    padding: clamp(0px, 0vw, 0px);
  }

  .about-page-image,
  .contact-hero-image {
    min-height: 320px;
  }

  .services-index {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-detail:nth-child(even) .service-detail-mark {
    order: 0;
  }

  .service-detail-mark {
    min-height: 180px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-main {
    padding-top: 56px;
  }

  .contact-map-card {
    position: static;
  }

  .service-card { flex: 0 0 clamp(260px, 55vw, 320px); }

  .cta-image { max-height: 300px; }

  .site-nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    display: grid;
    gap: 2px;
    left: 0;
    max-height: calc(100svh - 68px);
    opacity: 0;
    overflow-y: auto;
    padding: 16px 20px 20px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 200ms ease-out, transform 200ms var(--ease);
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav a {
    padding: 12px 16px;
    border-radius: var(--r-sm);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .site-nav .nav-social {
    border-radius: var(--r-sm);
    height: 44px;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 16px;
    width: 100%;
  }

  .nav-toggle { display: flex; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 48px);
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .footer-hours > div {
    gap: 8px;
  }
}

/* ── Mobile ── */

@media (max-width: 640px) {
  .brand img { height: 46px; }

  .hero { padding-top: 88px; }
  .about-page-hero { padding-top: 88px; }
  .services-page-hero { padding-top: 88px; }
  .contact-hero { padding-top: 88px; }
  .hero-banner { min-height: calc(100vh - 108px); min-height: calc(100svh - 108px); }
  .hero-overlay {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    min-height: calc(100vh - 108px);
    min-height: calc(100svh - 108px);
  }
  .hero-card { align-self: flex-start; }

  .about-forest-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }

  .about-forest-stats div:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }

  .about-forest-stats div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
  }

  .about-page-grid,
  .services-page-banner,
  .contact-hero-grid,
  .about-visual-band {
    border-radius: var(--r-lg);
    height: auto;
    min-height: 0;
  }

  .services-page-overlay {
    height: auto;
    min-height: 0;
  }

  .about-page-copy,
  .services-page-overlay,
  .contact-hero-copy,
  .about-visual-band {
    padding: 30px 24px;
  }

  .about-page-image,
  .contact-hero-image {
    height: 220px;
    min-height: 0;
    padding: 0 24px 24px;
  }

  .about-page-image img,
  .contact-hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .about-hero-stats {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 30px;
    min-height: 0;
    position: static;
  }

  .about-page-copy {
    padding-bottom: 24px;
  }

  .about-statement,
  .process-section,
  .values-section {
    padding-block: 60px;
  }

  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .value-card {
    padding: 22px;
  }

  .services-page-banner > img {
    height: auto;
    padding: 0 24px 24px;
  }

  .services-index,
  .services-index.about-stats-strip {
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    overflow: hidden;
  }

  .services-index a {
    min-height: 62px;
  }

  .services-index a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .services-index.about-stats-strip div {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    min-height: 80px;
    padding: 16px 12px;
    text-align: center;
  }

  .services-index.about-stats-strip .stat-icon {
    flex-shrink: 0;
  }

  .services-index.about-stats-strip strong,
  .services-index.about-stats-strip span:not(.stat-icon) {
    line-height: 1.3;
  }

  .service-detail-list {
    padding-top: 44px;
  }

  .service-detail-mark {
    font-size: 72px;
    min-height: 160px;
    padding: 22px;
  }

  .service-detail-body {
    padding: 24px;
  }

  .contact-panel {
    margin-top: 20px;
  }

  .contact-method {
    min-height: 80px;
    padding: 14px 12px;
  }

  .contact-form-card {
    padding: 24px;
  }

  h1 { font-size: clamp(28px, 8vw, 42px); }

  .about-image img { min-height: 280px; max-height: 340px; }

  .service-card { flex: 0 0 clamp(250px, 75vw, 300px); }
  .card-visual { min-height: 160px; }
  .card-num { font-size: 56px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 32px);
  }

  .footer-brand {
    grid-column: auto;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
  }

  .footer-brand p { max-width: none; }

  .footer-col {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .footer-col:last-of-type {
    border-bottom: none;
  }

  .cta-image { display: none; }
  .cta-content { padding: 36px 28px; }

  .partner-track img { width: 170px; padding: 12px 14px; }
}
