/* ============================================================
   BRONCO PAINTING — Design System
   Premium + Bold: dark hero · burnt gold · serif headlines
   ============================================================ */

:root {
  /* Palette */
  --ink: #0E1116;
  --ink-soft: #1A1D24;
  --ink-line: rgba(255,255,255,0.08);
  --cream: #F8F5EF;
  --cream-warm: #F1EBE0;
  --cream-soft: #FBF9F4;
  --gold: #B4894C;
  --gold-dark: #8E6A38;
  --gold-soft: #D4B584;
  --rust: #9C4528;
  --line: rgba(14,17,22,0.10);
  --shadow: 0 30px 80px -30px rgba(14,17,22,0.35);
  --shadow-lift: 0 60px 120px -40px rgba(14,17,22,0.45);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 144px;

  --container: 1280px;
  --container-narrow: 960px;

  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }
h4 { font-size: 1.375rem; font-weight: 500; letter-spacing: -0.01em; }

p { max-width: 65ch; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--ink); }

/* Eyebrow / kicker text */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.eyebrow.on-dark { color: var(--gold-soft); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark a { color: var(--gold-soft); }

.section-warm { background: var(--cream-warm); }
.section-soft { background: var(--cream-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(180, 137, 76, 0.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-arrow::after {
  content: "→";
  font-size: 1.125rem;
  transition: transform 250ms ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 700px) { .nav-inner { height: 88px; } }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  height: 88px;
  width: auto;
  display: block;
  max-width: 340px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .nav-logo-img { height: 64px; max-width: 240px; }
}

.nav-brand-text {
  /* Hide text label when image logo loads — uncomment to show alongside */
  display: none;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  max-width: 260px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  transition: all 200ms ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Promo banner */
.promo-bar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 12px 32px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.promo-bar strong { color: var(--gold-soft); font-weight: 600; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 88px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: var(--space-xl) 0;
}

.hero-copy { padding: var(--space-md) 0; }

.hero-title {
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(248, 245, 239, 0.75);
  margin-bottom: var(--space-md);
  max-width: 50ch;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.hero-image-badge strong { color: var(--gold); font-family: var(--font-display); font-weight: 500; font-size: 1.125rem; letter-spacing: 0; text-transform: none; display: block; }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  .hero-image { aspect-ratio: 4/3; max-width: 600px; }
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--ink-line);
  padding: var(--space-md) 0;
  background: var(--ink);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.6);
}

@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

/* Section headers */
.section-head {
  margin-bottom: var(--space-lg);
  max-width: var(--container-narrow);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(14,17,22,0.7);
  margin-top: var(--space-sm);
}
.section-dark .section-head .lead { color: rgba(248, 245, 239, 0.7); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms ease, border-color 300ms ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(180, 137, 76, 0.06) 100%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-soft);
}
.service-card:hover::before {
  opacity: 1;
}

/* Refined reveal stagger — children of the same parent reveal sequentially */
.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.service-card h3 { margin-bottom: 12px; }
.service-card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.service-card ul {
  list-style: none;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}
.service-card li {
  padding: 8px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card li::before {
  content: "—";
  color: var(--gold);
  font-weight: 600;
}
.service-card .feature {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

/* Before / After component (side-by-side, legacy) */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}
.ba-pair .ba-side { position: relative; aspect-ratio: 4/3; }
.ba-pair .ba-side img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ba-pair .ba-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14,17,22,0.9);
  color: var(--cream);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.ba-pair .ba-tag.after {
  background: var(--gold);
  color: var(--ink);
}

/* Before / After SLIDER — drag-to-reveal premium component */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider .ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, var(--ba-pos, 50%) 0, var(--ba-pos, 50%) 100%, 0 100%);
  transition: clip-path 80ms ease-out;
}

.ba-slider.dragging .ba-after-wrap {
  transition: none;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 3px;
  background: var(--cream);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(14,17,22,0.15), 0 4px 20px rgba(14,17,22,0.4);
  pointer-events: none;
  z-index: 2;
}

.ba-slider .ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px -8px rgba(14,17,22,0.5);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-slider:hover .ba-handle-knob {
  transform: translate(-50%, -50%) scale(1.08);
}

.ba-slider .ba-handle-knob::before,
.ba-slider .ba-handle-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateY(-50%);
}
.ba-slider .ba-handle-knob::before {
  left: 12px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.ba-slider .ba-handle-knob::after {
  right: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ba-slider .ba-tag {
  position: absolute;
  top: 18px;
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  z-index: 3;
  transition: opacity 200ms ease;
}
.ba-slider .ba-tag.before {
  left: 18px;
  background: rgba(14,17,22,0.85);
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ba-slider .ba-tag.after {
  right: 18px;
  background: var(--gold);
  color: var(--ink);
}

.ba-slider .ba-meta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 80px;
  z-index: 3;
  background: rgba(14,17,22,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--cream);
  pointer-events: none;
}
.ba-slider .ba-meta-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.ba-slider .ba-meta-sub {
  font-size: 0.8125rem;
  color: rgba(248,245,239,0.75);
}

.ba-slider .ba-hint {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(14,17,22,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0.85;
  animation: ba-pulse 2.4s ease-in-out infinite;
}
@keyframes ba-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-4px); }
}

.ba-slider.has-interacted .ba-hint {
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms;
}

@media (max-width: 700px) {
  .ba-slider { aspect-ratio: 4/3; }
  .ba-slider .ba-handle-knob { width: 48px; height: 48px; }
  .ba-slider .ba-meta { right: 18px; bottom: 12px; padding: 10px 12px; }
  .ba-slider .ba-meta-title { font-size: 0.9375rem; }
  .ba-slider .ba-hint { display: none; }
}

/* Story / pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 24ch;
}
.section-dark .pull-quote { color: var(--cream); }

.pull-quote em {
  font-style: italic;
  color: var(--gold);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.two-col-asym {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-lg);
  align-items: center;
}
.two-col-asym.flipped {
  grid-template-columns: 7fr 5fr;
}

.col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.col-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .two-col, .two-col-asym, .two-col-asym.flipped { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.review {
  background: var(--cream-soft);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}
.review-text {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.review-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.review-loc {
  font-size: 0.8125rem;
  color: rgba(14,17,22,0.6);
}

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

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.step {
  position: relative;
  padding-top: 32px;
}
.step-num {
  position: absolute;
  top: -8px;
  left: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.step h4 { margin-bottom: 8px; padding-top: 16px; }
.step p { font-size: 0.9375rem; color: rgba(14,17,22,0.7); }
.section-dark .step p { color: rgba(248,245,239,0.7); }

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

/* CTA section */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: var(--space-2xl) 32px;
}
.cta-band .pull-quote { color: var(--cream); margin: 0 auto var(--space-md); }

/* Video showcase */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.video-card video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--ink);
}
.video-card-caption {
  padding: 16px 18px;
  background: var(--ink);
  color: var(--cream);
}
.video-card-caption .label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 4px;
}
.video-card-caption h4 {
  color: var(--cream);
  font-size: 1.125rem;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card video { aspect-ratio: 16/9; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: visible;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 200ms ease;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* About page hero */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.about-hero-copy {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-image { position: relative; overflow: hidden; }
.about-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image { aspect-ratio: 4/3; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-sm);
}
.footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}
.footer ul { list-style: none; }
.footer li { padding: 6px 0; font-size: 0.9375rem; }
.footer a { color: rgba(248,245,239,0.7); }
.footer a:hover { color: var(--gold); }
.footer p { font-size: 0.9375rem; color: rgba(248,245,239,0.7); }
.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(248,245,239,0.5);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* Smooth reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
