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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand */
  --primary:        #FCBC04;
  --primary-tint12: rgba(252,188,4,0.12);
  --primary-tint8:  rgba(252,188,4,0.08);
  --primary-tint24: rgba(252,188,4,0.24);
  --primary-dark:   #d9a000;
  --accent:         #0A5F28;
  --accent-light:   #0d7a33;

  /* Neutrals */
  --canvas:         #F4EFE6;
  --canvas-dark:    #EDE6D8;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3D3830;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);

  /* Layout */
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 152px);
  --content-max:    1240px;
  --wide-max:       1400px;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
}

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

/* ============================================================
   GLOBAL RESETS & 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-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  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: 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) {
  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; }

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

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

ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, .hero-title { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 0.98; letter-spacing: -0.02em; }
h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(36px, 5vw, 72px); line-height: 1.04; letter-spacing: -0.02em; }
h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(22px, 3vw, 32px); line-height: 1.1; letter-spacing: -0.01em; }
h4 { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

p { line-height: 1.68; }

.eyebrow, .section-eyebrow, .page-header-eyebrow, .cta-eyebrow,
.cta-banner-eyebrow, .service-eyebrow, .service-label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

/* Primary eyebrow underline accent */
.section-eyebrow {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin-bottom: 20px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--wide-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner { max-width: var(--content-max); margin: 0 auto; padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 48px); }
.bleed { width: 100%; }
.surface { background: var(--surface); }

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

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

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

.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; align-items: center; gap: 28px;
}
.nav-pages ul { display: flex; gap: 28px; align-items: center; }
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--accent); border-bottom: 2px solid var(--accent); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }
.nav-cta-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta svg { width: 16px; height: 16px; }

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

@media (max-width: 899px) {
  .nav-pages {
    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(31,27,22,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; gap: 8px; width: 100%; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
  .nav-toggle { display: flex; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   MOUNTED PRINT — THE SIGNATURE MOVE
   ============================================================ */
.mounted-print,
.photo-frame,
.photo-mount {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Inner sand border — the boutique frame effect */
.mounted-print::after,
.photo-frame::after,
.photo-mount::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 12px solid var(--canvas);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 3;
}

.mounted-print img,
.photo-frame img,
.photo-mount img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

/* On white sections, use a slightly warmer frame */
.surface .mounted-print::after,
.surface .photo-frame::after,
.surface .photo-mount::after {
  border-color: var(--surface);
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  background: var(--canvas);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px) clamp(48px, 8vh, 80px);
  gap: 64px;
}

@media (min-width: 900px) {
  #hero.hero {
    grid-template-columns: 1fr 340px;
    align-items: start;
    gap: 48px;
  }
}

.hero-supergraphic {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(135deg, var(--primary-tint8) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-line-1 { display: block; }
.hero-line-2 { display: block; position: relative; }

.hero-wash {
  display: inline;
  background: var(--primary-tint24);
  border-radius: 6px;
  padding: 0 6px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Hero stat panel */
.hero-stat-panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .hero-stat-panel {
    margin-top: clamp(80px, 12vh, 140px);
  }
}

.hero-stat-row {
  padding: 16px 0;
}

.hero-stat-row:first-child { padding-top: 0; }

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.hero-stat-num span { color: var(--primary-dark); }

.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

.hero-stat-divider {
  height: 1px;
  background: var(--border);
}

.hero-contact-line {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.hero-contact-line a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.hero-contact-line a:hover { text-decoration: underline; }

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

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary, .btn-submit {
  background: var(--primary); color: var(--ink);
  box-shadow: 0 4px 16px rgba(252,188,4,0.30);
}
.btn-primary:hover, .btn-submit:hover {
  filter: brightness(0.94); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(252,188,4,0.35);
  color: var(--ink); text-decoration: none;
}

.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(10,95,40,0.25);
}
.btn-accent:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  color: #fff; text-decoration: none;
}

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

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

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

.btn-banner {
  background: var(--primary); color: var(--ink); border-radius: var(--radius-sm);
  padding: 16px 30px; font-weight: 600;
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 20px 40px; font-size: 17px; }

/* ============================================================
   CHIPS & PILLS
   ============================================================ */
.trust-chip, .trust-pill, .area-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-tint12);
  color: var(--ink-mid);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: none;
  line-height: 1.3;
}

.trust-chip svg, .trust-pill svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary-dark); }
.trust-chip-star { color: var(--primary-dark); }

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

