@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');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #30a65f;
  --primary-tint:   rgba(48,166,95,0.12);
  --primary-tint8:  rgba(48,166,95,0.08);
  --primary-dark:   #238c4e;
  --accent:         #30a65f;

  --canvas:         #F4EFE6;
  --canvas-dark:    #EAE4D8;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3D3830;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-med:     rgba(31,27,22,0.16);

  --mount-border:   #F4EFE6;   /* the 12px photo mount color */
  --mount-width:    12px;

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

  --header-height:  72px;
  --max-w:          1240px;
  --max-w-wide:     1400px;

  --section-py:     clamp(96px, 12vh, 152px);
  --gap-lg:         clamp(48px, 6vw, 80px);
  --gap-md:         clamp(32px, 4vw, 56px);
  --gap-sm:         clamp(16px, 2.5vw, 28px);
}

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

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

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

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  -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 45%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); letter-spacing: -0.01em; }

p { line-height: 1.68; }

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

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

.wide-container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.bleed { width: 100%; max-width: 100%; padding-inline: 0; }

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

/* ============================================================
   PHOTO MOUNT — the signature 12px sand inner border
   ============================================================ */
.photo-mount {
  box-shadow: inset 0 0 0 var(--mount-width) var(--mount-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.photo-mount img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-mount-white {
  box-shadow: inset 0 0 0 var(--mount-width) var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.photo-mount-white img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-outline-white,
.btn-service,
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease, background 200ms ease, color 200ms ease;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
}
.btn-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(48,166,95,0.38);
  color: var(--surface);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(244,239,230,0.15);
  color: var(--surface);
  border: 2px solid rgba(244,239,230,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(244,239,230,0.28);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--surface);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--surface);
  text-decoration: none;
}

.btn-service {
  background: var(--primary-tint);
  color: var(--primary-dark);
  border: none;
  padding: 12px 22px;
  font-size: 14px;
}
.btn-service:hover {
  background: var(--primary);
  color: var(--surface);
  text-decoration: none;
}
.btn-service svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn svg, .btn-primary svg, .btn-ghost svg, .btn-outline svg,
.btn-outline-white svg, .btn-service svg { flex-shrink: 0; }

/* ============================================================
   CHIPS + PILLS
   ============================================================ */
.trust-chip,
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--primary-dark);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
}
.trust-chip svg, .trust-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.service-chip, .area-chip, .area-pill {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--primary-dark);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: none;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-med);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

/* ============================================================
   EYEBROWS
   ============================================================ */
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.cta-banner-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-eyebrow::after,
.eyebrow-line::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}
.eyebrow-center {
  text-align: center;
}
.eyebrow-center::after {
  margin-inline: auto;
}
.section-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-rule {
  width: 32px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  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;
  transition: color 150ms;
}
.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);
  padding-bottom: 4px;
}

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

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

@media (max-width: 900px) {
  .top-nav { padding-inline: 16px; gap: 12px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 10px 0; font-size: 17px; }
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
}

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

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.25) 0%,
    rgba(31,27,22,0.55) 55%,
    rgba(48,166,95,0.28) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 56px);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.85);
  display: block;
  margin-bottom: 4px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #F4EFE6;
  max-width: 14ch;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 450;
  line-height: 1.55;
  color: rgba(244,239,230,0.82);
  max-width: 44ch;
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 12px;
}
.hero-trust-chips .trust-chip {
  background: rgba(48,166,95,0.18);
  color: rgba(244,239,230,0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244,239,230,0.2);
}
.hero-trust-chips .trust-chip svg { color: rgba(244,239,230,0.7); }

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; align-items: flex-end; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(244,239,230,0.08);
  border-bottom: 1px solid rgba(244,239,230,0.08);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}

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

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.75);
  line-height: 1.2;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

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

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

.services-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.services-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.services-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 20ch;
  margin-bottom: 16px;
}

.services-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}

/* Tabs */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-med);
  padding-bottom: 0;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Panels */
.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}
.service-panel.active { display: grid; }

@media (max-width: 700px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-photo { order: -1; }
}

.service-panel-photo {
  position: relative;
}
.service-panel-photo .photo-mount-white {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-panel-photo .photo-mount-white img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-body {
  padding-top: 8px;
}

.service-panel-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

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

.service-panel-desc {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-mid);
  margin-bottom: 28px;
  max-width: 48ch;
}

.services-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ============================================================
   GALLERY (index.html inline gallery)
   ============================================================ */
