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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #EEC36C;
  --primary-dark:   #C9993A;
  --primary-soft:   #F5DCA8;
  --accent:         #2C6C34;
  --canvas:         #FAF6EE;
  --canvas-dark:    #F0EAD8;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3D3830;
  --muted:          #6B6660;
  --muted-light:    #9C9590;
  --border:         rgba(26,24,20,0.10);
  --border-strong:  rgba(26,24,20,0.18);
  --radius:         8px;
  --header-height:  72px;
}

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

/* ============================================================
   RESET & GLOBAL
   ============================================================ */
*, *::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;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* 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: 44px !important;
  max-width: 200px !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 30%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon):not(.hero-hairline) {
  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 30%; 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; }

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

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

/* Mono utility */
.mono { font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace; font-size: 0.88em; letter-spacing: 0.04em; }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container        { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.wide-container   { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.section-inner    { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }

/* Section rhythm */
section, .services, .gallery, .credentials, .service-areas, .faq, .contact, .trust-strip, .about-story, .values-cards, .journey-timeline, .gallery-section {
  padding-block: clamp(80px, 10vh, 140px);
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scrollProgress, #scroll-progress, #scrollBar, #scroll-bar, .scroll-progress, .scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--primary);
  z-index: 1000;
  transition: width 50ms linear;
}

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

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

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px !important; }

.nav-pages {
  flex: 1;
  display: flex; justify-content: center;
  list-style: none; padding: 0; margin: 0;
  gap: 28px; align-items: center;
}

.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  white-space: nowrap;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--ink); color: var(--canvas);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--ink-mid); color: var(--canvas); text-decoration: none; }
.nav-cta span { display: inline; }

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

@media (max-width: 900px) {
  .nav-pages {
    display: none; flex-direction: column; justify-content: flex-start;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 24px;
    gap: 8px; border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   EYEBROW SYSTEM (section-eyebrow bullet pattern)
   ============================================================ */
.eyebrow, .section-eyebrow, .page-eyebrow, .page-header-eyebrow,
.feature-block-eyebrow, .cta-eyebrow, .info-card-eyebrow,
.sponsor-eyebrow, .footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}

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

.eyebrow-bullet {
  display: inline-block; width: 8px; height: 8px;
  background: var(--primary); border-radius: 1px; margin-right: 8px;
  flex-shrink: 0;
}

/* ============================================================
   TYPOGRAPHY — DISPLAY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--ink);
}
h1 { font-size: clamp(40px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p { max-width: 72ch; }

.section-title, .section-inner > h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.025em; margin-bottom: 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none; transition: all 180ms ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary); color: var(--ink);
  border: 2px solid var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--ink); text-decoration: none; }

.btn-outline {
  background: transparent; color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink); text-decoration: none; }

.btn-ghost-white {
  background: transparent; color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.85); text-decoration: none; }

.btn-accent {
  background: var(--accent); color: #fff;
  border: 2px solid var(--accent);
}
.btn-accent:hover { background: #235628; border-color: #235628; text-decoration: none; color: #fff; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: var(--radius);
  background: var(--primary); color: var(--ink);
  text-decoration: none; transition: all 180ms;
}
.btn-service:hover { background: var(--primary-dark); text-decoration: none; color: var(--ink); }

.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 32px; border-radius: var(--radius);
  background: var(--primary); color: var(--ink);
  border: none; cursor: pointer; transition: all 180ms;
  width: 100%; justify-content: center;
}
.btn-submit:hover { background: var(--primary-dark); }
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(26,24,20,0.82) 0%,
    rgba(26,24,20,0.60) 40%,
    rgba(26,24,20,0.22) 75%,
    transparent 100%
  );
}

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

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin-inline: auto;
  padding: clamp(96px, 14vh, 160px) clamp(20px, 5vw, 64px) clamp(80px, 10vh, 120px);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  min-height: 92vh;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary-soft);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  background: var(--primary); border-radius: 1px;
}

.hero-hairline {
  width: 64px; height: 2px;
  background: var(--primary);
  margin-bottom: 24px;
}

.hero-inner h1, .hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 700; line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400; line-height: 1.55;
  color: rgba(250,246,238,0.80);
  max-width: 48ch; margin-bottom: 36px;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}
.hero-ctas .btn svg { width: 18px; height: 18px; color: inherit; }

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

.trust-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(250,246,238,0.85);
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-chip svg { width: 12px; height: 12px; }

@media (max-width: 640px) {
  .hero-inner { min-height: 88vh; }
  .hero-inner h1, .hero-title { max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding-block: clamp(24px, 4vh, 48px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex; flex-wrap: wrap; gap: 12px 16px;
  align-items: center;
}

.trust-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 7px 16px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--primary); }
.trust-badge strong { color: var(--primary); }

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

.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2; color: var(--ink-mid);
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-item span { color: var(--primary); }

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

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--canvas); }

.services .section-inner > .eyebrow,
.services .section-inner > .section-eyebrow { margin-bottom: 12px; }

.services .section-inner > h2 { margin-bottom: 8px; }

.section-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted); line-height: 1.6;
  margin-bottom: clamp(32px, 5vh, 56px);
  max-width: 60ch;
}

/* Tab strip */
.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 180ms;
  white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--ink); }
