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

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #93342C;
  --primary-dark:   #6e2520;
  --primary-light:  #b84d44;
  --accent:         #A3AA82;
  --accent-light:   #c4c9a8;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3a3530;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --border-strong:  rgba(26,24,20,0.22);
  --shadow-card:    0 4px 24px -8px rgba(26,24,20,0.14);
  --shadow-lift:    0 18px 40px -16px rgba(26,24,20,0.22);
  --radius:         8px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 160px);
  --content-width:  1280px;
  --wide-width:     1400px;
}

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

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.hero-split {
  display: grid; grid-template-columns: 60% 40%;
  min-height: 88vh; gap: 0;
}
.hero-split-text {
  background: var(--canvas);
  padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

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

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4,
.hero-title, .section-title, .about-story-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 36px); line-height: 1.05; }
h4 { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.2; font-weight: 600; }

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

/* ─── Layout utilities ───────────────────────────────────────────────────── */
.container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

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

.section-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: var(--section-py);
}

/* ─── Eyebrow label pattern ──────────────────────────────────────────────── */
.section-eyebrow, .eyebrow, .page-eyebrow,
.page-header-eyebrow, .info-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
}

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

/* ─── Scroll progress ────────────────────────────────────────────────────── */
.scroll-progress, #scrollProgress, #scroll-progress, #scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  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(26,24,20,0.08);
}

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

.nav-logo { flex: 0 0 auto; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { max-height: 44px !important; max-width: 200px !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);
}

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

.nav-cta:hover {
  color: var(--canvas);
  text-decoration: none;
  filter: brightness(0.92);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  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: 4px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; }

  .nav-toggle { display: flex; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

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

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: var(--canvas);
}
.btn-primary:hover { filter: brightness(0.92); color: var(--canvas); }

.btn-ghost {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--canvas); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-phone {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 14px 24px;
}
.btn-phone:hover { background: rgba(255,255,255,0.1); color: var(--canvas); }

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

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

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(26,24,20,0.72) 0%,
    rgba(26,24,20,0.55) 40%,
    rgba(26,24,20,0.28) 80%,
    rgba(26,24,20,0.18) 100%
  );
}

.hero-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(60px, 10vh, 120px);
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,238,0.8);
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title-wrap {
  max-width: 16ch;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--canvas);
  position: relative;
}

.hero-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: var(--primary);
  margin-top: 20px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(250,246,238,0.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.hero-ctas .btn-primary { background: var(--primary); color: var(--canvas); }

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.9);
  background: rgba(26,24,20,0.35);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(48px, 12vw, 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: 20px clamp(20px, 5vw, 60px);
}

.trust-strip-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-mid);
}

.trust-badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

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

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

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

/* ─── Services (index) ───────────────────────────────────────────────────── */
.services { background: var(--canvas); }

.services-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.services-head h2 {
  font-size: clamp(36px, 5vw, 72px);
  max-width: 20ch;
}

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

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

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  color: var(--ink);
}

.service-card > img, .service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  max-height: 220px;
  filter: grayscale(20%);
  transition: filter 300ms;
}
.service-card:hover > img, .service-card:hover .service-card-img {
  filter: grayscale(0%);
}

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

.service-card-num {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.service-card-body h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  color: var(--ink);
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-top: 8px;
}

.service-card-link svg { width: 16px; height: 16px; transition: transform 200ms; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

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

/* ─── Photo break (full-bleed between services + reviews) ─────────────────── */
.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 40vw, 520px);
  margin-block: 0;
}

.photo-break-img, .photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-height: none;
}

.photo-break-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,24,20,0.12) 0%,
    rgba(26,24,20,0.05) 50%,
    rgba(26,24,20,0.18) 100%
  );
  z-index: 1;
}

/* ─── Gallery ────────────────────────────────────────────────────────────── */
.gallery { background: var(--canvas); }

.gallery-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}

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

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  background: var(--border);
}

