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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #DE6D5D;
  --primary-dark:   #C4573E;
  --accent:         #CEB9B6;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3A3530;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --border-accent:  rgba(206,185,182,0.5);
  --shadow-sm:      0 2px 8px rgba(26,24,20,0.06);
  --shadow-md:      0 8px 32px rgba(26,24,20,0.10);
  --shadow-lg:      0 24px 64px rgba(26,24,20,0.14);
  --radius:         8px;
  --section-py:     clamp(96px, 12vh, 160px);
  --header-height:  72px;
}

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

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

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

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

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

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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; }
}

/* ============================================================
   HEADING ANCHOR RULE
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 16px; font-weight: 600; font-family: 'Inter Tight', sans-serif; letter-spacing: 0; line-height: 1.4; }

p { line-height: 1.7; }

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.section-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

/* ============================================================
   EYEBROW SYSTEM — mono-uppercase with brand-color square bullet
   ============================================================ */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.cta-banner-eyebrow,
.card-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
}

.eyebrow-bullet,
.section-eyebrow::before,
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-eyebrow.light,
.page-eyebrow.light {
  color: rgba(250,246,238,0.7);
}
.section-eyebrow.light::before { background: var(--primary); }

/* When eyebrow-bullet is an explicit child span, suppress the ::before */
.section-eyebrow:has(.eyebrow-bullet)::before,
.eyebrow:has(.eyebrow-bullet)::before { display: none; }

.page-header-eyebrow::before { background: var(--primary); }

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

.btn-primary,
.btn.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(222,109,93,0.3);
}
.btn-primary:hover {
  filter: brightness(0.92);
  color: var(--surface);
  box-shadow: 0 8px 24px rgba(222,109,93,0.4);
}

.btn-outline,
.btn.btn-outline {
  background: transparent;
  color: var(--surface);
  border-color: rgba(250,246,238,0.5);
}
.btn-outline:hover {
  background: rgba(250,246,238,0.1);
  border-color: var(--surface);
  color: var(--surface);
}

.btn-phone,
.btn.btn-phone {
  background: transparent;
  color: rgba(250,246,238,0.9);
  border-color: rgba(250,246,238,0.35);
  padding: 14px 24px;
}
.btn-phone:hover {
  background: rgba(250,246,238,0.08);
  color: var(--surface);
  border-color: rgba(250,246,238,0.7);
}
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  background: var(--primary);
  color: var(--surface);
  cursor: pointer;
  transition: filter 200ms ease, transform 200ms ease;
}
.btn-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }

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

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

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  transition: color 150ms ease;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"],
.nav-pages li.active a {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

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

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { border-radius: 50%; padding: 10px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; }
}

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(26,24,20,0.25) 0%,
    rgba(26,24,20,0.65) 60%,
    rgba(26,24,20,0.88) 100%
  );
}

.hero-booking-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--primary);
  color: var(--surface);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  font-family: 'Inter Tight', sans-serif;
}

.hero-inner {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 8vh, 100px) clamp(24px, 5vw, 80px);
  padding-bottom: clamp(64px, 10vh, 120px);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,238,0.7);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-accent-line {
  width: 56px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 28px;
  border-radius: 1px;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 28px;
}

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

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

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

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

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

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-mid);
  background: var(--canvas);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

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

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

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

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

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

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

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

.services .section-title {
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 20ch;
}

.section-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* Services bento grid — 6 cards: 3+2+1 editorial weighting */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Flagship card spans 2 cols */
.service-card.flagship {
  grid-column: span 2;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  min-height: 320px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(26,24,20,0.18);
  text-decoration: none;
  color: var(--ink);
}

.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
  filter: saturate(0.8);
}
.service-card:hover > img { transform: scale(1.04); }

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.88) 0%, rgba(26,24,20,0.3) 50%, transparent 100%);
  z-index: 1;
}

.service-card-body {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin-bottom: 4px;
}

.service-card.flagship h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.service-card-desc {
  font-size: 13px;
  color: rgba(250,246,238,0.7);
  line-height: 1.5;
  max-width: 40ch;
}

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

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

@media (max-width: 640px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .service-card.flagship { grid-column: auto; }
  .service-card { min-height: 260px; }
}

/* ============================================================
   GALLERY (index.html preview)
   ============================================================ */
.gallery-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}

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

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
}
.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease, filter 400ms ease;
  filter: saturate(0.75);
}
.gallery-tile:hover > img { transform: scale(1.06); filter: saturate(1); }

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0);
  transition: background 300ms ease;
  z-index: 1;
}
.gallery-tile:hover .gallery-tile-overlay { background: rgba(26,24,20,0.12); }

