/* ============================================================
   Mountain Framing LLC — Premium Construction Site
   Design system: charcoal · forest green · natural wood · bone
   ============================================================ */

:root {
  /* Core palette */
  --ink: #121512;          /* near-black charcoal */
  --charcoal: #1b1f1c;     /* warm charcoal */
  --charcoal-2: #242a25;   /* raised charcoal */
  --forest: #1f3d2d;       /* deep forest green */
  --forest-2: #27513c;     /* forest mid */
  --moss: #4f8a63;         /* living green accent */
  --wood: #c39b63;         /* natural wood / brass */
  --wood-2: #a87f4c;       /* deeper wood */
  --bone: #f4f1ea;         /* warm white sections */
  --paper: #fbfaf6;        /* lightest */
  --line: rgba(27, 31, 28, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #20251f;
  --text-soft: #545b51;
  --text-faint: #8a8f84;
  --on-dark: #ecebe4;
  --on-dark-soft: #adb2a6;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(18, 21, 18, 0.06);
  --shadow: 0 18px 50px -22px rgba(18, 21, 18, 0.45);
  --shadow-lg: 0 40px 90px -40px rgba(18, 21, 18, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--forest); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--text); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: 1.3rem; line-height: 1.2; }
h4 { font-size: 1rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--wood-2);
  margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--wood); display: inline-block; }
.eyebrow-light { color: var(--wood); }

.lead { font-size: 1.18rem; color: var(--text-soft); line-height: 1.6; }
.accent { color: var(--wood); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.97rem;
  padding: 0.85rem 1.6rem; border-radius: 50px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-sm { padding: 0.62rem 1.15rem; font-size: 0.88rem; }
.btn-lg { padding: 1.02rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--wood); color: #1d1505; box-shadow: 0 10px 26px -12px rgba(195, 155, 99, 0.8); }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: var(--wood-2); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); z-index: -1; }
.btn-primary:hover { transform: translateY(-2px); color: #150f02; }
.btn-primary:hover::after { transform: scaleX(1); }

.btn-ghost { color: #fff; border: 1.5px solid rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn-ghost::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s var(--ease); z-index: -1; }
.btn-ghost:hover { color: var(--ink); transform: translateY(-2px); border-color: #fff; }
.btn-ghost:hover::after { transform: scaleY(1); }

.btn-dark { background: var(--forest); color: #fff; }
.btn-dark::after { content: ""; position: absolute; inset: 0; background: var(--forest-2); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); z-index: -1; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-dark:hover::after { transform: scaleX(1); }

:focus-visible { outline: 3px solid var(--moss); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.05rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(18, 21, 18, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 0.6rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 20px 40px -30px rgba(0,0,0,0.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: #fff; }
.brand-mark { color: var(--wood); display: inline-flex; transition: transform 0.5s var(--ease); }
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-3deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.01em; white-space: nowrap; }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); }

.main-nav { display: flex; gap: 1.85rem; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.96rem; position: relative; padding: 0.3rem 0;
  white-space: nowrap; transition: color 0.3s var(--ease);
}
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--wood); transition: width 0.35s var(--ease); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.25rem; }
.phone-link { display: inline-flex; align-items: center; gap: 0.45rem; color: #fff; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.phone-link svg { color: var(--wood); }
.phone-link:hover { color: var(--wood); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 120; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(18, 21, 18, 0.98); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-menu a { color: #fff; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.mobile-menu a:hover { color: var(--wood); }
.mobile-menu .btn { font-family: var(--sans); font-size: 1rem; margin-top: 0.5rem; }
.mobile-phone { font-family: var(--sans) !important; font-size: 1.05rem !important; color: var(--wood) !important; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-poster { transform: scale(1.05); animation: heroZoom 16s var(--ease) forwards; }
.hero-video { opacity: 0; transition: opacity 1.1s var(--ease); will-change: opacity; }
.hero-video.is-playing { opacity: 1; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,19,16,0.62) 0%, rgba(16,19,16,0.32) 38%, rgba(16,19,16,0.72) 100%),
    linear-gradient(90deg, rgba(13,26,19,0.86) 0%, rgba(16,19,16,0.42) 50%, rgba(16,19,16,0.12) 80%);
}
.hero-content { position: relative; z-index: 2; padding-top: 7rem; padding-bottom: 6rem; }
.hero-content .eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-badges { max-width: 820px; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero-sub { font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255,255,255,0.9); max-width: 640px; margin: 1.6rem 0 2.3rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.6rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.92); }
.hero-badges svg { color: var(--moss); flex-shrink: 0; }

.scroll-cue { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--on-dark); padding: 2.6rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.7rem; padding: 0.5rem; position: relative; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: -0.7rem; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.08); }
.trust-ico { color: var(--wood); font-family: var(--serif); font-size: 1.7rem; font-weight: 600; display: inline-flex; height: 34px; align-items: center; }
.trust-item p { font-size: 0.84rem; color: var(--on-dark-soft); line-height: 1.35; font-weight: 500; max-width: 16ch; }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-dark { background: var(--charcoal); color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-tint { background: var(--bone); }

/* Services section — framing photo backdrop */
.services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(13,16,13,0.84) 0%, rgba(13,16,13,0.70) 42%, rgba(13,16,13,0.90) 100%),
    url("../assets/services-framing.jpg") center / cover no-repeat;
}
.services .container { position: relative; z-index: 1; }
.services .section-head h2 {
  color: #fff; font-size: clamp(2.3rem, 5vw, 3.85rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.services .section-head .eyebrow { color: var(--wood); text-shadow: 0 1px 10px rgba(0,0,0,0.6); }
.services .section-intro {
  color: rgba(255,255,255,0.94); font-size: 1.18rem; font-weight: 400;
  text-shadow: 0 1px 14px rgba(0,0,0,0.55);
}

.section-head { max-width: 720px; margin: 0 auto clamp(2.8rem, 5vw, 4rem); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-intro { color: var(--text-soft); font-size: 1.1rem; margin-top: 1.1rem; }
.section-dark .section-intro { color: var(--on-dark-soft); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about-media { position: relative; }
.img-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.img-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.9s var(--ease); }
.about-media:hover .img-frame img { transform: scale(1.05); }
.img-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); pointer-events: none; }
.about-stat-card {
  position: absolute; bottom: -28px; right: -22px;
  background: var(--forest); color: #fff; padding: 1.5rem 1.8rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; max-width: 220px;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-stat-card .stat-num { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--wood); line-height: 1; }
.about-stat-card .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.82); margin-top: 0.4rem; }

