@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 {
  --primary:        #a66530;
  --primary-tint:   rgba(166,101,48,0.12);
  --primary-tint-8: rgba(166,101,48,0.08);
  --primary-dark:   #8a5227;
  --accent:         #C1C1C1;
  --canvas:         #F4EFE6;
  --canvas-deep:    #EDE7DA;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3a342b;
  --muted:          #7A7268;
  --muted-light:    #a09990;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --header-height:  72px;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --shadow-card:    0 2px 20px -4px rgba(31,27,22,0.10);
  --shadow-pill:    0 18px 40px -10px rgba(0,0,0,0.45);
  --container:      1240px;
  --section-py:     clamp(96px, 12vh, 152px);
  /* mounted-print border = sand canvas color, 12px thick */
  --mount-border:   12px solid #F4EFE6;
  --mount-shadow:   0 8px 40px -8px rgba(31,27,22,0.18);
}

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

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

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

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

/* ============================================================
   UNIVERSAL IMAGE CAP
   ============================================================ */
img { max-width: 100%; height: auto; display: block; }

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 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 RESET
   ============================================================ */
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,
.hero-title,
.section-title,
.page-header-title,
.cta-banner-title,
.service-feature-title,
.photo-feature-title,
.founder-story h2,
.contact-form-side h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); font-family: 'DM Serif Display', serif; font-weight: 400; }

p { line-height: 1.68; }

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

/* ============================================================
   EYEBROWS & LABELS
   ============================================================ */
.eyebrow,
.section-eyebrow,
.hero-eyebrow,
.page-header-eyebrow,
.page-eyebrow,
.cta-banner-eyebrow,
.service-eyebrow,
.gallery-section-eyebrow,
.photo-feature-eyebrow,
.card-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.eyebrow-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ============================================================
   CONTAINERS
   ============================================================ */
.inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-ghost,
.btn-submit,
.btn-outline-light,
.btn-banner-primary,
.btn-banner-secondary,
.service-cta {
  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: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 180ms, transform 160ms, box-shadow 160ms;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary,
.btn-submit,
.btn-banner-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover,
.btn-submit:hover,
.btn-banner-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
.btn-ghost,
.btn-outline-light,
.btn-banner-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-strong);
}
.btn-ghost:hover,
.btn-outline-light:hover,
.btn-banner-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn svg, .btn-primary svg, .btn-ghost svg,
.btn-banner-primary svg, .btn-banner-secondary svg,
.service-cta svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(166,101,48,0.15);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.chip-row,
.founder-chips,
.photo-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* discount chip */
.discount-chip,
.discount-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.discount-chip svg { width: 16px; height: 16px; }
.discount-banner {
  display: block;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  margin-top: 20px;
}
.discount-banner strong { font-weight: 700; }

/* ============================================================
   MOUNTED PRINT — the brand's signature move
   Every photo gets a sand-color inner border = "mounted print"
   ============================================================ */
.mounted,
.svc-photo,
.gallery-card-photo,
.service-feature-photo-wrap,
.photo-feature-frame,
.founder-portrait-wrap,
.crew-photo-item,
.gallery-feature {
  border: var(--mount-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--mount-shadow);
}

.svc-photo img,
.gallery-card-photo img,
.service-feature-photo-wrap img,
.photo-feature-frame img,
.crew-photo-item img,
.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: none;
  border-radius: 0;
}

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

/* ============================================================
   SITE 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 {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  max-height: 44px !important;
  max-width: 160px !important;
}

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

.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);
}

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

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .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: 850;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { font-size: 18px; padding: 10px 0; display: block; }
  .nav-cta span { display: none; }
}

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

#hero.hero > img:first-of-type,
section.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
  max-height: none !important;
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(31,27,22,0.72) 0%,
    rgba(31,27,22,0.55) 40%,
    rgba(166,101,48,0.30) 100%
  );
  pointer-events: none;
}

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

.hero-eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

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

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

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

.hero-ctas .btn-primary,
.hero-ctas a:first-child {
  background: var(--primary);
  color: #fff;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter 180ms, transform 160ms;
}
.hero-ctas .btn-primary:hover,
.hero-ctas a:first-child:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.hero-ctas .btn-ghost,
.hero-ctas a:last-child {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 180ms, border-color 180ms;
  backdrop-filter: blur(4px);
}
.hero-ctas .btn-ghost:hover,
.hero-ctas a:last-child:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  text-decoration: none;
}

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

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

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

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

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

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

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

.marquee-dot {
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

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

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

.services-head {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-head h2,
.services-head .section-title {
  font-size: clamp(36px, 5vw, 72px);
}

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

/* flagship card spans 2 columns */
.services-bento .service-card.flagship {
  grid-column: span 2;
}

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

