@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;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:        #034713;
  --primary-dark:   #022d0c;
  --primary-light:  #0a6b20;
  --accent:         #CCCCCC;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --surface-2:      #F2EDE3;
  --ink:            #1A1814;
  --ink-mid:        #3a3630;
  --muted:          #6B6660;
  --border:         rgba(26, 24, 20, 0.12);
  --border-strong:  rgba(26, 24, 20, 0.22);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:      0 24px 56px rgba(0,0,0,0.14);
  --radius:         8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-pad:    clamp(96px, 12vh, 160px);
  --content-max:    1280px;
  --wide-max:       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);
  -webkit-text-size-adjust: 100%;
}

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

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

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

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-booking-ribbon):not(.hero-accent-line) {
  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; 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; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.wide-container {
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,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;
  display: flex;
  align-items: center;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pages ul {
  list-style: none;
  display: flex;
  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;
  letter-spacing: 0.01em;
  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.90);
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 850;
    align-items: flex-start;
  }
  .nav-pages ul { flex-direction: column; gap: 4px; width: 100%; }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }

  .nav-toggle { display: flex; margin-left: auto; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; border-radius: 50%; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  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); line-height: 1.1; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h5 { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Inter Tight', sans-serif; }

p { line-height: 1.68; }

/* Eyebrow system — square bullet + mono-uppercase */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow-dim { color: rgba(250,246,238,0.55); }
.eyebrow-over { color: rgba(250,246,238,0.80); }
.eyebrow-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-ghost,
.btn-ghost-light,
.btn-outline,
.btn-outline-white,
.btn-phone,
.btn-white,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 16px 28px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 160ms, transform 160ms, box-shadow 160ms;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover { filter: brightness(0.88); transform: translateY(-1px); }

.btn-primary, .btn-submit {
  background: var(--primary);
  color: var(--canvas);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }

.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(250,246,238,0.45);
  color: var(--canvas);
}
.btn-ghost-light:hover { background: rgba(250,246,238,0.12); color: var(--canvas); text-decoration: none; }

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

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(250,246,238,0.6);
  color: var(--canvas);
}
.btn-outline-white:hover { background: rgba(250,246,238,0.15); color: var(--canvas); text-decoration: none; }

.btn-white {
  background: var(--surface);
  color: var(--primary);
}
.btn-white:hover { filter: brightness(0.94); }

.btn-phone {
  background: var(--primary);
  color: var(--canvas);
}
.btn-phone svg { width: 18px; height: 18px; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(3,71,19,0.15) 0%,
    rgba(10,20,15,0.35) 35%,
    rgba(5,15,8,0.72) 75%,
    rgba(3,10,5,0.85) 100%
  );
}

.hero-booking-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(3,71,19,0.85);
  backdrop-filter: blur(4px);
  padding: 10px clamp(20px,4vw,64px);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(250,246,238,0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

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

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,246,238,0.75);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-accent-line {
  position: absolute;
  left: clamp(20px,4vw,64px);
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary);
  opacity: 0.6;
  z-index: 2;
}

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

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(250,246,238,0.82);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 36px;
}

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

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.85);
  background: rgba(3,71,19,0.25);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .hero { min-height: 95vh; }
  .hero h1, .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas .btn-phone { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
}
.trust-pill-star {
  color: var(--primary);
  font-size: 13px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  max-height: 64px;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-strip: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(12px, 1.2vw, 15px);
  color: var(--ink-mid);
  line-height: 1.2;
}
.marquee-item span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 1px;
  opacity: 0.8;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.services-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.services-header {
  margin-bottom: 36px;
}
.services-header h2 { max-width: 20ch; }
.services-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 12px;
  line-height: 1.6;
}

/* Tab strip */
.services-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0;
}
.services-tabs-wrap::-webkit-scrollbar { display: none; }

.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 0;
}

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

/* Panels */
.services-panels-wrap {
  margin-top: 0;
}
.services-panels {
  position: relative;
  min-height: 480px;
}
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 480px;
}
.service-panel.active { display: grid; }

.service-panel-img,
.service-panel-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.service-panel-img img,
.service-panel-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.service-panel-body .eyebrow { margin-bottom: 0; }
.service-panel-body h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.service-panel-body p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.65;
  max-width: 50ch;
}
.service-panel-body a {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img,
  .service-panel-image { min-height: 260px; aspect-ratio: 16/9; position: relative; }
  .services-tabs { flex-wrap: wrap; }
}