.trust-strip-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  justify-content: center;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  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);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}

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

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

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--muted);
}

.marquee-item-accent { color: var(--primary-dark); }

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

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services {
  background: var(--canvas);
  padding: 0;
}

.services .section-inner {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.services .section-eyebrow { display: inline-block; }

.services h2 { margin-bottom: 40px; }

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

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--ink-mid);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}

.service-tab:hover {
  background: var(--primary-tint12);
  border-color: var(--primary);
  color: var(--ink);
}

.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

.services-panels {
  position: relative;
  min-height: 460px;
}

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 48px;
  align-items: stretch;
}

.service-panel.active { display: grid; }

@media (max-width: 767px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-photo { min-height: 260px; }
}

.service-panel-photo {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.service-panel-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

/* Mounted print effect on service panel photo */
.service-panel-photo.photo-frame::after {
  border-color: var(--canvas);
}

.service-panel-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}

.service-panel-body h3 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 4px;
}

.service-panel-body p { color: var(--ink-mid); line-height: 1.7; }

.service-panel-body .service-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  margin-bottom: 0;
}

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

.services-footer {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

.services-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--accent); text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 200ms;
}

.services-all-link svg { width: 18px; height: 18px; }
.services-all-link:hover { gap: 12px; color: var(--accent); text-decoration: none; }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: 0;
}

.gallery-preview .section-inner {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

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

/* First tile spans 2 rows for editorial bento feel */
.gallery-tile { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease-out; }
.gallery-tile:hover img { transform: scale(1.03); }
.gallery-tile:hover { text-decoration: none; }

.gallery-tile.photo-frame::after { border-color: var(--surface); }

/* Tall first tile */
.gallery-tile-tall { grid-row: span 2; }
.gallery-tile { aspect-ratio: 4/3; }
.gallery-tile-tall { aspect-ratio: auto; }

.gallery-preview-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { padding: var(--section-py) clamp(20px, 4vw, 48px); max-width: var(--content-max); margin: 0 auto; }

.gallery-header { margin-bottom: 40px; }
.gallery-header h2 { margin-top: 16px; }
.section-eyebrow-line { display: inline-block; width: 40px; height: 2px; background: var(--primary); margin-right: 10px; vertical-align: middle; }
.gallery-desc { color: var(--muted); margin-top: 12px; max-width: 56ch; }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}

.filter-pill {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 180ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); border-color: var(--primary); color: var(--ink);
}

#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.15); }

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

.gallery-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.gallery-card-category {
  position: absolute; top: 12px; right: 12px;
  background: rgba(31,27,22,0.72); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.gallery-card-body { padding: 20px 22px 24px; }
.gallery-card-body h3 { font-size: 20px; margin-bottom: 8px; }
.gallery-card-location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.gallery-card-location svg { width: 14px; height: 14px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.gallery-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-meta-item { font-size: 12px; font-weight: 600; color: var(--ink-mid); background: var(--primary-tint8); padding: 4px 10px; border-radius: var(--radius-pill); }
.gallery-card-title { font-size: 18px; }

/* ============================================================
   TEAM CTA (between gallery & service areas)
   ============================================================ */
.team-cta {
  background: var(--accent);
  padding: clamp(48px, 7vh, 80px) 0;
}

.team-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.team-cta .section-eyebrow { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.3); }
.team-cta-line { font-family: 'DM Serif Display', serif; font-size: clamp(22px, 3.5vw, 36px); color: #fff; line-height: 1.2; margin-top: 8px; }

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

.service-areas .section-inner { text-align: center; }
.service-areas h2 { margin-bottom: 32px; }

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.areas-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface); }
.faq .section-inner { max-width: 760px; }
.faq h2 { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; }

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

details.faq-item:first-child { border-top: 1px solid var(--border); }

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

.faq-chevron {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-tint12);
  color: var(--primary-dark);
  transition: transform 220ms, background 180ms;
}
.faq-chevron svg { width: 16px; height: 16px; }