.service-tab.active {
  background: var(--ink); color: var(--canvas);
  border-color: var(--ink);
}

/* Panels */
.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0; border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  min-height: 480px;
  box-shadow: 0 2px 32px rgba(26,24,20,0.07);
}
.service-panel.active { display: grid; }

.service-panel-img {
  position: relative; overflow: hidden;
  background: var(--canvas-dark);
}
.service-panel-img img {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  max-height: none !important;
  object-fit: cover;
}

.service-panel-body {
  padding: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column;
  justify-content: center; gap: 16px;
}

.service-panel-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.02em; margin-bottom: 4px;
}

.service-panel-body p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-mid); max-width: 52ch;
}

.service-panel-body a {
  align-self: flex-start; margin-top: 8px;
}

.services .section-inner > div:last-child {
  margin-top: 32px; display: flex;
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 260px; position: relative; }
}

/* ============================================================
   PHOTO BREAK (full-bleed between services and gallery)
   ============================================================ */
.photo-break {
  position: relative; overflow: hidden;
  height: clamp(300px, 45vh, 520px);
}
.photo-break > img:first-of-type {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 40%;
  z-index: 0;
}
.photo-break-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,24,20,0.62) 0%, rgba(26,24,20,0.15) 60%, transparent 100%);
}
.photo-break-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end;
  max-width: 1280px; margin-inline: auto;
  padding: clamp(32px, 5vw, 64px);
  width: 100%;
}
.photo-break-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas); max-width: 32ch;
  font-style: italic;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery, .gallery-section { background: var(--canvas-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.gallery-tile {
  display: block; position: relative;
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius);
  background: var(--canvas-dark);
}
.gallery-tile img {
  width: 100% !important; height: 100% !important;
  max-height: none !important;
  object-fit: cover;
  transition: transform 400ms ease;
  filter: grayscale(10%);
}
.gallery-tile:hover img { transform: scale(1.04); filter: grayscale(0%); }

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.35) 0%, transparent 50%);
  opacity: 0; transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.gallery-cta-row {
  margin-top: 32px; display: flex; justify-content: center;
}

/* Gallery page cards */
.gallery-card {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(26,24,20,0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,24,20,0.12); }

.gallery-card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card-photo img {
  width: 100% !important; height: 100% !important;
  max-height: none !important;
  object-fit: cover;
  transition: transform 400ms;
}
.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); }

.gallery-card-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  background: var(--primary); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
}

.gallery-card-body {
  padding: 20px 24px;
}
.gallery-card-body h3 { font-size: 18px; margin-bottom: 8px; }

