@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400;1,9..144,700&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #285014;
  --primary-dark:   #1c3a0e;
  --primary-light:  #3a6e1e;
  --accent:         #7C7C7C;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --muted:          #6B6660;
  --border:         rgba(40, 80, 20, 0.18);
  --border-neutral: rgba(26, 24, 20, 0.1);
  --sand:           #EDE8DC;
  --cream-deep:     #F0EAD8;

  --header-height: 72px;

  --radius:         8px;
  --radius-pill:    999px;

  --section-py:     clamp(96px, 12vh, 160px);
  --content-width:  1280px;

  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 450;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Anchors inside headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p { line-height: 1.7; }

a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }

/* ============================================================
   EYEBROW / LABEL SYSTEM
   ============================================================ */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.cta-banner-eyebrow,
.info-card-eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.eyebrow::before,
.section-eyebrow::before,
.page-eyebrow::before,
.page-header-eyebrow::before,
.cta-banner-eyebrow::before,
.info-card-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-eyebrow {
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.hero-eyebrow::before {
  background: var(--primary);
  opacity: 1;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.section-inner,
.services-inner,
.reviews-inner,
.gallery-inner,
.faq-inner,
.contact-inner,
.trust-strip-inner,
.cta-banner-inner,
.footer-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up    { opacity: 0; transform: translateY(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.scale-in   { opacity: 0; transform: scale(0.92);        transition: opacity 0.65s ease, transform 0.65s ease; }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible { opacity: 1; transform: none; }

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scrollProgress.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 100ms linear;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.nav-pages ul {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

#navLinks {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

#navLinks li { display: flex; }

#navLinks a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
}

#navLinks a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

#navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff !important; text-decoration: none !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
  }

  #navLinks.open { display: flex; }

  #navLinks li { width: 100%; }
  #navLinks a { font-size: 18px; padding: 10px 0; }

  .nav-cta .nav-cta-text { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, filter 150ms;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(0.92);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(40,80,20,0.4);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover,
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  border-color: #fff;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 150ms, border-color 150ms;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.btn-submit,
.btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: filter 150ms, transform 150ms;
  font-family: var(--font-body);
}
.btn-submit:hover, .btn-form-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 0;
  border-top: 1px solid var(--border-neutral);
  margin-top: 20px;
  font-family: var(--font-body);
}
.btn-service:hover { color: var(--primary-dark); text-decoration: none; gap: 12px; }
.btn-service-arrow { transition: transform 200ms; }
.btn-service:hover .btn-service-arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-color: transparent;
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 15, 8, 0.88) 0%,
    rgba(10, 15, 8, 0.5) 45%,
    rgba(10, 15, 8, 0.15) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-bottom: clamp(64px, 8vh, 100px);
  padding-top: clamp(64px, 8vh, 100px);
  width: 100%;
}

.hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 28px;
}

.hero-title,
.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  background: rgba(40,80,20,0.12);
}

@media (max-width: 640px) {
  .hero { min-height: 94vh; align-items: flex-end; }
  .hero-title, .hero-inner h1 { font-size: clamp(52px, 13vw, 80px); }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  padding: 20px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.trust-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
  font-family: var(--font-body);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-body);
  white-space: nowrap;
}

.trust-badge svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  max-height: 64px;
  background: var(--canvas);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2;
  color: var(--muted);
  padding: 0 28px;
  font-family: var(--font-body);
}

.marquee-item span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

/* ============================================================
   SERVICES SECTION (index.html)
   ============================================================ */
.services {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.services-header-left h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.services-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 8px;
  flex-shrink: 0;
}
.services-header a:hover { text-decoration: underline; text-decoration-thickness: 2px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  text-decoration: none;
  z-index: 2;
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
  filter: grayscale(15%);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.service-card-body h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 200ms; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; gap: 16px; }
}

/* ============================================================
   PHOTO BREAK
   ============================================================ */
.photo-break {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  max-height: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  max-height: none !important;
}

.photo-break-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,15,8,0.72) 0%,
    rgba(10,15,8,0.3) 60%,
    transparent 100%
  );
}

.photo-break-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: clamp(20px, 8vw, 120px);
  margin-right: auto;
  padding: clamp(48px, 8vh, 80px) clamp(20px, 5vw, 56px);
}

.photo-break-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.photo-break-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
}

@media (max-width: 640px) {
  .photo-break { min-height: 360px; }
  .photo-break-overlay {
    background: rgba(10,15,8,0.6);
  }
  .photo-break-text { margin-left: 0; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.reviews-header {
  margin-bottom: 56px;
}

.reviews-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
  margin-bottom: 20px;
}

.review-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border-neutral);
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}