details.faq-item[open] summary.faq-question { color: var(--accent); }
details.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--primary); }

.faq-answer {
  padding: 0 0 22px;
  color: var(--ink-mid);
}
.faq-answer p { line-height: 1.7; }
.faq-answer a { color: var(--accent); font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(64px, 10vh, 100px) 0;
}

.cta-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner .cta-eyebrow, .cta-banner-eyebrow {
  color: var(--primary);
  border-color: var(--primary);
}

.cta-banner h2, .cta-banner-title { color: var(--canvas); margin-bottom: 8px; }
.cta-banner-sub, .cta-sub { color: rgba(244,239,230,0.65); font-size: 16px; }

.cta-banner-actions, .cta-banner-btns {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

.cta-hours, .cta-phone {
  font-size: 14px; color: rgba(244,239,230,0.55);
}

.cta-banner-phone { font-size: 17px; font-weight: 600; color: var(--primary); }

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

.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 899px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

.contact-form-col h2 { margin-bottom: 8px; }
.contact-form-col .section-eyebrow { margin-bottom: 24px; }
.form-intro { color: var(--muted); margin-bottom: 32px; font-size: 15px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 180ms, box-shadow 180ms;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252,188,4,0.15);
}

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

.form-submit { display: flex; flex-direction: column; gap: 10px; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--primary); color: var(--ink);
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 16px;
  border: none; cursor: pointer;
  transition: filter 180ms, transform 200ms;
}
.btn-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }
.form-disclaimer { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Contact info */
.contact-info-block { padding-top: 8px; }
.contact-info-block h3 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-mid); }
.contact-info-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary-dark); margin-top: 2px; }
.contact-info-list a { color: var(--accent); font-weight: 500; }

.contact-info-title { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 20px; }

.contact-hours { margin-top: 28px; }
.contact-hours h4 { margin-bottom: 8px; }
.hours-row { display: flex; gap: 12px; font-size: 14px; color: var(--ink-mid); margin-bottom: 4px; }
.day { font-weight: 600; min-width: 100px; }

.contact-socials { margin-top: 24px; }
.contact-socials h4 { margin-bottom: 12px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-mid); font-size: 14px; font-weight: 500; transition: color 150ms; margin-right: 12px; }
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { color: var(--accent); text-decoration: none; }

/* Contact page specific */
.contact-info-col {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.info-card-header {
  background: var(--accent);
  padding: 28px 28px 24px;
  color: #fff;
}
.info-card-header h3 { color: #fff; }
.info-card-header p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }

.info-card-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 0; }

.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
}

.info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--primary-tint12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
}
.info-icon svg { width: 18px; height: 18px; }

.info-item-content { display: flex; flex-direction: column; gap: 2px; }
.info-item-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted); }
.info-item-value { font-size: 15px; color: var(--ink); line-height: 1.5; }
.info-item-value a { color: var(--accent); }

.info-divider { height: 1px; background: var(--border); margin: 0; }

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

.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.social-row a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); }
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { text-decoration: none; opacity: 0.8; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 40vh;
  max-height: 56vh;
  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(31,27,22,0.72) 0%, rgba(31,27,22,0.30) 100%);
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 48px);
  width: 100%;
}

.page-header-inner h1 {
  font-size: clamp(40px, 7vw, 88px);
  color: #fff;
  margin-top: 12px;
}

.page-header-eyebrow { color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.page-header-sub { color: rgba(244,239,230,0.7); font-size: 16px; margin-top: 12px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(244,239,230,0.55);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(244,239,230,0.7); }
.breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.breadcrumb-sep { color: rgba(244,239,230,0.35); }

/* ============================================================
   SERVICES PAGE — FEATURE BLOCKS
   ============================================================ */
.services-intro {
  background: var(--canvas);
  padding: 64px 0 0;
}

.services-intro-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
  max-width: 700px;
}

.section-sub { font-size: 18px; color: var(--muted); line-height: 1.65; margin-top: 8px; }

.services-features { background: var(--canvas); }

.service-block-wrap {
  padding: clamp(64px, 9vh, 100px) clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}

.service-block-wrap.surface { background: var(--surface); }