/* ============================================================
   GALLERY (index.html)
   ============================================================ */
.gallery {
  padding-block: var(--section-pad);
  background: var(--surface-2);
}
.gallery .container { }
.gallery-header {
  margin-bottom: 40px;
}
.gallery-header h2 { max-width: 22ch; }

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

/* tall tile spans 2 rows */
.gallery-tile {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 400px;
}
.gallery-tile img,
.gallery-tile-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  max-height: none;
}
.gallery-tile:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: auto; aspect-ratio: 4/3; min-height: 0; }
}

/* ============================================================
   PHOTO BREAK — full-bleed mid-page
   ============================================================ */
.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 40vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-break > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  max-height: none;
}
.photo-break-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(3,71,19,0.55);
}
.photo-break-text {
  position: relative; z-index: 2;
  text-align: center;
  padding-inline: clamp(20px,6vw,80px);
  max-width: 700px;
}
.photo-break-text blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--canvas);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas,
.areas-section {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.service-areas-header,
.areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  margin-bottom: 40px;
}
.service-areas-header h2,
.areas-inner h2 { max-width: 24ch; margin-bottom: 12px; }
.service-areas-header p:not(.eyebrow),
.areas-inner p:not(.eyebrow):not(.section-sub) {
  color: var(--muted);
  max-width: 56ch;
}
.section-sub { color: var(--muted); font-size: 16px; max-width: 56ch; margin-top: 8px; }

.areas-cloud,
.area-pill-cloud {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  background: transparent;
  transition: background 180ms, color 180ms;
}
.area-pill:hover {
  background: var(--primary);
  color: var(--canvas);
  text-decoration: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--section-pad);
  background: var(--surface);
}
.faq .container,
.faq-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.faq-intro {
  margin-bottom: 48px;
  max-width: 60ch;
}
.faq-intro h2 { margin-bottom: 12px; }
.faq-list {
  max-width: 820px;
}

details {
  border-bottom: 1px solid var(--border);
}
details summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 220ms, color 150ms;
}
details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding-bottom: 22px;
  color: var(--ink-mid);
  line-height: 1.68;
  max-width: 72ch;
  font-size: 16px;
}
.faq-link { color: var(--primary); }

@media (max-width: 900px) {
  details summary { font-size: 15px; }
}

/* ============================================================
   TEAM CTA / CTA BANNER
   ============================================================ */
.team-cta {
  padding-block: clamp(64px,8vh,100px);
  background: var(--primary);
}
.team-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.team-cta-inner p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--canvas);
  line-height: 1.15;
  max-width: 52ch;
  letter-spacing: -0.02em;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  padding-block: clamp(80px,10vh,130px);
}
.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none;
  opacity: 0.22;
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cta-banner-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
}
.cta-banner-sub {
  color: rgba(250,246,238,0.78);
  font-size: 17px;
  max-width: 50ch;
  line-height: 1.6;
}
.cta-banner-text h2 { color: var(--canvas); max-width: 20ch; }
.cta-banner-text .section-eyebrow { color: rgba(250,246,238,0.65); }
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cta-free-note {
  display: block;
  font-size: 12px;
  color: rgba(250,246,238,0.55);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.cta-banner-phone {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px,3vw,40px);
  font-weight: 700;
  color: var(--canvas);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.contact-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  margin-top: 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-block h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: 'Inter Tight', sans-serif;
}
.contact-info-block a { color: var(--ink); font-weight: 500; }
.contact-info-block a:hover { color: var(--primary); }

/* Contact split (contact.html) */
.contact-split {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.contact-form-col,
.contact-info-col {
  padding-inline: clamp(20px,4vw,64px);
}
.contact-split > div,
.contact-split .container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
section#contact.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  padding-block: var(--section-pad);
}

.contact-form-col { padding-inline: 0; }
.contact-info-col { padding-inline: 0; }