.gallery {
  background: var(--surface);
  padding-block: var(--section-py);
}
.gallery-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}
.gallery-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.gallery-feature-link {
  display: block;
  text-decoration: none;
}
.gallery-feature-link .photo-mount-white {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-feature-link .photo-mount-white img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
}
.gallery-feature-link:hover .photo-mount-white img { transform: scale(1.03); }

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.gallery-container {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-header-row h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}
.gallery-count {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.gallery-card:hover { transform: translateY(-2px); box-shadow: 0 16px 48px -12px rgba(31,27,22,0.22); }

.gallery-card-feature {
  grid-column: span 2;
}
@media (max-width: 900px) { .gallery-card-feature { grid-column: span 2; } }
@media (max-width: 540px) { .gallery-card-feature { grid-column: span 1; } }

.gallery-card-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 var(--mount-width) var(--mount-border);
}
.gallery-card-feature .gallery-card-frame { aspect-ratio: 16 / 9; }

.gallery-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 600ms ease;
  filter: grayscale(20%) saturate(0.9);
}
.gallery-card:hover .gallery-card-frame img { transform: scale(1.05); filter: grayscale(0%) saturate(1); }

/* crop helpers */
.crop-center img { object-position: center center; }
.crop-tl img    { object-position: top left; }
.crop-tr img    { object-position: top right; }
.crop-bl img    { object-position: bottom left; }
.crop-br img    { object-position: bottom right; }
.crop-top img   { object-position: top center; }
.crop-bottom img { object-position: bottom center; }
.crop-left img  { object-position: center left; }
.crop-right img { object-position: center right; }

.zoom-in { }
.zoom-mid { }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,27,22,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-info { color: #F4EFE6; }
.gallery-card-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.gallery-card-tag svg { width: 12px; height: 12px; }
.gallery-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1.1;
  color: #F4EFE6;
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.gallery-card-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.gallery-card-location {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 3px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

/* ============================================================
   RATING SECTION
   ============================================================ */
.rating-section {
  background: var(--surface);
  padding-block: var(--section-py);
  text-align: center;
}
.rating-inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.rating-stars {
  display: flex;
  gap: 6px;
  align-items: center;
}
.rating-stars svg { width: 28px; height: 28px; color: var(--primary); }
.rating-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.rating-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.rating-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 40ch;
  text-align: center;
  line-height: 1.6;
}
.rating-cta { margin-top: 8px; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.service-areas-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.service-areas-inner h2 {
  font-size: clamp(32px, 4vw, 56px);
  max-width: 22ch;
  margin-bottom: 32px;
}
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pill {
  background: var(--surface);
  border: 1px solid var(--border-med);
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background 150ms, color 150ms, border-color 150ms;
}
.area-pill:hover {
  background: var(--primary-tint);
  color: var(--primary-dark);
  border-color: var(--primary);
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote-section {
  background: var(--ink);
  padding-block: clamp(80px, 10vh, 128px);
}
.pull-quote-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  text-align: center;
  position: relative;
}
.pull-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 120px;
  line-height: 0.5;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 16px;
  user-select: none;
}
.pull-quote-mark::before { content: '\201C'; }
.pull-quote-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #F4EFE6;
  margin-bottom: 28px;
}
.pull-quote-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-block: clamp(80px, 10vh, 128px);
}
.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  filter: brightness(0.38) saturate(0.6);
  max-height: none !important;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-banner-supergraph {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(48,166,95,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.cta-banner h2,
.cta-banner-title,
.cta-banner-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  color: #F4EFE6;
  line-height: 1.02;
  max-width: 18ch;
}
.cta-banner-sub, .cta-banner-text p, .cta-banner > p {
  font-size: 17px;
  color: rgba(244,239,230,0.78);
  max-width: 46ch;
  line-height: 1.6;
}
.cta-banner-text { display: flex; flex-direction: column; gap: 12px; }
.cta-banner-actions,
.cta-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cta-deco {
  position: absolute; inset: 0; z-index: 0;
  background: var(--ink);
  pointer-events: none;
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  padding-block: clamp(32px, 4vh, 56px);
}
.team-cta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.team-cta-line {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--ink);
}

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
#contact.contact {
  background: var(--surface);
  padding-block: var(--section-py);
}
.contact-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}
.contact-inner > div:first-child h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 8px;
}
.contact-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 44ch;
}

/* CONTACT PAGE (contact.html) */
.contact-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.contact-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-lg);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-wrap h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
}
.contact-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
  line-height: 1.05;
}
.contact-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 24px;
}