.service-block {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 767px) {
  .service-block { grid-template-columns: 1fr; }
}

.photo-mount {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-mount img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-block-body {
  display: flex; flex-direction: column; gap: 16px;
}

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

.service-block-body .service-eyebrow {
  display: block; margin-bottom: 8px;
}

.service-desc { font-size: 17px; color: var(--ink-mid); line-height: 1.7; }
.service-desc-secondary { font-size: 15px; color: var(--muted); line-height: 1.65; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; }
.btn-primary svg { width: 18px; height: 18px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Founder story */
.founder-story {
  background: var(--canvas);
}

.founder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 899px) {
  .founder-layout { grid-template-columns: 1fr; gap: 40px; }
}

.founder-portrait-wrap .mounted-print {
  aspect-ratio: 3/4;
  width: 100%;
}

.founder-portrait-wrap .mounted-print img {
  width: 100%; height: 100%; object-fit: cover;
}

.founder-text .eyebrow { display: block; margin-bottom: 16px; }
.founder-headline { font-size: clamp(28px, 4vw, 48px); margin-bottom: 28px; }

.founder-body p { color: var(--ink-mid); line-height: 1.75; margin-bottom: 16px; }

.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--primary-tint8);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--ink);
  font-style: italic;
  line-height: 1.4;
}

.founder-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* Values section */
.values-section { background: var(--surface); }

.values-header { margin-bottom: 48px; }
.values-header .eyebrow { margin-bottom: 12px; }

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

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

.value-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }

.value-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.value-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  margin-bottom: 12px;
}

.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.value-title { font-size: 17px; font-weight: 600; }

/* Timeline */
.timeline-section { background: var(--canvas); }

.timeline-header { margin-bottom: 56px; }
.timeline-header .eyebrow { margin-bottom: 12px; }

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border-strong);
}

.timeline-step {
  display: grid;
  grid-template-columns: 32px 90px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  position: relative;
}

.timeline-dot {
  width: 28px; height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  margin-top: 2px;
}
.timeline-dot svg { width: 14px; height: 14px; color: var(--ink); }

.timeline-year {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--muted);
  padding-top: 2px;
}

.timeline-milestone { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.timeline-header h2 { margin-top: 8px; }

/* Crew section */
.crew-section { background: var(--surface); }

.crew-header { margin-bottom: 48px; }
.crew-header .eyebrow { margin-bottom: 12px; }

.crew-strip {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 767px) {
  .crew-strip { grid-template-columns: 1fr; }
}

.crew-card { }
.crew-card-main .mounted-print { aspect-ratio: 3/4; }
.crew-card-main .mounted-print img { width: 100%; height: 100%; object-fit: cover; }

.crew-card-label {
  margin-top: 16px;
}

.crew-card-name { font-family: 'DM Serif Display', serif; font-size: 22px; }
.crew-card-role { font-size: 13px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted); font-weight: 600; margin-top: 2px; }

.crew-stat-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 180px;
}

.crew-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
  color: var(--ink);
}
.crew-stat-num span { color: var(--primary-dark); }
.crew-stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 8px; }

/* About two-col */
.about-section { background: var(--canvas); }

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 899px) {
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
}

.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 24px; }
.about-body p { color: var(--ink-mid); line-height: 1.75; margin-bottom: 14px; }

.about-img-wrap .mounted-print { aspect-ratio: 4/5; }
.about-img-wrap .mounted-print img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--canvas);
  padding-top: clamp(64px, 8vh, 96px);
}

.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 64px;
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 899px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 44px !important; filter: brightness(0) invert(1) opacity(0.85); }
.footer-tagline, .footer-brand-tagline { font-size: 14px; color: rgba(244,239,230,0.5); line-height: 1.5; }
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--canvas); }

.footer-socials, .footer-social {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 4px;
}

.footer-social-link, .footer-socials a, .footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(244,239,230,0.08);
  color: rgba(244,239,230,0.65);
  transition: background 180ms, color 180ms;
}
.footer-social-link:hover, .footer-socials a:hover, .footer-social a:hover {
  background: var(--primary); color: var(--ink); text-decoration: none;
}
.footer-social-link svg, .footer-socials svg, .footer-social svg { width: 16px; height: 16px; }