.svc-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: var(--mount-border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card.flagship .svc-photo {
  aspect-ratio: 21 / 9;
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: none !important;
  transition: transform 400ms ease;
}
.service-card:hover .svc-photo img { transform: scale(1.04); }

.svc-body {
  padding: 24px 22px 22px;
}

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

.svc-body h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  margin-bottom: 8px;
}

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

.svc-learn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 899px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
  }
  .services-bento .service-card.flagship {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .services-bento .service-card.flagship {
    grid-column: span 1;
  }
}

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

.gallery-head {
  margin-bottom: 40px;
}

.gallery-feature {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border: var(--mount-border);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--mount-shadow);
  max-height: none !important;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease;
}
.gallery-feature:hover img { transform: scale(1.03); }

.gallery-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,27,22,0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  border-radius: 0;
}

.gallery-scrim-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary-tint);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.gallery-view-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.arrow-link:hover, .gallery-view-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.gallery-section-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  margin-bottom: 16px;
}

.gallery-section-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 32px;
}

.gallery-head h2,
.gallery-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
}

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

.filter-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18);
}

.gallery-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: var(--mount-border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.gallery-card.tall .gallery-card-photo { aspect-ratio: 3 / 4; }
.gallery-card.featured .gallery-card-photo { aspect-ratio: 16 / 9; }

.gallery-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-photo img { transform: scale(1.05); }

.gallery-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(31,27,22,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.gallery-card-body {
  padding: 18px 16px;
}

.gallery-card-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.gallery-card-meta svg { width: 14px; height: 14px; color: var(--primary); }

.gallery-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.gallery-card-title { font-size: 17px; }

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

/* Photo feature (gallery page) */
.photo-feature {
  background: var(--surface);
  padding: var(--section-py) 0;
}

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

.photo-feature-img-wrap {
  position: relative;
}

.photo-feature-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: var(--mount-border);
  border-radius: var(--radius);
  box-shadow: var(--mount-shadow);
}

.photo-feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
}

.photo-feature-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

.photo-feature-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 24px;
  max-width: 52ch;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.form-col h2,
.form-col .section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 32px;
}

.form-col .eyebrow-rule { margin-bottom: 16px; }

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

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

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

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-tint);
}

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

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: -4px;
  margin-bottom: 16px;
}

.form-submit,
.form-row button[type="submit"],
form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: filter 180ms;
}
.form-submit:hover,
form .btn-submit:hover { filter: brightness(0.92); }

.info-col h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 28px;
}

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

.c-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: var(--primary-tint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-icon svg { width: 20px; height: 20px; color: var(--primary); }

.c-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.c-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.c-value a { color: var(--ink); }
.c-value a:hover { color: var(--primary); }

.promo-card {
  margin-top: 24px;
  background: var(--primary-tint);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(166,101,48,0.18);
}

.promo-head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.promo-body { font-size: 15px; color: var(--ink); line-height: 1.5; margin-bottom: 4px; }
.promo-body-b { font-size: 14px; color: var(--muted); }
.promo-strong { font-weight: 700; color: var(--primary-dark); }

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-form-side h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
}

.form-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

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

.contact-info-card h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 4px;
}

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

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

.info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hours-day,
.hours-time {
  font-size: 14px;
  color: var(--ink-mid);
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 48vh;
  max-height: 60vh;
  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.82) 0%, rgba(31,27,22,0.4) 60%, transparent 100%);
  pointer-events: none;
}

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

.page-header-title,
.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 12px;
}

.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  line-height: 1.5;
}

.page-header-eyebrow,
.page-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

/* ============================================================
   SERVICE FEATURES (services.html)
   ============================================================ */
.service-features {
  background: var(--canvas);
}

.service-feature {
  padding: clamp(64px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--border);
}
.service-feature:last-child { border-bottom: none; }

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

/* alternate photo left / text right */
.service-feature:nth-child(even) .service-feature-inner {
  direction: rtl;
}
.service-feature:nth-child(even) .service-feature-inner > * {
  direction: ltr;
}

.service-feature-photo {
  position: relative;
}

.service-feature-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: var(--mount-border);
  border-radius: var(--radius);
  box-shadow: var(--mount-shadow);
}

.service-feature-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
}

.service-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-feature-copy h2,
.service-feature-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}

.service-feature-body {
  margin-bottom: 24px;
}

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

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 180ms, transform 160ms;
  margin-top: 8px;
}
.service-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
.service-cta svg { width: 18px; height: 18px; }

@media (max-width: 899px) {
  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr !important;
  }
  .service-feature-photo { order: -1; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: var(--section-py) 0;
}

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