.gallery-card-location {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 5px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

/* Gallery page header */
.gallery-section-header { margin-bottom: 40px; }

/* Gallery filters */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 180ms;
}
.filter-pill:hover,
.filter-pill.active { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

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

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials { background: var(--surface); }

.credentials-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.credentials-inner > h2,
.credentials-headline { margin-bottom: 40px; }

.credentials-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.cred-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.cred-card-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 10px;
}

.cred-card-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: var(--ink);
  line-height: 1.1;
}

/* About page credential badges */
.credentials-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cred-badge {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.cred-badge-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 8px;
}
.cred-badge-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--primary); line-height: 1.1;
  margin-bottom: 6px;
}
.cred-badge-sub {
  font-size: 12px; color: var(--muted);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas { background: var(--canvas); }

.service-areas-inner, .section-inner.service-areas-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.service-areas-headline { margin-bottom: 32px; }

.areas-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}

.area-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--ink);
  transition: all 180ms; text-decoration: none; display: inline-block;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.area-pill.primary-area { border-color: var(--primary); background: var(--primary); color: var(--ink); }

.area-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--canvas); color: var(--ink-mid);
  display: inline-block;
}

.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-pills a { display: inline-block; }
.area-pills a:hover { text-decoration: none; }
.area-pills a .area-pill:hover { border-color: var(--primary); color: var(--primary); }

/* Service area chips contact */
.service-area-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

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

.faq-list { margin-top: 40px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary {
  cursor: pointer; font-weight: 600;
  font-size: clamp(16px, 1.6vw, 18px);
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0; color: var(--muted);
  transition: transform 220ms, color 220ms;
}
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  padding-bottom: 22px; line-height: 1.7;
  color: var(--ink-mid); font-size: 16px;
}

/* Native details/summary for .faq class names from spec */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary {
  cursor: pointer; font-weight: 600;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+"; font-weight: 300;
  transition: transform 200ms;
  color: var(--muted); font-size: 22px;
}
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--canvas-dark); }

.contact-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}

.contact-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px; align-items: start;
  margin-top: 40px;
}

.contact-form-col { }
.contact-info-block { }

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

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

.form-group label, .form-field label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted);
}

.form-group input, .form-group select, .form-group textarea,
.form-field input, .form-field textarea,
.contact-form input, .contact-form select, .contact-form textarea,
.cta-form input, .cta-form select, .cta-form textarea,
.cta-form-row input {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 450;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
  transition: border-color 150ms;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.form-field input:focus, .form-field textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--primary);
}
.form-group textarea, .form-field textarea { min-height: 120px; resize: vertical; }

/* Checkbox groups */
.form-check-group { margin-bottom: 16px; }
.form-check-group > label {
  display: block; margin-bottom: 8px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted);
}
.check-options { display: flex; flex-wrap: wrap; gap: 8px; }
.check-option {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; cursor: pointer;
  padding: 6px 12px; border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface); transition: all 150ms;
}
.check-option:hover { border-color: var(--primary); }
.check-option input { accent-color: var(--primary); }

/* Contact info side */
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-icon svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.contact-info-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--ink); }
.contact-mission { font-size: 16px; line-height: 1.65; color: var(--muted); margin-bottom: 24px; }

/* Contact page card */
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
}
.contact-info-card h3 { font-size: 22px; margin-bottom: 8px; }
.info-card-eyebrow { margin-bottom: 20px; }

.info-items { margin-top: 16px; }
.info-item {
  display: flex; gap: 12px;
  padding: 14px 0;
  align-items: flex-start;
}
.info-item-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); flex: 0 0 90px; padding-top: 2px;
}
.info-item-value { font-size: 14px; color: var(--ink); line-height: 1.5; }
hr.info-divider { border: none; border-top: 1px solid var(--border); }