.footer-col h4, .footer-col-title, .footer-col-heading, .footer-col-heading-spaced {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(244,239,230,0.4);
  margin-bottom: 16px;
}

.footer-links, .footer-col ul {
  display: flex; flex-direction: column; gap: 10px;
}

.footer-links a, .footer-col ul a {
  font-size: 14px; color: rgba(244,239,230,0.65);
  transition: color 150ms;
}
.footer-links a:hover, .footer-col ul a:hover {
  color: var(--canvas); text-decoration: none;
}

/* Footer contact details */
.footer-contact-details p, .footer-address p { font-size: 14px; color: rgba(244,239,230,0.55); line-height: 1.6; margin-bottom: 4px; }
.footer-address a, .footer-email-link { color: rgba(244,239,230,0.7); }
.footer-address a:hover { color: var(--canvas); text-decoration: none; }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.footer-contact-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; color: rgba(244,239,230,0.35); }
.footer-contact-value { font-size: 14px; color: rgba(244,239,230,0.65); }
.footer-contact-value a { color: rgba(244,239,230,0.7); }
.footer-contact-line { display: flex; flex-direction: column; gap: 4px; }
.footer-contact-line a { color: rgba(244,239,230,0.65); font-size: 14px; }
.footer-contact-line div { font-size: 14px; color: rgba(244,239,230,0.45); }

.footer-phone { font-size: 16px; font-weight: 600; color: var(--primary); }
.footer-phone-link { color: var(--primary); }
.footer-email-link { color: rgba(244,239,230,0.65); }
.footer-license { font-size: 12px; color: rgba(244,239,230,0.3); }
.footer-note { font-size: 12px; color: rgba(244,239,230,0.3); }
.footer-rating { display: flex; align-items: center; gap: 8px; }
.footer-rating svg { width: 16px; height: 16px; color: var(--primary); }
.footer-detail { font-size: 14px; color: rgba(244,239,230,0.55); }

.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.08);
  padding: 24px clamp(20px, 4vw, 48px);
  max-width: var(--content-max); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px; color: rgba(244,239,230,0.3);
}

.footer-copy { color: rgba(244,239,230,0.3); }

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

.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-sticky-cta a:hover,
.mobile-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
  color: var(--ink); text-decoration: none;
}

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

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

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.stagger { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease-out, transform 500ms ease-out; }

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

.fade-up-d1 { transition-delay: 120ms; }
.fade-up-d2 { transition-delay: 240ms; }

/* ============================================================
   STATS (used in about crew)
   ============================================================ */
.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); }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); border-radius: 8px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card { padding: 28px; border-radius: 12px; background: var(--primary-tint8); }
.review-stars svg { color: var(--primary-dark); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

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

/* 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); }

/* Table cells */
thead .col-service, thead .col-desc, thead .col-timeline, thead .col-price {
  background: var(--ink); color: var(--canvas);
}

/* No mirror transforms */
.flip { order: -1; }

/* ============================================================
   RESPONSIVE CLEANUP
   ============================================================ */
@media (max-width: 639px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner-inner { flex-direction: column; }
  .team-cta-inner { flex-direction: column; text-align: center; }
  .service-block { grid-template-columns: 1fr; }
  .service-block-wrap.surface .service-block .photo-mount { order: -1; }
  .timeline-step { grid-template-columns: 28px 1fr; }
  .timeline-year { display: none; }
  .crew-strip { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .founder-layout { grid-template-columns: 220px 1fr; gap: 40px; }
  .crew-strip { grid-template-columns: 200px 1fr 1fr; }
}

@media (min-width: 900px) {
  .service-block-wrap.surface .service-block .service-block-body { order: -1; }
}

@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.hero-supergraphic { grid-column: 1 / -1; }
.hero-inner { grid-column: 1 / -1; }
.photo-frame { grid-column: 1 / -1; }
.contact-info-block { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.fade-up-d1 { grid-column: 1 / -1; }
.timeline-dot { grid-column: 1 / -1; }
.timeline-year { grid-column: 1 / -1; }
.timeline-milestone { grid-column: 1 / -1; }
.timeline-desc { 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; }