.gallery-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out, filter 300ms;
  filter: grayscale(15%);
  max-height: none;
}

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

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

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

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

.faq-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}
.faq-head h2 { font-size: clamp(36px, 5vw, 72px); }

.faq-list { max-width: 760px; }

details.faq-list > details,
.faq-list > details {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}

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

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

.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  color: var(--muted);
  transition: transform 200ms, color 200ms, border-color 200ms;
}
.faq-chevron::before { content: '+'; }

details[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
  border-color: var(--primary);
}

.faq-list details p {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 68ch;
}

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

/* ─── Team CTA banner ────────────────────────────────────────────────────── */
.team-cta {
  background: var(--ink);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 60px);
  text-align: center;
}

.team-cta-inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.team-cta-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas);
}

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact { background: var(--canvas); }

.contact-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: var(--section-py);
}

.contact-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}
.contact-head h2 { font-size: clamp(36px, 5vw, 72px); }

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

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

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

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

.form-input, input[type="text"], input[type="email"], input[type="tel"],
select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
}

.form-input:focus, input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(147,52,44,0.12);
}

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

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-info-value-display {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.contact-info-value-display a { color: var(--primary); }

.contact-info-value-body { font-size: 15px; color: var(--ink-mid); line-height: 1.5; }
.contact-info-value-muted { font-size: 14px; color: var(--muted); line-height: 1.55; }

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0;
}
.info-card-eyebrow::before { display: none; }

.info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.info-block a { color: var(--ink); }
.info-block a:hover { color: var(--primary); }

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-wrap h2 { font-size: clamp(28px, 3.5vw, 48px); }
.form-intro { color: var(--muted); font-size: 15px; }

.contact-section { background: var(--canvas); }

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

.service-area-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
}

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

/* ─── Page header (sub-pages) ────────────────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.72) 0%,
    rgba(26,24,20,0.38) 50%,
    rgba(26,24,20,0.18) 100%
  );
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(48px, 7vw, 80px);
  width: 100%;
}

.page-header-inner h1 {
  font-size: clamp(42px, 7vw, 88px);
  color: var(--canvas);
  max-width: 16ch;
}

.page-header-eyebrow, .eyebrow {
  color: rgba(250,246,238,0.75);
  margin-bottom: 16px;
}
.page-header-eyebrow::before, section.page-header .eyebrow::before {
  background: var(--primary);
}

.page-header-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(250,246,238,0.75);
  margin-top: 12px;
  max-width: 52ch;
}

.page-header-accent {
  display: block;
  font-style: italic;
  color: var(--canvas);
}

.header-accent-line {
  width: 56px;
  height: 3px;
  background: var(--primary);
  margin: 16px 0;
}

/* ─── Services feature blocks (services.html) ────────────────────────────── */
.services-feature {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services-feature-header {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  margin-bottom: clamp(48px, 7vw, 96px);
}

.services-feature-header h2 { font-size: clamp(36px, 5vw, 72px); }
.services-feature-header p { color: var(--muted); max-width: 60ch; margin-top: 16px; }

.feature-block {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  margin-bottom: 0;
}

.feature-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: clamp(48px, 7vw, 80px);
}

.feature-block-inner.reverse {
  direction: ltr;
}
.feature-block-inner.reverse > .feature-block-photo { order: 2; }
.feature-block-inner.reverse > .feature-block-body { order: 1; }

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

.feature-block-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: filter 300ms;
}
.feature-block:hover .feature-block-photo > img { filter: grayscale(0%); }

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

.service-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.feature-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
}

.feature-block-body p { color: var(--muted); font-size: 16px; line-height: 1.65; }

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.feature-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.hairline {
  display: block;
  height: 1px;
  background: var(--border);
  max-width: var(--content-width);
  margin-inline: auto;
  margin-block: 0;
  padding-inline: clamp(20px, 5vw, 60px);
}
.hairline::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--border);
}

span.hairline {
  display: block;
  height: 1px;
  background: var(--border);
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
}

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