.info-card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.info-card-cta-note {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px,2.2vw,28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.info-card-phone {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px,2.5vw,32px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
}
.info-card-phone:hover { text-decoration: underline; }

.info-divider {
  height: 1px;
  background: var(--border);
  margin-block: 20px;
}
.info-block { margin-bottom: 16px; }
.info-block-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.info-block p { font-size: 15px; color: var(--ink-mid); }
.info-block a { color: var(--ink); font-weight: 500; font-size: 15px; }
.info-block a:hover { color: var(--primary); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-top: 6px;
}
.hours-day { font-size: 14px; font-weight: 600; color: var(--ink-mid); }
.hours-time { font-size: 14px; color: var(--muted); }

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

/* ============================================================
   FORM
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 160ms, box-shadow 160ms;
  width: 100%;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3,71,19,0.10);
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.btn-submit {
  background: var(--primary);
  color: var(--canvas);
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 28px;
}
.btn-submit svg { width: 18px; height: 18px; }
.btn-submit:hover { filter: brightness(0.88); }

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.form-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 50ch;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px,35vh,440px);
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--primary-dark);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(3,71,19,0.25) 0%,
    rgba(5,15,8,0.7) 80%
  );
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 40px clamp(20px,4vw,64px) clamp(36px,5vh,60px);
}
.page-header-inner h1 {
  font-size: clamp(40px,6vw,88px);
  color: var(--canvas);
  max-width: 18ch;
}
.page-header-sub {
  color: rgba(250,246,238,0.75);
  font-size: 16px;
  margin-top: 10px;
}
.page-header-eyebrow { color: rgba(250,246,238,0.65); }
.page-header-accent {
  width: 40px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  margin-block: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.6);
  margin-bottom: 12px;
  text-decoration: none;
}
.breadcrumb a { color: rgba(250,246,238,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--canvas); text-decoration: none; }
.breadcrumb span { color: rgba(250,246,238,0.6); }

/* ============================================================
   ABOUT (about.html)
   ============================================================ */
.about-editorial {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.about-col {
  max-width: 70ch;
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.about-col h2 { margin-bottom: 24px; }
.about-body {
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.about-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 20px;
}
.about-hairline {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-top: 48px;
  position: relative;
}
.about-hairline::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 80px; height: 2px;
  background: var(--primary);
  margin-top: -0.5px;
}

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

/* Founder story */
.founder-story {
  padding-block: var(--section-pad);
  background: var(--surface-2);
}
.founder-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px,6vw,96px);
  align-items: center;
}
.founder-portrait-col {
  position: relative;
}
.founder-portrait-col > img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  filter: grayscale(20%);
}
.founder-portrait-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 70%; height: 70%;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.35;
}
.founder-text-col h2 { margin-bottom: 20px; }
.founder-body {
  font-size: 17px;
  line-height: 1.70;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.founder-pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px,2vw,24px);
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  line-height: 1.3;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-block: 24px;
  letter-spacing: -0.01em;
}
.founder-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.founder-text-col > div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; }
  .founder-portrait-col { max-width: 480px; }
}