.review-meta {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY (index.html simple grid)
   ============================================================ */
.gallery {
  padding-block: var(--section-py);
  background: var(--canvas);
}

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

.gallery-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.gallery-header a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
  padding-top: 8px;
}
.gallery-header a:hover { text-decoration: underline; text-decoration-thickness: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-tile {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4/3;
  text-decoration: none;
}

.gallery-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease-out;
  filter: grayscale(10%);
}

.gallery-tile:hover > img { transform: scale(1.04); }

.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-tile-tall > img { height: 100%; }

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0);
  transition: background 300ms;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-tile:hover .gallery-tile-overlay { background: rgba(26,24,20,0.35); }

.gallery-tile-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 300ms;
  font-family: var(--font-body);
}
.gallery-tile:hover .gallery-tile-overlay span { opacity: 1; }

.gallery-cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-header { flex-direction: column; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--section-py);
  background: var(--surface);
}

.faq-header {
  margin-bottom: 56px;
}

.faq-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 72ch;
}

.faq-list details {
  border-bottom: 1px solid var(--border-neutral);
}

.faq-list details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
}

.faq-list details summary::-webkit-details-marker { display: none; }

.faq-q {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  font-family: var(--font-body);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.faq-list details[open] .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 64ch;
}

.faq-list details summary svg { width: 20px; height: 20px; }

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
.contact {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form-wrap h2,
.contact-form-col h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.contact-info h3,
.contact-info-col h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(40,80,20,0.1);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-submit,
.form-note { margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.5; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(40,80,20,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--primary); }

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-detail-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.contact-detail-val a { color: var(--ink); }
.contact-detail-val a:hover { color: var(--primary); text-decoration: underline; }

.contact-info .trust-badge { margin-top: 24px; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT INFO COL (contact.html)
   ============================================================ */
.contact-form-col,
.contact-info-col {
  padding-block: var(--section-py);
}

.contact-lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 52ch;
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}

.info-rows { display: flex; flex-direction: column; gap: 0; }

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-neutral);
}
.info-row:last-of-type { border-bottom: none; }

.info-row-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row-icon svg { width: 20px; height: 20px; color: var(--primary); }

.info-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.info-row-value { font-size: 15px; color: var(--ink); }

.info-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 24px;
  transition: filter 150ms;
}
.info-card-cta svg { width: 18px; height: 18px; }
.info-card-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,15,8,0.82) 0%,
    rgba(10,15,8,0.3) 100%
  );
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vh, 64px);
  padding-top: 80px;
  width: 100%;
}

.page-header-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
}

.page-header-eyebrow,
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.page-header-eyebrow::before, .page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.page-header-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  line-height: 1.55;
  max-width: 60ch;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-intro {
  padding: clamp(56px, 8vh, 96px) 0 0;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(48px, 6vh, 80px);
  padding-bottom: clamp(48px, 6vh, 80px);
  border-bottom: 1px solid var(--border-neutral);
}

.services-intro-grid > .fade-up h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.services-intro-body {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  padding-top: 8px;
}

.services-detail {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-block: clamp(56px, 8vh, 96px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-block: clamp(48px, 7vh, 80px);
  border-bottom: 1px solid var(--border-neutral);
}
.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-block-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(8%);
}

.service-block-index {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
}

.service-block-content { padding-top: 8px; }

.service-block-content h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-block-accent {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 24px;
}

.service-block-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-bullets {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .services-intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SEASONAL BREAK
   ============================================================ */
.seasonal-break {
  background: var(--ink);
  padding: clamp(64px, 8vh, 100px) 0;
}

.seasonal-break-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.seasonal-break-inner h3 {
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.seasonal-break-inner .section-eyebrow {
  color: rgba(255,255,255,0.55);
}
.seasonal-break-inner .section-eyebrow::before { background: var(--primary); }

.seasonal-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 14px;
}
.seasonal-body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .seasonal-break-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding-block: clamp(80px, 10vh, 120px);
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.cta-banner-left h2,
.cta-banner-content h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.cta-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
}