/* ─── Mid-break (services.html) ──────────────────────────────────────────── */
.mid-break {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 40vw, 480px);
}

.mid-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.mid-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.55);
  z-index: 1;
}

.mid-break-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(20px, 5vw, 60px);
}

.mid-break-text blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3.5vw, 44px);
  font-style: italic;
  line-height: 1.15;
  color: var(--canvas);
  text-align: center;
  max-width: 24ch;
  letter-spacing: -0.01em;
}

/* ─── CTA banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(147,52,44,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(163,170,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner-inner .eyebrow { color: rgba(250,246,238,0.55); }
.cta-banner-inner .eyebrow::before { background: var(--primary); }

.cta-banner-inner h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--canvas);
  line-height: 1.0;
}

.cta-banner-inner h2 em { font-style: italic; }

.cta-banner-sub, .cta-banner-inner > p:not(.eyebrow) {
  color: rgba(250,246,238,0.65);
  font-size: 16px;
  max-width: 52ch;
  line-height: 1.6;
}

.cta-btn-row, .cta-pair, .cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-pair .btn-outline { border-color: rgba(250,246,238,0.45); color: var(--canvas); }
.cta-pair .btn-outline:hover { border-color: var(--canvas); color: var(--canvas); }

.cta-banner-text { display: flex; flex-direction: column; gap: 12px; }
.cta-banner-title { color: var(--canvas); }

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

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.gallery-title-block h2 { font-size: clamp(32px, 5vw, 64px); }
.gallery-title-block .eyebrow { margin-bottom: 12px; }
.gallery-title-block .eyebrow::before { background: var(--primary); }

.gallery-count {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: rgba(26,24,20,0.1);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--ink-mid);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

/* Gallery cards (gallery.html full grid) */
#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

#galleryGrid .gallery-card-featured {
  grid-column: span 2;
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.gallery-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border);
}

.gallery-card-featured .gallery-card-photo { aspect-ratio: 16 / 9; }

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

.gallery-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.gallery-card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26,24,20,0.65);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.gallery-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.gallery-card-body h3 {
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
}

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

.gallery-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.gallery-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: clamp(40px, 6vw, 80px);
  max-width: var(--content-width);
  margin-inline: auto;
}

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

/* ─── About story ────────────────────────────────────────────────────────── */
.about-story { background: var(--canvas); }

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

.about-story-portrait {
  position: relative;
}

.about-story-portrait > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(20%);
  max-height: 520px;
}

.portrait-accent-block {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 4px;
  z-index: -1;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story-headline, .about-story-body h2 {
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.0;
  max-width: 20ch;
}

.drop-cap::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4em;
  font-weight: 700;
  float: left;
  line-height: 0.78;
  margin-right: 8px;
  color: var(--primary);
}

.story-hairline {
  height: 1px;
  background: var(--border);
  margin-block: 4px;
}

.story-pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-block: 8px;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-portrait > img { aspect-ratio: 16 / 9; max-height: 320px; }
}

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

.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-header h2 { font-size: clamp(32px, 4.5vw, 64px); }

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

.value-card {
  padding: 32px 24px;
  background: var(--canvas);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.value-icon { width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; }

svg.value-icon { width: 32px; height: 32px; }

.value-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

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

/* ─── Journey timeline ───────────────────────────────────────────────────── */
.journey-section { background: var(--canvas); }

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

.journey-list::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

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

.journey-dot {
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--canvas);
  outline: 1px solid var(--primary);
}

.journey-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 6px;
}

.journey-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

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

@media (max-width: 900px) {
  .journey-list { grid-template-columns: repeat(2, 1fr); }
  .journey-list::before { display: none; }
  .journey-step { border-left: 1px solid var(--border); padding-left: 20px; padding-top: 12px; }
  .journey-dot { left: -6px; top: 12px; }
}
@media (max-width: 640px) {
  .journey-list { grid-template-columns: 1fr; }
}

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