.cta-banner-overlay,
.cta-banner-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(31,27,22,0.88) 0%, rgba(166,101,48,0.45) 100%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.cta-banner-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.cta-banner-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}
.cta-banner-title em { font-style: italic; color: var(--accent); }

.cta-banner-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.cta-banner-text p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.55; }

.cta-banner-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-offer-chip {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-banner-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-banner-primary:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.btn-banner-primary svg { width: 18px; height: 18px; }

.btn-banner-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 28px;
}
.btn-banner-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder-story {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.founder-story-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: flex-start;
}

.founder-portrait-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: var(--mount-border);
  border-radius: var(--radius);
  box-shadow: var(--mount-shadow);
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.founder-portrait-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.founder-text h2 {
  font-size: clamp(32px, 4vw, 60px);
  margin-bottom: 24px;
}

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

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

@media (max-width: 899px) {
  .founder-story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-portrait-wrap {
    max-width: 320px;
    aspect-ratio: 4 / 3;
    position: static;
  }
}

/* ============================================================
   VALUES CARDS
   ============================================================ */
.values-cards {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.values-cards-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.values-header {
  margin-bottom: 48px;
}
.values-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
}

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  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.15);
}

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

.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
}

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

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

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.journey-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.journey-header {
  margin-bottom: 48px;
}
.journey-header h2 { font-size: clamp(32px, 4.5vw, 64px); }

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

.journey-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  padding-top: 52px;
}

.journey-dot {
  position: absolute;
  top: 8px;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 6px var(--primary-tint);
}

.journey-dot span {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.journey-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}

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

@media (max-width: 899px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
  .journey-step { padding-top: 44px; }
}
@media (max-width: 639px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.crew-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.crew-header {
  margin-bottom: 40px;
}
.crew-header h2 { font-size: clamp(30px, 4vw, 56px); }

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

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

.crew-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(20%);
  transition: filter 400ms, transform 400ms;
}
.crew-photo-item:hover img { filter: grayscale(0%); transform: scale(1.03); }

.crew-caption {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  text-align: center;
}

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

/* ============================================================
   ABOUT DETAIL
   ============================================================ */
.about-detail {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.about-detail-inner {
  max-width: 68ch;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.about-detail-inner h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 24px;
}

.about-detail-inner p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-inner,
.site-footer .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img,
.footer-brand-logo img,
.footer-logo img {
  max-height: 40px !important;
  max-width: 160px !important;
  width: auto !important;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand-desc,
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 28ch;
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-col-head,
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-list li a { color: rgba(255,255,255,0.65); }
.footer-contact-list li a:hover { color: var(--primary); text-decoration: none; }

.footer-hours-row {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

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

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

.footer-social-link,
.footer-social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}
.footer-social-link:hover,
.footer-social-links a:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
.footer-social-link svg,
.footer-social-links svg {
  width: 18px !important;
  height: 18px !important;
}

.footer-hours {
  font-size: 14px;
}
.footer-hours h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  font-family: 'Inter Tight', sans-serif;
}
.footer-hours p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
}

.footer-copy,
.footer-bottom p,
.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--primary); text-decoration: none; }

.footer-phone {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.footer-phone a { color: #fff; text-decoration: none; }

@media (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.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;
}

/* ============================================================
   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);
  font-family: 'DM Serif Display', serif;
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.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; }

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

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

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

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

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

/* ============================================================
   SVG CAPS (unsized svgs in grid/flex)
   ============================================================ */
.c-icon svg,
.info-icon svg { width: 20px; height: 20px; }
.footer-contact-item svg { width: 16px; height: 16px; }
.gallery-card-meta svg { width: 14px; height: 14px; }
.service-cta svg { width: 18px; height: 18px; }
.nav-cta svg { width: 18px; height: 18px; }

/* general defensive svg cap */
svg:not([width]):not([height]):not([style*="width"]) {
  max-width: 24px;
  max-height: 24px;
}

/* ============================================================
   EMAIL LINK
   ============================================================ */
.email-link {
  color: var(--primary);
  word-break: break-all;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.featured { /* gallery card featured — wider */ }
.tall { /* gallery card tall — taller aspect */ }

/* contact.html section */
section#contact.contact {
  background: var(--canvas);
}

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

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1199px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 899px) {
  .hero-title { font-size: clamp(48px, 10vw, 84px); }
  .contact-grid, .contact-inner { grid-template-columns: 1fr; }
  .form-row, .form-row-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .crew-photos { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .hero-inner { padding-top: 80px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .crew-photos { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-feature-inner { grid-template-columns: 1fr; gap: 32px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { 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; }