.about-copy h2 { margin-bottom: 1.3rem; }
.about-copy .lead { margin-bottom: 1.1rem; }
.about-copy p { color: var(--text-soft); margin-bottom: 1.1rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.3rem; margin: 1.8rem 0 2.2rem; }
.check-list li { position: relative; padding-left: 1.9rem; font-weight: 500; color: var(--text); font-size: 0.97rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--moss) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- Card grids ---------- */
.card-grid { display: grid; gap: 1.6rem; }
.services-grid, .why-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); }

/* Service cards — frosted glass with white frame over the framing photo */
.service-card {
  background: rgba(15,19,16,0.34);
  -webkit-backdrop-filter: blur(8px) saturate(120%); backdrop-filter: blur(8px) saturate(120%);
  border: 1.5px solid rgba(255,255,255,0.62); border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 12px 34px -20px rgba(0,0,0,0.75);
}
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--wood); transition: width 0.5s var(--ease); }
.service-card:hover { transform: translateY(-6px); background: rgba(15,19,16,0.52); border-color: #fff; box-shadow: 0 24px 48px -22px rgba(0,0,0,0.8); }
.service-card:hover::before { width: 100%; }
.service-ico {
  width: 58px; height: 58px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--forest-2), var(--forest)); color: var(--wood); margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 6px 16px -8px rgba(0,0,0,0.6);
  transition: transform 0.45s var(--ease);
}
.service-card:hover .service-ico { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { color: #fff; margin-bottom: 0.7rem; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.service-card p { color: rgba(255,255,255,0.88); font-size: 0.96rem; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }

/* Why cards */
.why-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 1.9rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  position: relative;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(195,155,99,0.5); }
.why-num { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--wood-2); display: inline-block; margin-bottom: 1rem; letter-spacing: 0.05em; }
.why-num::after { content: ""; display: block; width: 30px; height: 2px; background: var(--wood); margin-top: 0.55rem; transition: width 0.4s var(--ease); }
.why-card:hover .why-num::after { width: 54px; }
.why-card h3 { margin-bottom: 0.6rem; }
.why-card p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1.1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem 1rem;
  color: #fff; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent, rgba(15,20,15,0.85));
  transform: translateY(8px); opacity: 0.9; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- Service areas ---------- */