.crew-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.crew-header-grid h2 { font-size: clamp(32px, 4.5vw, 60px); }
.crew-intro-text { font-size: 16px; color: var(--muted); line-height: 1.65; padding-top: 8px; }
.crew-intro-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

.crew-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.crew-role-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crew-role-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.crew-role-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.crew-role-title { font-size: 14px; color: var(--muted); }

.crew-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.crew-stat-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crew-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.crew-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .crew-header-grid { grid-template-columns: 1fr; gap: 20px; }
  .crew-roles { grid-template-columns: 1fr; }
}

/* ─── About bridge ───────────────────────────────────────────────────────── */
.about-bridge {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  padding-block: clamp(64px, 9vw, 120px);
  padding-inline: clamp(20px, 5vw, 60px);
}

.about-bridge-inner {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-bridge-inner h2 { font-size: clamp(28px, 4vw, 52px); }
.about-bridge-inner p { color: var(--muted); font-size: 16px; max-width: 60ch; }

.about-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
.about-bridge-link svg { width: 18px; height: 18px; }
.about-bridge-link:hover { color: var(--primary-dark); text-decoration: none; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.7);
}

.footer-inner, .footer-grid {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--canvas);
}

.footer-tagline { font-size: 13px; color: rgba(250,246,238,0.55); line-height: 1.5; }

.footer-brand p { font-size: 13px; color: rgba(250,246,238,0.55); line-height: 1.55; margin-top: 8px; }

.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(250,246,238,0.08);
  border-radius: 50%;
  color: rgba(250,246,238,0.7);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}
.footer-social a:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }

.footer-col-title, .footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,246,238,0.4);
}

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

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: rgba(250,246,238,0.65);
}
.footer-contact-item span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250,246,238,0.35); }

address { font-style: normal; }

.footer-phone-link, .footer-email, .footer-phone {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  text-decoration: none;
}
.footer-phone-link:hover, .footer-email:hover { color: var(--canvas); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.08);
}

.footer-bottom-inner, .footer-bottom {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 12px; color: rgba(250,246,238,0.35); }

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

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

/* ─── Mobile CTA pill ────────────────────────────────────────────────────── */
.mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta, .mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.mobile-call-pill > a, .mobile-cta-pill > a,
.mobile-sticky-cta > a, .mobile-cta > a,
a.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 150ms;
}

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

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

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

/* ─── Animation utilities ────────────────────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.94); }

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }
.stagger.visible > *:nth-child(9)  { opacity: 1; transform: none; transition-delay: 640ms; }
.stagger.visible > *:nth-child(n+10) { opacity: 1; transform: none; transition-delay: 720ms; }

/* ─── Misc ────────────────────────────────────────────────────────────────── */
.section-title { font-size: clamp(36px, 5vw, 72px); }

/* Cap any stray unsized SVG */
svg:not([width]):not([height]):not(.value-icon) {
  width: 24px;
  height: 24px;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Hairline rule in about */
.story-hairline { width: 100%; height: 1px; background: var(--border); margin-block: 8px; }

/* Page eyebrow inside page-header should inherit canvas color */
.page-header .page-eyebrow,
.page-header .eyebrow,
.page-header .page-header-eyebrow {
  color: rgba(250,246,238,0.7);
}

/* cta-pair inside gallery hero */
.cta-pair .btn-primary { background: var(--primary); color: var(--canvas); }

/* contact-section layout */
.contact-section .section-inner {
  padding-block: var(--section-py);
}

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

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

/* Field-full takes full width in contact form */
.field-full { grid-column: 1 / -1; }

/* form select */
select#service {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236B6660' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

/* Mid-break img fix */
.mid-break > img:first-of-type {
  max-height: none;
}

/* Photo break img fix */
.photo-break > img:first-of-type {
  max-height: none;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.feature-block-photo { grid-column: 1 / -1; }
.feature-block-body { grid-column: 1 / -1; }
.about-story-body { 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; }