.gallery-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.gallery-cta-row p { color: var(--muted); font-size: 14px; }

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

/* ============================================================
   PHOTO BREAK (full-bleed mid-page)
   ============================================================ */
.photo-break {
  position: relative;
  height: clamp(300px, 40vh, 540px);
  overflow: hidden;
}
.photo-break > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-height: none;
  filter: saturate(0.7) brightness(0.65);
}
.photo-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,24,20,0.7) 0%, rgba(26,24,20,0.3) 100%);
  z-index: 1;
}
.photo-break-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.photo-break-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 20ch;
  margin-bottom: 16px;
}
.photo-break-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.6);
}
.photo-break-text {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
blockquote.photo-break-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 22ch;
}

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

.faq-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.faq-list {
  max-width: 72ch;
}

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

details > summary,
details.faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Inter Tight', sans-serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  min-height: 60px;
  gap: 16px;
  transition: color 150ms ease;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 250ms ease, color 200ms ease;
}

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

details[open] > summary { color: var(--primary); }

.faq-answer,
details > p {
  padding: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(56px, 8vh, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
}

.team-cta-inner {
  max-width: 640px;
  margin-inline: auto;
}
.team-cta-inner p {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin-bottom: 32px;
}
.team-cta-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--surface);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: filter 200ms, transform 200ms;
}
.team-cta-inner a:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--surface);
}

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

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

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

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

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

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

.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 450;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(222,109,93,0.12);
}
.form-field input:focus ~ label,
.form-group input:focus ~ label { color: var(--primary); }
.form-field textarea,
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-info-icon {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ink-mid);
  transition: border-color 200ms, color 200ms, background 200ms;
  text-decoration: none;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(222,109,93,0.06);
  text-decoration: none;
}

/* contact.html layout */
.contact-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
  padding-block: var(--section-py);
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form-col h2 {
  margin-bottom: 8px;
}
.contact-form-col .eyebrow { margin-bottom: 12px; }

.contact-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 8px;
}
.card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}

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

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

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

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

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

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 14px;
  background: rgba(222,109,93,0.06);
  border-radius: 999px;
  border: 1px solid rgba(222,109,93,0.2);
}
.stars { color: var(--primary); font-size: 14px; letter-spacing: 1px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 32vh, 420px);
  max-height: 64vh;
  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(26,24,20,0.85) 0%,
    rgba(26,24,20,0.4) 60%,
    rgba(26,24,20,0.2) 100%
  );
}

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

.page-header-inner h1,
.page-title {
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--canvas);
  max-width: 18ch;
}

.page-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,238,0.65);
  margin-bottom: 16px;
}
.page-header-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-family: 'Inter Tight', sans-serif;
}
.page-header-breadcrumb a { color: rgba(250,246,238,0.6); text-decoration: none; }
.page-header-breadcrumb a:hover { color: var(--canvas); text-decoration: none; }
.page-header-breadcrumb span { color: rgba(250,246,238,0.4); }
.page-header-breadcrumb span:last-child { color: rgba(250,246,238,0.8); }

.page-header-sub {
  color: rgba(250,246,238,0.7);
  font-size: 16px;
  max-width: 48ch;
  margin-top: 12px;
  line-height: 1.6;
}

.page-header-accent {
  width: 48px; height: 2px;
  background: var(--primary);
  margin-top: 20px;
  border-radius: 1px;
}

.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.page-sub {
  font-size: 16px;
  color: rgba(250,246,238,0.75);
  max-width: 48ch;
  line-height: 1.6;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  padding-block: clamp(48px, 7vh, 80px) clamp(40px, 5vh, 64px);
}

.services-intro-left h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  margin-bottom: 12px;
}
.services-intro-left .eyebrow { margin-bottom: 16px; }
.services-intro-left > p { color: var(--muted); font-size: 15px; max-width: 40ch; line-height: 1.65; }

.intro-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.intro-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
}

.services-detail {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: var(--section-py);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-block.reverse {
  direction: rtl;
}
.service-block.reverse > * {
  direction: ltr;
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.service-block-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.82);
}

.service-block-photo-index {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface);
  background: rgba(26,24,20,0.55);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  margin-bottom: 16px;
}
.service-block-body .eyebrow { margin-bottom: 12px; }
.service-block-body > p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-features {
  list-style: none;
  padding: 0; margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.service-block-body > a.btn {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
}
.service-block-body > a.btn:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  color: var(--surface);
  text-decoration: none;
}

@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .service-block, .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .service-block.reverse > * { direction: ltr; }
}

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

.cta-banner-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-banner-bg > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.5) brightness(0.4);
  z-index: 0;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0.65);
  z-index: 1;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-banner-left h2,