.areas-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.area-chips li {
  padding: 0.55rem 1.1rem; border: 1px solid var(--line-light); border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  color: var(--on-dark); background: rgba(255,255,255,0.03); transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.area-chips li:hover { background: var(--forest-2); border-color: var(--wood); transform: translateY(-2px); }
.area-chips .chip-more { background: var(--wood); color: #1d1505; border-color: var(--wood); font-weight: 600; }
.area-chips .chip-more:hover { background: var(--wood-2); }

.areas-map { display: flex; flex-direction: column; align-items: center; }
.utah-map { width: 100%; max-width: 380px; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45)); }
.utah-shape { transition: fill 0.4s var(--ease); }
.markers text { font-family: var(--sans); font-size: 13px; font-weight: 600; fill: #fff; }
.markers .dot { fill: var(--moss); stroke: rgba(255,255,255,0.55); stroke-width: 1; opacity: 0.92; }
.markers .dot-hq { fill: var(--wood); stroke: #fff; stroke-width: 1.4; }
.marker-primary .pulse { fill: rgba(195,155,99,0.30); stroke: none; transform-origin: center; transform-box: fill-box; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(2.4); opacity: 0; } }
.map-note { margin-top: 1.4rem; font-size: 0.86rem; color: var(--on-dark-soft); text-align: center; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; position: relative; }
.step { position: relative; padding-top: 1.5rem; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--line); }
.step::after { content: ""; position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--wood); box-shadow: 0 0 0 4px rgba(195,155,99,0.18); }
.step-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--wood); opacity: 0.55; line-height: 1; display: block; margin-bottom: 0.6rem; }
.step h3 { margin-bottom: 0.55rem; font-size: 1.18rem; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Meet the Owners ---------- */
.owners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 4vw, 2.4rem); max-width: 880px; margin-inline: auto; }
.owner-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.owner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(195,155,99,0.45); }
.owner-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone); }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.9s var(--ease); }
.owner-card:hover .owner-photo img { transform: scale(1.05); }
.owner-body { padding: 1.6rem 1.7rem 1.9rem; }
.owner-body h3 { font-size: 1.45rem; margin-bottom: 0.1rem; }
.owner-role { color: var(--wood-2); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; }
.owner-role::after { content: ""; display: block; width: 34px; height: 2px; background: var(--wood); margin: 0.7rem 0 1rem; }
.owner-body p:last-child { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; color: #fff; text-align: center; overflow: hidden; background: var(--ink); }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,28,20,0.82), rgba(18,21,18,0.86)); }
.cta-content { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-content h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.cta-content p { color: rgba(255,255,255,0.88); font-size: 1.18rem; margin: 1.2rem 0 2.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info .lead { margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--bone); color: var(--forest); display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.contact-label { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-faint); font-weight: 600; }
.contact-list a, .contact-list div span:last-child { font-weight: 500; color: var(--text); }
.contact-list a:hover { color: var(--wood-2); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--text);
  padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(79,138,99,0.16); }
.field textarea { resize: vertical; min-height: 110px; }
.field .error { font-size: 0.78rem; color: #b4452f; min-height: 0; }
.field.invalid input, .field.invalid select { border-color: #c95a40; }
.form-success { margin-top: 1rem; padding: 0.9rem 1.1rem; background: rgba(79,138,99,0.12); border: 1px solid rgba(79,138,99,0.4); border-radius: var(--radius-sm); color: var(--forest); font-weight: 500; font-size: 0.95rem; }
.form-success.error { background: rgba(201,90,64,0.12); border-color: rgba(201,90,64,0.45); color: #b4452f; }
.form-note { margin-top: 1rem; font-size: 0.85rem; color: var(--text-faint); text-align: center; }
.form-note a { color: var(--wood-2); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-soft); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-blurb { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; max-width: 38ch; }
.footer-badge { font-size: 0.8rem; color: var(--wood); letter-spacing: 0.03em; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--wood); }
.footer-col li { font-size: 0.95rem; }
.footer-contact { margin-bottom: 1.4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-faint); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-poster { animation: none; transform: none; } .hero-video { display: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem 1rem; }
  .trust-item:nth-child(3)::after { display: none; }
  .services-grid, .why-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto 2rem; }
  .about-stat-card { right: 8px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .areas-map { margin-top: 1rem; order: -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item::after { display: none !important; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .owners-grid { grid-template-columns: 1fr; max-width: 380px; }
  .steps { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .hero-content { padding-top: 6rem; }
  .hero-badges { gap: 0.8rem 1.2rem; }
  .about-stat-card { position: relative; bottom: auto; right: auto; margin: -1.5rem auto 0; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- Footer legal links ---------- */
.footer-legal a { color: var(--text-faint); transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--wood); }

/* ---------- Legal / informational pages ---------- */
.site-header.solid {
  position: sticky;
  background: rgba(18, 21, 18, 0.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.legal-main { background: var(--paper); padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); }
.legal-wrap { max-width: 800px; margin-inline: auto; }
.legal-wrap > .eyebrow { justify-content: flex-start; }
.legal-wrap h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.4rem; }
.legal-updated { color: var(--text-faint); font-size: 0.92rem; margin-bottom: 2.4rem; }
.legal-wrap h2 { font-size: 1.35rem; margin: 2.2rem 0 0.7rem; }
.legal-wrap p, .legal-wrap li { color: var(--text-soft); line-height: 1.75; margin-bottom: 0.9rem; }
.legal-wrap ul { padding-left: 1.3rem; list-style: disc; margin-bottom: 0.9rem; }
.legal-wrap a { color: var(--wood-2); font-weight: 500; }
.legal-wrap a:hover { color: var(--wood); }
.legal-wrap strong { color: var(--text); }

/* ---------- Location (per-city) pages ---------- */
.loc-hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); color: #fff; overflow: hidden; background: var(--ink); }
.loc-media { position: absolute; inset: 0; z-index: 0; }
.loc-media img { width: 100%; height: 100%; object-fit: cover; }
.loc-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,16,13,0.82) 0%, rgba(13,16,13,0.70) 45%, rgba(13,16,13,0.92) 100%); }
.loc-hero .container { position: relative; z-index: 1; }
.loc-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.8vw, 3.4rem); max-width: 20ch; margin-bottom: 1.1rem; }
.loc-hero .hero-sub { margin: 0 0 2rem; }
.loc-narrow { max-width: 840px; }
.loc-narrow h2 { margin: 0.3rem 0 1.1rem; }
.loc-narrow .lead { margin-bottom: 1.1rem; }
.loc-narrow > p { color: var(--text-soft); margin-bottom: 1.2rem; }
.loc-services { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2rem; margin: 1.6rem 0 2.2rem; }
.loc-services li { position: relative; padding-left: 2rem; }
.loc-services li::before { content: ""; position: absolute; left: 0; top: 0.15rem; width: 20px; height: 20px; border-radius: 50%; background: var(--moss) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; }
.loc-services strong { display: block; font-family: var(--serif); font-size: 1.08rem; color: var(--text); margin-bottom: 0.1rem; }
.loc-services span { color: var(--text-soft); font-size: 0.95rem; }
.area-chips a { color: inherit; }
.area-chips-light li { background: #fff; border-color: var(--line); color: var(--text); }
.area-chips-light li:hover { background: var(--forest); border-color: var(--wood); color: #fff; }
.area-chips-light .chip-more { background: var(--wood); color: #1d1505; border-color: var(--wood); }
@media (max-width: 560px) { .loc-services { grid-template-columns: 1fr; } }