/* ============================================================
   FORMS
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label,
.form-group label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--border-med);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(48,166,95,0.14);
}
.form-field textarea,
.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit {
  background: var(--primary);
  color: var(--surface);
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: filter 200ms, transform 200ms;
}
.form-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info,
.contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
}
.contact-info h3,
.contact-info-card h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 24px;
}
.contact-data { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 16px; height: 16px; color: var(--primary); }
.contact-item-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-item-body a {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-item-body a:hover { color: var(--primary); }

/* Contact page info card items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 16px; height: 16px; color: var(--primary); }
.info-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-value { font-size: 15px; color: var(--ink); }
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary); }
.info-divider { border: none; border-top: 1px solid var(--border); margin-block: 4px; }
.service-area-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--primary-tint8);
  border-radius: var(--radius-sm);
}
.star-rating { color: var(--primary); font-size: 18px; letter-spacing: 2px; }
.trust-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
}

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 45vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.page-header > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 0;
  max-height: none !important;
}
.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.3) 60%, transparent 100%);
}
.page-header-frame {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.page-header-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 56px);
}
.page-header-eyebrow,
.page-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.page-header-title,
.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  color: #F4EFE6;
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.page-header-sub,
.page-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(244,239,230,0.78);
  max-width: 44ch;
  line-height: 1.55;
  margin-top: 12px;
}

/* ============================================================
   SERVICES PAGE — service feature sections
   ============================================================ */
.service-feature {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.service-feature.surface {
  background: var(--surface);
}
.service-feature-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.service-feature-grid.reverse {
  direction: rtl;
}
.service-feature-grid.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature-grid.reverse { direction: ltr; }
  .service-photo-frame { order: -1; }
}

.service-photo-frame {
  position: relative;
  box-shadow: inset 0 0 0 var(--mount-width) var(--mount-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-feature.surface .service-photo-frame {
  box-shadow: inset 0 0 0 var(--mount-width) var(--surface);
}
.service-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: none !important;
}

.service-feature-body { padding-block: 8px; }
.service-feature-body h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-block: 12px 16px;
  line-height: 1.05;
}
.service-feature-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.68;
  max-width: 48ch;
  margin-bottom: 12px;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 20px 28px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 14px;
}