.cta-banner-note,
.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 28px;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.cta-banner-phone a { color: #fff; }
.cta-banner-phone a:hover { color: rgba(255,255,255,0.85); text-decoration: underline; }

.cta-banner-left a:not(.btn):not([class]) {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.cta-form {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.cta-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.cta-form .form-field input,
.cta-form .form-field textarea,
.cta-form .form-field select {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.cta-form .form-field input::placeholder,
.cta-form .form-field textarea::placeholder { color: rgba(255,255,255,0.55); }
.cta-form .form-field input:focus,
.cta-form .form-field textarea:focus,
.cta-form .form-field select:focus {
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.cta-form .form-field label { color: rgba(255,255,255,0.72); }
.cta-form .form-field select option { background: var(--primary-dark); color: #fff; }

.cta-form button[type="submit"],
.cta-form .btn-submit {
  background: #fff;
  color: var(--primary);
  border: none;
}
.cta-form button[type="submit"]:hover { filter: brightness(0.95); }

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-pair {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-content,
  .cta-banner-actions { text-align: center; justify-content: center; }
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section {
  padding-block: var(--section-py);
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.gallery-section .gallery-header {
  margin-bottom: 36px;
}

.gallery-section .gallery-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.gallery-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
  margin-top: 16px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-neutral);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 150ms, border-color 150ms, color 150ms;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Project Cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  text-decoration: none;
}

.project-card-featured {
  grid-column: span 2;
}

.project-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.project-card-featured .project-card-image { aspect-ratio: 16/7; }

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease-out;
  filter: grayscale(8%);
}
.project-card:hover .project-card-image img { transform: scale(1.04); }

.project-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
}

.project-card-body {
  padding: 20px;
}

.project-card-body h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.project-card-location svg { width: 14px; height: 14px; }

.project-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.project-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-stat { display: flex; flex-direction: column; gap: 2px; }
.meta-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}
.meta-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .project-card-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .project-card-featured { grid-column: span 1; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-portrait-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(15%);
}

.about-portrait-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  font-family: var(--font-body);
}

.about-copy-col h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-hairline {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 32px;
}

.about-body p {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-pull-quote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 32px 0;
}
.about-pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  margin-bottom: 40px;
}

.about-services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-neutral);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.svc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  min-width: 28px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
}

.value-card h4 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.value-card-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Areas */
.areas-section {
  padding-block: clamp(64px, 8vh, 96px);
  background: var(--surface);
}

.areas-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .about-portrait-wrap { max-width: 320px; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  padding-block: clamp(64px, 8vh, 96px) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 48px !important; max-width: 200px !important; }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 36ch;
}

.footer-phone { margin-top: 8px; }
.footer-phone a {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
  font-family: var(--font-body);
}
.footer-phone a:hover { color: #fff; text-decoration: underline; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col h4, .footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a,
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 150ms;
  font-family: var(--font-body);
}
.footer-links li a:hover,
.footer-col ul li a:hover { color: #fff; text-decoration: none; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-line:hover { color: #fff; text-decoration: none; }

.footer-logo img { max-height: 40px !important; }
.footer-brand-logo img { max-height: 40px !important; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy,
.footer-legal,
.footer-bottom span,
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-body);
}

.footer-license {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.sticky-call,
.mobile-call-pill,
.mobile-call,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform 200ms, filter 150ms;
}

.sticky-call:hover,
.mobile-call-pill:hover,
.mobile-call:hover,
.mobile-sticky-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.sticky-call svg,
.mobile-call-pill svg,
.mobile-call svg,
.mobile-sticky-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Mobile only */
@media (min-width: 900px) {
  .sticky-call,
  .mobile-call-pill,
  .mobile-call,
  .mobile-sticky-cta { display: none; }
}

/* The inner <a> inside .sticky-call / .mobile-call */
.sticky-call > a,
.mobile-call > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.sticky-call > a svg,
.mobile-call > a svg { width: 20px; height: 20px; }

/* ============================================================
   MISC SECTION WRAPPERS
   ============================================================ */
.section-title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

/* Contact form in contact.html stand-alone */
section#contact.contact .contact-inner {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-form-col {
  padding-block: 0;
}

.contact-info-col {
  padding-block: 0;
  padding-top: clamp(48px, 7vh, 80px);
}

@media (max-width: 900px) {
  section#contact.contact .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   STAT / META
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font-display);
}

.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--font-body);
}

/* ============================================================
   SECTION WRAPPERS THAT NEED PADDING
   ============================================================ */
#services.services .services-inner,
#reviews.reviews .reviews-inner,
#gallery.gallery .gallery-inner,
#faq.faq .faq-inner,
#contact.contact .contact-inner {
  padding-block: var(--section-py);
}

/* Remove double padding where section already has padding-block */
.services .services-inner,
.reviews .reviews-inner,
.gallery .gallery-inner,
.faq .faq-inner {
  padding-block: 0;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-content { grid-column: 1 / -1; }
.seasonal-body { grid-column: 1 / -1; }
.about-portrait-col { grid-column: 1 / -1; }
.about-copy-col { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