.cta-banner-inner h2 {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 0;
}
.cta-banner-left .eyebrow,
.cta-banner-inner .eyebrow,
.cta-banner-eyebrow {
  color: rgba(250,246,238,0.6);
  margin-bottom: 12px;
}
.cta-banner-inner .section-eyebrow {
  color: rgba(250,246,238,0.6);
}

.cta-banner-left > p,
.cta-banner-sub {
  color: rgba(250,246,238,0.7);
  font-size: 15px;
  margin-top: 12px;
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-banner-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.55);
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
}

.cta-banner-phone {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--canvas);
  letter-spacing: -0.02em;
}

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

.cta-pair {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   GALLERY FULL PAGE
   ============================================================ */
.gallery-full {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.gallery-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.gallery-header-row h2 {
  font-size: clamp(32px, 4.5vw, 64px);
}

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

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-mid);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 200ms, color 200ms, background 200ms;
  letter-spacing: 0.04em;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(222,109,93,0.06);
}

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

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-card-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.8);
  transition: transform 500ms ease, filter 400ms ease;
}
.gallery-card:hover .gallery-card-img > img {
  transform: scale(1.05);
  filter: saturate(1);
}

.gallery-card-num {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.8);
  font-family: 'Inter Tight', sans-serif;
  z-index: 2;
}

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

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

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

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

.gallery-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.meta-item svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--primary); }

.gallery-page-header {
  min-height: clamp(200px, 28vh, 360px);
}

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

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

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

.about-portrait-col {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}
.about-portrait-col > img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 560px;
  filter: saturate(0.8);
}

.about-text-col .section-eyebrow { margin-bottom: 20px; }

.about-text-col h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.95;
  margin-bottom: 28px;
}

.about-text-col > p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 70ch;
  margin-bottom: 20px;
}

.about-hairline {
  width: 56px;
  height: 2px;
  background: var(--primary);
  margin-top: 32px;
  border-radius: 1px;
}

@media (max-width: 900px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-portrait-col { position: static; }
  .about-portrait-col > img { max-height: 420px; }
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  padding-block: var(--section-py);
  background: var(--surface);
}

.values-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.values-inner h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 48px;
  max-width: 18ch;
}

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

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

.value-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.value-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

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

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

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

.timeline-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.timeline-inner h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 48px;
  max-width: 18ch;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 20px;
  border: 2px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
}

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

.timeline-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}

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

@media (max-width: 900px) {
  .timeline-track {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-track::before { display: none; }
}
@media (max-width: 560px) {
  .timeline-track { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.75);
  padding-top: clamp(64px, 9vh, 96px);
}

.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 72px);
}

.footer-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 72px);
}

.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand p,
.footer-brand-col p {
  font-size: 14px;
  color: rgba(250,246,238,0.5);
  max-width: 28ch;
  line-height: 1.6;
}

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

.footer-rating {
  font-size: 13px;
  color: rgba(250,246,238,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.footer-stars svg {
  width: 14px; height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-tel,
.footer-email {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-tel:hover,
.footer-email:hover {
  color: var(--primary);
  text-decoration: none;
}

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

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

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

.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(250,246,238,0.6);
  text-decoration: none;
  transition: color 150ms;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--canvas); text-decoration: none; }

.footer-col > p {
  font-size: 14px;
  color: rgba(250,246,238,0.5);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.08);
  padding: 20px clamp(24px, 5vw, 80px);
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
  font-size: 13px;
  color: rgba(250,246,238,0.35);
}
.footer-bottom a {
  color: rgba(250,246,238,0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--canvas); text-decoration: none; }

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

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-cta-pill,
.mobile-cta > a,
.mobile-call {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--surface);
  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: transform 200ms ease, filter 200ms ease;
}
.mobile-cta-pill:hover,
.mobile-cta > a:hover,
.mobile-call:hover {
  transform: translateY(-2px);
  filter: brightness(0.92);
  text-decoration: none;
  color: var(--surface);
}
.mobile-cta-pill svg,
.mobile-cta > a svg,
.mobile-call svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.mobile-cta {
  display: block;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: 70ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 140ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: 210ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 280ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: translateY(0); transition-delay: 350ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 420ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: translateY(0); transition-delay: 490ms; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.light { color: rgba(250,246,238,0.7); }
.active { font-weight: 600; }

/* Flip: layout-only reversal, never scaleX */
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 640px) {
  .hero-title { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

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

@media (max-width: 1200px) {
  .timeline-track { grid-template-columns: repeat(2, 1fr); }
  .timeline-track::before { display: none; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.services-intro-left { grid-column: 1 / -1; }
.services-intro-right { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.about-text-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