/* License badge in contact */
.license-badge { font-size: 14px; font-weight: 600; color: var(--ink); }
.license-badge-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 4px; }
.license-badge-num { font-family: 'SFMono-Regular', monospace; font-size: 14px; color: var(--ink); }
.guarantees-list { padding-left: 16px; }
.guarantees-list li { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

/* Contact page full */
.contact-form-side {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
}

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

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

.cta-banner-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.cta-banner-left h2 {
  color: var(--canvas);
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 24px;
}
.cta-banner-left p { color: rgba(250,246,238,0.70); margin-bottom: 24px; }
.cta-banner-sub { color: rgba(250,246,238,0.70); }
.cta-eyebrow { color: var(--primary-soft) !important; }
.cta-eyebrow::before { background: var(--primary) !important; }
.cta-banner-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-banner-phone { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 48px); color: var(--canvas); font-weight: 700; }
.cta-banner-phone-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-light); margin-bottom: 8px; }
.cta-banner-divider { height: 1px; background: rgba(250,246,238,0.15); margin: 20px 0; }

.cta-form-col { }
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input, .cta-form select, .cta-form textarea { background: rgba(250,246,238,0.08); border-color: rgba(250,246,238,0.20); color: var(--canvas); }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(250,246,238,0.40); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: var(--primary); }
.cta-form-submit {
  background: var(--primary); color: var(--ink);
  border: none; padding: 15px 28px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 180ms;
  width: 100%;
}
.cta-form-submit:hover { background: var(--primary-dark); }

.cta-phone-link { color: var(--primary); font-weight: 600; text-decoration: none; }
.cta-phone-link:hover { text-decoration: underline; }

.cta-banner-form { }
.cta-banner-right { display: flex; flex-direction: column; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
}

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

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.80) 0%,
    rgba(26,24,20,0.40) 60%,
    rgba(26,24,20,0.20) 100%
  );
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin-inline: auto;
  padding: clamp(64px, 10vh, 120px) clamp(20px, 5vw, 64px) clamp(40px, 6vh, 72px);
  width: 100%;
}

.page-header-eyebrow, .page-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary-soft);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.page-header-eyebrow::before, .page-eyebrow::before {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  background: var(--primary); border-radius: 1px;
}

.page-header-inner h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700; line-height: 0.98;
  letter-spacing: -0.025em; color: var(--canvas);
  max-width: 18ch;
}

.page-header-sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(250,246,238,0.70);
  margin-top: 16px; max-width: 52ch;
}

.page-header-accent-line {
  width: 56px; height: 2px;
  background: var(--primary); margin-bottom: 20px;
}

.page-header-hairline {
  width: 56px; height: 2px;
  background: var(--primary); margin-bottom: 20px;
}

/* ============================================================
   SERVICES FEATURE BLOCKS (services.html)
   ============================================================ */
.services-intro {
  max-width: 1280px; margin-inline: auto;
  padding: clamp(64px, 8vh, 100px) clamp(20px, 5vw, 64px) 40px;
}

.services-intro-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.025em; margin-bottom: 16px;
}

.services-intro-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65;
  max-width: 60ch; margin-bottom: 20px;
}

.services-intro-hairline {
  width: 56px; height: 2px;
  background: var(--primary);
}

.feature-blocks {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex; flex-direction: column;
  gap: clamp(64px, 8vh, 100px);
  padding-bottom: clamp(64px, 8vh, 100px);
}

.feature-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.feature-block.reverse { }
.feature-block.reverse .feature-block-photo { order: 2; }
.feature-block.reverse .feature-block-body { order: 1; }

.feature-block-photo {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  background: var(--canvas-dark);
}
.feature-block-photo img {
  width: 100% !important; height: 100% !important;
  max-height: none !important;
  object-fit: cover;
}
.feature-block-index {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--primary); color: var(--ink);
  padding: 5px 12px; border-radius: 999px;
}

.feature-block-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 12px;
}
.feature-block-eyebrow::before { display: none; }