/* ============================================================
   ABOUT PAGE — FOUNDER STORY
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.founder-story-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--gap-lg);
  align-items: start;
}
@media (max-width: 900px) {
  .founder-story-inner { grid-template-columns: 1fr; }
}

.founder-portrait-col { display: flex; flex-direction: column; gap: 16px; }
.founder-portrait-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 var(--mount-width) var(--mount-border);
  aspect-ratio: 3 / 4;
  position: relative;
}
.founder-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(15%) saturate(0.9);
}
.founder-name-tag {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.founder-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--ink);
}
.founder-role {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.founder-story-col h2 { font-size: clamp(28px, 4vw, 52px); margin-block: 14px 24px; }
.story-body { display: flex; flex-direction: column; gap: 16px; }
.story-body p { font-size: 17px; color: var(--ink-mid); max-width: 62ch; line-height: 1.72; }
.story-pull {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin-block: 8px;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--surface);
  padding-block: var(--section-py);
}
.values-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 20ch;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(31,27,22,0.12); }

.value-icon {
  width: 44px; height: 44px;
  background: var(--primary-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.value-icon svg { width: 22px; height: 22px; color: var(--primary); }
.value-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.value-card h3 { font-size: 20px; line-height: 1.1; margin: 0; }
.value-title { font-size: 20px; font-family: 'DM Serif Display', serif; }
.value-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.journey-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: clamp(40px, 5vw, 64px);
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 1px;
  background: var(--border-med);
  z-index: 0;
}
@media (max-width: 900px) { .journey-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journey-steps { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .journey-steps::before { display: none; } }

.journey-step {
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-dot-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.step-milestone {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.journey-step h3 { font-size: 20px; margin-bottom: 8px; line-height: 1.15; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip {
  background: var(--ink);
  padding-block: var(--section-py);
}
.crew-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
@media (max-width: 900px) { .crew-inner { grid-template-columns: 1fr; } }

.crew-text-col h2 { color: #F4EFE6; font-size: clamp(28px, 4vw, 52px); margin-block: 12px 20px; }
.crew-text-col .section-eyebrow { color: var(--primary); }
.crew-headline { color: #F4EFE6; }
.crew-body { font-size: 17px; color: rgba(244,239,230,0.72); line-height: 1.68; max-width: 48ch; margin-bottom: 32px; }

.crew-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.crew-stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--primary);
}
.crew-stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  margin-top: 4px;
}

.crew-supergraphic {
  background: rgba(244,239,230,0.04);
  border: 1px solid rgba(244,239,230,0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crew-member-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  transition: background 150ms;
}
.crew-member-row:hover { background: rgba(244,239,230,0.06); }
.crew-member-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(48,166,95,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.crew-member-avatar svg { width: 24px; height: 24px; color: var(--primary); }
.crew-member-info { flex: 1; }
.crew-member-name {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #F4EFE6;
}
.crew-member-role {
  display: block;
  font-size: 12px;
  color: rgba(244,239,230,0.5);
  margin-top: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.62);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding: clamp(56px, 7vh, 80px) clamp(20px, 5vw, 56px) 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding: clamp(56px, 7vh, 80px) clamp(20px, 5vw, 56px) 0;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo img,
.footer-brand img,
.footer-brand-col img {
  max-height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: rgba(244,239,230,0.9);
}
.footer-tagline,
.footer-brand-tagline {
  font-size: 14px;
  color: rgba(244,239,230,0.5);
  max-width: 28ch;
  line-height: 1.55;
}

.footer-social-links { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-links a {
  width: 36px; height: 36px;
  background: rgba(244,239,230,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,239,230,0.7);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}
.footer-social-links a svg { width: 16px; height: 16px; }
.footer-social-links a:hover { background: var(--primary); color: var(--surface); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col-title,
.footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.38);
  margin-bottom: 4px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a,
.footer-col a {
  font-size: 14px;
  color: rgba(244,239,230,0.62);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover,
.footer-col a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { font-size: 14px; color: rgba(244,239,230,0.62); }
.footer-contact-list a { color: rgba(244,239,230,0.62); }
.footer-contact-list a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-line,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(244,239,230,0.62);
  margin-bottom: 8px;
}
.footer-contact-line svg,
.footer-contact-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contact-line a,
.footer-contact-item a { color: rgba(244,239,230,0.62); text-decoration: none; }
.footer-contact-line a:hover,
.footer-contact-item a:hover { color: var(--primary); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(244,239,230,0.08);
  margin: 48px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(244,239,230,0.08);
  margin-top: 48px;
}
.footer-copy,
.footer-copyright,
.footer-legal {
  font-size: 12px;
  color: rgba(244,239,230,0.35);
}
.footer-rating,
.footer-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(244,239,230,0.45);
}
.footer-stars svg { width: 13px; height: 13px; color: var(--primary); }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
}
.mobile-cta a,
.mobile-sticky-cta a,
.mobile-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
  white-space: nowrap;
}
.mobile-cta a:hover,
.mobile-sticky-cta a:hover,
.mobile-sticky-btn:hover { filter: brightness(0.9); transform: translateY(-2px); text-decoration: none; color: var(--surface); }
.mobile-cta svg,
.mobile-sticky-cta svg,
.mobile-sticky-btn svg { width: 18px; height: 18px; }

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

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

.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; }
.stagger > *:nth-child(9) { transition-delay: 640ms; }

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

/* Pre-visible state for elements that start visible (about page) */
.fade-up.visible.visible { opacity: 1; transform: none; }

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

/* ============================================================
   STATS
   ============================================================ */
.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: clamp(11px, 1vw, 14px);
  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);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
}
.review-stars svg { color: var(--primary); 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; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
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;
  flex-shrink: 0;
  color: var(--muted);
}
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   ACCORDION SERVICES
   ============================================================ */
details.service-row {
  border-bottom: 1px solid var(--border);
}
details.service-row > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-weight: 600;
}
details.service-row > summary::-webkit-details-marker { display: none; }
details.service-row > summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}
details.service-row[open] > summary::after { transform: rotate(45deg); color: var(--primary); }

/* ============================================================
   TABLE (defensive)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #F4EFE6;
  padding: 12px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   NO MIRROR TRANSFORMS
   ============================================================ */
.flip {
  /* layout flip only — never transform: scaleX */
  direction: rtl;
}
.flip > * { direction: ltr; }

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

/* ============================================================
   STAR RATINGS inline svg
   ============================================================ */
.stars { color: var(--primary); letter-spacing: 2px; }
.star-rating { color: var(--primary); letter-spacing: 2px; font-size: 18px; }

/* ============================================================
   MISC SMALL COMPONENTS
   ============================================================ */
.cta-phone-big {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  width: 0%;
  transition: width 80ms linear;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions,
  .cta-banner-btns { flex-direction: column; align-items: flex-start; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
  .crew-stats { gap: 24px; }
  .footer-inner { padding-bottom: 0; }
}

@media (max-width: 900px) {
  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand,
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 540px) {
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-brand-col { grid-column: span 1; }
  .service-tab { font-size: 12px; padding: 10px 12px; }
}


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