/* Values */
.values-section {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.values-header {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  margin-bottom: 48px;
}
.values-headline { max-width: 20ch; }
.values-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14); }
.value-icon {
  width: 44px; height: 44px;
  background: rgba(3,71,19,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.value-icon svg { width: 22px; height: 22px; }
.value-title {
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.value-body { font-size: 15px; 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 {
  padding-block: var(--section-pad);
  background: var(--surface-2);
}
.journey-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.journey-headline { max-width: 20ch; }
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.journey-step {
  position: relative;
  padding-top: 12px;
}
.journey-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 16px;
  position: relative;
}
.journey-dot::after {
  content: '';
  position: absolute;
  left: 12px; top: 5px;
  width: calc(100% + 32px);
  height: 2px;
  background: var(--border);
}
.journey-step:last-child .journey-dot::after { display: none; }
.journey-step-content h3 {
  font-size: clamp(16px,1.4vw,20px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.journey-step-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-dot::after { display: none; }
}
@media (max-width: 640px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* Crew strip */
.crew-strip {
  padding-block: clamp(60px,8vh,100px);
  background: var(--primary);
}
.crew-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.crew-strip-inner .eyebrow { color: rgba(250,246,238,0.65); margin-bottom: 20px; }
.crew-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px,3.5vw,48px);
  font-weight: 700;
  color: var(--canvas);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 28ch;
}
.crew-tagline span { font-style: italic; }
.crew-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.crew-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(250,246,238,0.35);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.85);
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.gallery-section-header {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  margin-bottom: 40px;
}
.gallery-section-title { max-width: 22ch; }
.gallery-section-sub { color: var(--muted); max-width: 56ch; margin-top: 8px; }

.gallery-filters {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

/* Gallery cards (gallery.html) */
#galleryGrid.gallery-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

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

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.gallery-card-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(250,246,238,0.90);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.gallery-card-body {
  padding: 20px 24px 24px;
}
.gallery-card-body h3 {
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 14px; height: 14px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.gallery-card-meta {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.gallery-meta-item { display: flex; flex-direction: column; gap: 2px; }
.gallery-meta-val { font-size: 14px; font-weight: 600; color: var(--ink); }
.gallery-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted); }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer,
footer {
  background: var(--ink);
  color: var(--canvas);
  padding-top: clamp(64px,8vh,96px);
}
.footer-inner,
.container:last-child {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px,4vw,64px);
  padding-bottom: clamp(48px,6vh,80px);
  border-bottom: 1px solid rgba(250,246,238,0.1);
}
.footer-brand p { color: rgba(250,246,238,0.65); font-size: 14px; line-height: 1.65; max-width: 36ch; margin-top: 14px; }
.footer-brand-tagline { color: rgba(250,246,238,0.55); font-size: 13px; margin-top: 10px; font-style: italic; }
.footer-brand-desc { color: rgba(250,246,238,0.55); font-size: 13px; margin-top: 8px; }
.footer-tagline { font-style: italic; color: rgba(250,246,238,0.55); font-size: 13px; margin-top: 8px; }

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

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

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(250,246,238,0.40);
  margin-bottom: 3px;
}
.footer-contact-val { font-size: 14px; color: rgba(250,246,238,0.75); }
.footer-contact-val a { color: rgba(250,246,238,0.75); text-decoration: none; }
.footer-contact-val a:hover { color: var(--canvas); }
.footer-contact-links { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.footer-contact-links a { font-size: 13px; color: rgba(250,246,238,0.65); text-decoration: none; }
.footer-contact-links a:hover { color: var(--canvas); }

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  font-size: 13px;
  color: rgba(250,246,238,0.38);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(250,246,238,0.38); }

.footer-note { font-size: 12px; color: rgba(250,246,238,0.35); margin-top: 8px; font-style: italic; }
.footer-areas { font-size: 13px; color: rgba(250,246,238,0.55); line-height: 1.65; }

.footer-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(250,246,238,0.18);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,246,238,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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

.mobile-call,
.mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
}
.mobile-call a,
.mobile-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 160ms, transform 160ms;
}
.mobile-call a svg,
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-call a:hover,
.mobile-cta a:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
  color: var(--canvas);
  text-decoration: none;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms cubic-bezier(0.22,1,0.36,1), transform 620ms cubic-bezier(0.22,1,0.36,1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 620ms cubic-bezier(0.22,1,0.36,1), transform 620ms cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 620ms cubic-bezier(0.22,1,0.36,1), transform 620ms cubic-bezier(0.22,1,0.36,1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 580ms cubic-bezier(0.22,1,0.36,1), transform 580ms cubic-bezier(0.22,1,0.36,1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 540ms cubic-bezier(0.22,1,0.36,1), transform 540ms cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(n+7) { transition-delay: 480ms; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.section-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px,1vw,13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* Service areas inner containers (services.html) */
.service-areas-inner,
.areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px,4vw,64px);
}
.service-areas-inner h2,
.areas-inner h2 { margin-bottom: 12px; }

/* Table readable cells rule */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary);
  color: var(--canvas);
}

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

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

/* SVG caps in icon contexts */
.value-icon svg,
.journey-dot + div svg,
svg.faq-chevron { width: 20px; height: 20px; }
.gallery-card-location svg { width: 14px; height: 14px; }
.footer-social-link svg { width: 16px; height: 16px; }
.nav-cta svg { width: 16px; height: 16px; }
.btn svg, .btn-primary svg, .btn-phone svg, .btn-ghost svg { width: 18px; height: 18px; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.hours-day { grid-column: 1 / -1; }
.hours-time { 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; }