.feature-block-body h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.feature-block-body p { font-size: 16px; line-height: 1.70; color: var(--ink-mid); margin-bottom: 12px; }

.feature-bullets {
  list-style: none; padding: 0; margin: 16px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-bullets li {
  font-size: 15px; color: var(--ink-mid);
  padding-left: 20px; position: relative;
}
.feature-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 1px;
  background: var(--primary);
}

.feature-block-body a { margin-top: 16px; display: inline-flex; }

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse .feature-block-photo { order: -1; }
  .feature-block.reverse .feature-block-body { order: 1; }
}

/* Additional services grid */
.additional-services {
  background: var(--canvas-dark);
  padding-block: clamp(64px, 8vh, 100px);
}

.additional-services-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.additional-services-heading { margin-bottom: 8px; }
.additional-services-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; }

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

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

.additional-card-photo {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--canvas-dark);
}
.additional-card-photo img {
  width: 100% !important; height: 100% !important;
  max-height: none !important;
  object-fit: cover; transition: transform 400ms;
}
.additional-card:hover .additional-card-photo img { transform: scale(1.04); }

.additional-card-body { padding: 20px 24px; }
.additional-card-title { font-size: 18px; margin-bottom: 6px; }
.additional-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

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

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story { background: var(--canvas); }

.about-story-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px; align-items: start;
}

.about-story-portrait-col {
  position: relative;
}
.about-story-portrait-col img {
  width: 100% !important;
  height: auto !important;
  max-height: 500px !important;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(15%);
}

.portrait-caption {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted); margin-top: 12px;
}

.about-story-text-col > h2 {
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 24px;
}
.about-story-text-col .eyebrow { margin-bottom: 16px; }
.about-story-text-col p { font-size: 17px; line-height: 1.70; color: var(--ink-mid); margin-bottom: 20px; }

.about-story-pull {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; font-style: italic;
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); border-left: 3px solid var(--primary);
  padding-left: 24px; margin: 24px 0;
}

hr.about-hairline {
  border: none; border-top: 1px solid var(--primary);
  width: 80px; margin-top: 32px;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   VALUES CARDS
   ============================================================ */
.values-cards { background: var(--surface); }

.values-cards-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.values-section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
  margin-bottom: 48px;
}
.values-headline { font-size: clamp(32px, 5vw, 56px); }
.values-intro { font-size: 16px; line-height: 1.70; color: var(--muted); padding-top: 24px; }

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

.value-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.value-card-num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 700;
  color: var(--primary); line-height: 1.0;
  margin-bottom: 12px;
}
.value-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink); margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .values-section-head { grid-template-columns: 1fr; gap: 16px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey-timeline { background: var(--canvas-dark); }

.journey-timeline-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.journey-head { margin-bottom: 48px; }
.journey-headline { font-size: clamp(32px, 5vw, 60px); }

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--border-strong);
  position: relative;
}

.timeline-step {
  padding: 32px 24px 32px 0;
  position: relative;
}

.timeline-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary);
  position: absolute; top: -7px; left: 0;
  border: 2px solid var(--canvas-dark);
}

.timeline-step-marker {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 12px;
  margin-top: 16px;
}

.timeline-step h3 { font-size: clamp(18px, 2vw, 22px); margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .timeline-track { grid-template-columns: 1fr; border-top: none; }
  .timeline-step { border-left: 2px solid var(--border-strong); padding-left: 20px; padding-top: 0; margin-bottom: 24px; }
  .timeline-dot { left: -7px; top: 0; }
}

/* ============================================================
   MISSION / SPONSOR BLOCKS
   ============================================================ */
.mission-block {
  background: var(--ink);
  padding-block: clamp(64px, 8vh, 100px);
}

.mission-block-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  text-align: center;
}

.mission-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700; font-style: italic;
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--canvas); max-width: 28ch;
  margin-inline: auto; margin-bottom: 24px;
}

.mission-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted-light);
}

.sponsor-block {
  background: var(--canvas-dark);
  padding-block: clamp(64px, 8vh, 100px);
}

.sponsor-block-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; align-items: start;
}

.sponsor-accent {
  width: 80px; height: 3px; background: var(--primary);
  margin-top: 8px;
}

.sponsor-text-col h3 { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 16px; }
.sponsor-eyebrow { margin-bottom: 16px; }
.sponsor-body { font-size: 17px; line-height: 1.70; color: var(--muted); max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding-block: clamp(64px, 8vh, 100px) 40px;
}

.footer-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { opacity: 0.90; }
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  color: var(--canvas);
}
.footer-tagline { font-size: 13px; color: var(--muted-light); line-height: 1.55; }
.footer-mission { font-size: 13px; color: var(--muted-light); line-height: 1.55; }
.footer-license, .footer-license-tag, .footer-bottom-license {
  font-size: 11px; color: rgba(250,246,238,0.40);
  letter-spacing: 0.04em;
}
.footer-license-tag { margin-top: auto; }

.footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(250,246,238,0.45);
  margin-bottom: 16px;
}
.footer-col-title::before { display: none !important; }

.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(250,246,238,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-line { font-size: 14px; color: rgba(250,246,238,0.65); margin-bottom: 6px; }
.footer-contact-link { color: rgba(250,246,238,0.65); }
.footer-contact-link:hover { color: var(--primary); }

.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(250,246,238,0.65);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-item a { color: rgba(250,246,238,0.65); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-areas { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-areas li { font-size: 13px; color: rgba(250,246,238,0.55); }

hr.footer-divider { border: none; border-top: 1px solid rgba(250,246,238,0.10); margin-bottom: 28px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px; border-top: 1px solid rgba(250,246,238,0.08);
}
.footer-copy { font-size: 12px; color: rgba(250,246,238,0.35); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(250,246,238,0.40);
  border: 1px solid rgba(250,246,238,0.15);
  padding: 4px 12px; border-radius: 999px;
}

.footer-logo { display: inline-flex; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-cta-pill,
.mobile-phone-pill,
.mobile-sticky-cta,
.mobile-cta > a {
  position: fixed; bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary); color: var(--ink);
  padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: transform 200ms, box-shadow 200ms;
}
.mobile-cta-pill:hover,
.mobile-phone-pill:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(0,0,0,0.50);
  color: var(--ink); text-decoration: none;
}
.mobile-cta-pill svg,
.mobile-phone-pill svg,
.mobile-sticky-cta svg,
.mobile-cta > a svg { width: 20px; height: 20px; }

.mobile-cta { position: fixed; bottom: 18px; right: 18px; z-index: 999; }

@media (min-width: 900px) {
  .mobile-cta-pill,
  .mobile-phone-pill,
  .mobile-sticky-cta,
  .mobile-cta { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 600ms ease, transform 600ms 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; }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  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);
}

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.header-hairline { width: 56px; height: 2px; background: var(--primary); margin-bottom: 20px; }

/* Scroll progress bars on sub-pages */
#scroll-bar, #scrollBar { background: var(--primary); }

/* Info divider */
.info-divider { border: none; border-top: 1px solid var(--border); }

/* Contact form success */
.form-success {
  background: var(--accent); color: #fff;
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  margin-top: 16px; display: none;
}
.form-success.visible { display: block; }

/* Guarantees */
.guarantees-list { list-style: disc; padding-left: 18px; }
.guarantees-list li { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 4px; }

/* ============================================================
   RESPONSIVE MISC
   ============================================================ */
@media (max-width: 640px) {
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 11px; padding: 7px 12px; }
  .photo-break { height: 220px; }
  .sponsor-block-inner { grid-template-columns: 1fr; }
  .sponsor-accent { display: none; }
  .cta-form-row { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.about-story-text-col { grid-column: 1 / -1; }
.sponsor-accent { grid-column: 1 / -1; }
.sponsor-text-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; }
