/* ===========================================================
   CROWN COAST PAINTING — SITE STYLESHEET
   Built on the brand system: Cormorant Garamond + Jost,
   ivory / charcoal / champagne palette.
=========================================================== */

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

:root {
  --ivory: #FAFAF8;
  --ivory-deep: #F3EEE8;
  --ivory-mid: #EDE7DF;
  --charcoal: #1A1A17;
  --charcoal-mid: #3A3A35;
  --warm-gray: #6B6B60;
  --muted: #9A9A8E;
  --champagne: #C4A882;
  --champagne-dark: #A08660;
  --champagne-light: #DDD0BC;
  --border: #E4DDD3;
  --border-light: #EDE8E0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

/* ─── SKIP LINK / ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  z-index: 200;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--champagne-dark);
  outline-offset: 3px;
}

/* ─── NAV ─── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand-link { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo { height: 40px; width: auto; object-fit: contain; }
.nav-brand {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a[aria-current="page"] {
  color: var(--charcoal);
  border-bottom-color: var(--champagne);
}
.nav-cta {
  border: 1px solid var(--champagne-dark);
  padding: 0.7rem 1.5rem !important;
}
.nav-cta:hover { background: var(--champagne-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 22px; height: 1px; background: var(--charcoal); display: block; }

/* ─── PAGE HERO (internal pages) ─── */
.page-hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(196,168,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.1s;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}
.page-hero-title em { font-style: italic; color: var(--champagne-dark); }
.page-hero-sub {
  margin-top: 1.75rem;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ─── HERO (home) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(196,168,130,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo {
  width: 280px;
  max-width: 65vw;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.3s;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.6s;
}
.hero-headline em { font-style: italic; color: var(--champagne-dark); }
.hero-sub {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.9s;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--champagne);
  margin: 2.5rem auto 0;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 1.1s;
}
.hero-actions {
  margin-top: 2.75rem;
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 1.3s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.1rem 2.75rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.btn-primary:hover { background: var(--charcoal-mid); }
.btn-outline {
  border-color: var(--champagne-dark);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--champagne-light); }
.btn-ivory {
  border-color: rgba(196,168,130,0.5);
  color: var(--champagne-light);
}
.btn-ivory:hover { background: rgba(196,168,130,0.12); border-color: var(--champagne); }

/* ─── SECTIONS ─── */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--champagne);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--champagne-dark); }
.section-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.9;
  max-width: 580px;
}
.section-body.wide { max-width: 100%; }

/* ─── BANDS ─── */
.band-dark { background: var(--charcoal); color: var(--ivory); padding: 7rem 2rem; }
.band-ivory { background: var(--ivory-deep); padding: 7rem 2rem; }

/* ─── ORNAMENT ─── */
.ornament { display: flex; align-items: center; gap: 1.5rem; margin: 3rem 0 0; opacity: 0.4; }
.ornament-line { flex: 1; height: 1px; background: var(--champagne); }
.ornament-diamond { width: 5px; height: 5px; background: var(--champagne); transform: rotate(45deg); flex-shrink: 0; }

/* ─── INTRO LAYOUT ─── */
.intro-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.service-card {
  padding: 3rem 2.5rem;
  background: var(--ivory);
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--ivory-deep); }
.service-card.linked { display: block; text-decoration: none; color: inherit; }
.service-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.service-desc { font-size: 13px; font-weight: 300; color: var(--warm-gray); line-height: 1.8; }
.service-list { margin-top: 1.25rem; list-style: none; }
.service-list li {
  font-size: 12.5px;
  color: var(--warm-gray);
  padding: 0.55rem 0;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 0.6rem;
}
.service-list li::before { content: '—'; color: var(--champagne-dark); flex-shrink: 0; }

/* ─── PROCESS ─── */
.process-steps { margin-top: 4.5rem; display: grid; gap: 0; border-top: 1px solid rgba(196,168,130,0.3); }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(196,168,130,0.2);
  gap: 2rem;
  align-items: start;
}
.process-step.light { border-bottom-color: var(--border); }
.step-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: rgba(196,168,130,0.4); line-height: 1; padding-top: 0.25rem; }
.step-num.dark { color: rgba(160,134,96,0.35); }
.step-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.5rem; }
.step-title.dark { color: var(--charcoal); }
.step-desc { font-size: 13px; font-weight: 300; color: rgba(250,250,248,0.55); line-height: 1.85; }
.step-desc.dark { color: var(--warm-gray); }

/* ─── PILLARS ─── */
.pillars-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; }
.pillar { padding: 2rem 0; border-top: 1px solid var(--border); }
.pillar-word { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; font-style: italic; color: var(--charcoal); margin-bottom: 0.75rem; }
.pillar-desc { font-size: 12px; font-weight: 300; color: var(--warm-gray); line-height: 1.8; letter-spacing: 0.01em; }

/* ─── STATEMENT ─── */
.statement { text-align: center; padding: 9rem 2rem; background: var(--ivory-deep); }
.statement-quote { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.5; max-width: 780px; margin: 0 auto; }
.statement-attr { margin-top: 2.5rem; font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }

/* ─── AREAS ─── */
.areas-grid { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--border); }
.area-item { padding: 1.75rem 2.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); flex: 1; min-width: 180px; }
.area-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.25rem; }
.area-sub { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: var(--muted); }

/* ─── GALLERY / PROJECT CARDS ─── */
.gallery-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; background: var(--border); }
.gallery-card { background: var(--ivory); display: flex; flex-direction: column; }
.gallery-visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ivory-mid), var(--champagne-light) 130%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  overflow: hidden;
}
.gallery-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(26,26,23,0.035) 0 2px, transparent 2px 34px);
}
.gallery-tag {
  position: relative;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  background: rgba(250,250,248,0.85);
  padding: 0.5rem 0.9rem;
}
.gallery-body { padding: 1.75rem 2rem 2.25rem; }
.gallery-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.4rem; }
.gallery-meta { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.gallery-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.8; }
.gallery-note {
  margin-top: 3.5rem;
  border: 1px dashed var(--border);
  padding: 2rem 2.25rem;
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 680px;
}
.gallery-note strong { color: var(--charcoal); font-weight: 500; }

/* ─── PROJECT SHOWCASE (real photography) ─── */
.project-block { margin-bottom: 6.5rem; }
.project-block:last-child { margin-bottom: 0; }
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.project-name { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--charcoal); }
.project-meta { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--champagne-dark); margin-top: 0.5rem; }
.project-desc { font-size: 13.5px; color: var(--warm-gray); line-height: 1.85; max-width: 460px; text-align: right; }
@media (max-width: 700px) { .project-desc { text-align: left; } }

.project-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 6px;
}
.project-photos img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ivory-mid);
}
.project-photos a { display: block; overflow: hidden; }
.project-photos a:hover img { opacity: 0.92; }

/* span helpers */
.ph-wide { grid-column: span 4; grid-row: span 2; }
.ph-tall { grid-column: span 2; grid-row: span 2; }
.ph-std { grid-column: span 2; grid-row: span 1; }
.ph-half { grid-column: span 3; grid-row: span 1; }

@media (max-width: 700px) {
  .project-photos { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .ph-wide { grid-column: span 2; grid-row: span 2; }
  .ph-tall { grid-column: span 1; grid-row: span 2; }
  .ph-std, .ph-half { grid-column: span 1; grid-row: span 1; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(17,17,16,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 3rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: 1px solid rgba(250,250,248,0.4); color: var(--ivory);
  width: 42px; height: 42px; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--champagne); }
.lightbox-caption { position: absolute; bottom: 2.5rem; left: 0; right: 0; text-align: center; color: rgba(250,250,248,0.7); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── TESTIMONIALS ─── */
.testi-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.testi-card {}
.testi-quote { font-family: var(--serif); font-size: 1.25rem; font-style: italic; font-weight: 300; color: var(--charcoal); line-height: 1.6; }
.testi-quote.dark { color: var(--ivory); }
.testi-attr { margin-top: 1.25rem; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.testi-attr.dark { color: rgba(250,250,248,0.5); }

/* ─── STATS ─── */
.stats-row { margin-top: 4rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.stat-num { font-family: var(--serif); font-size: 2.75rem; font-weight: 300; color: var(--champagne-dark); }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* ─── FAQ ─── */
.faq-list { margin-top: 3.5rem; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 2rem 0; }
.faq-q { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.faq-a { font-size: 13.5px; color: var(--warm-gray); line-height: 1.85; max-width: 640px; }

/* ─── PALETTE / TYPE (about brand references, kept from original) ─── */
.palette-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1px; border: 1px solid var(--border); margin-top: 3.5rem; }
.swatch { padding: 2.5rem 1.5rem 1.5rem; }
.swatch-name { font-size: 10px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 1rem; opacity: 0.75; }
.swatch-hex { font-size: 11px; font-weight: 300; font-family: var(--sans); opacity: 0.5; margin-top: 0.25rem; }
.s-charcoal { background: #1A1A17; color: #FAF8F4; }
.s-champagne { background: #C4A882; color: #FAF8F4; }
.s-ivory-deep { background: #EDE7DF; color: #1A1A17; border: 1px solid #E4DDD3; }

/* ─── VALUES / CREDENTIALS ─── */
.values-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.value-card { border-top: 1px solid var(--champagne); padding-top: 1.75rem; }
.value-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.75rem; }
.value-desc { font-size: 13px; color: rgba(250,250,248,0.6); line-height: 1.85; }

.credential-row { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 3rem 4rem; }
.credential { display: flex; align-items: baseline; gap: 0.75rem; }
.credential-mark { font-family: var(--serif); font-style: italic; color: var(--champagne-dark); font-size: 1.1rem; }
.credential-label { font-size: 12.5px; color: var(--warm-gray); letter-spacing: 0.02em; }

/* ─── TEAM / FOUNDER ─── */
.founder-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.founder-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--ivory-mid), var(--champagne-light));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.founder-frame span { font-family: var(--serif); font-style: italic; color: var(--charcoal-mid); font-size: 1rem; opacity: 0.7; }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-list { margin-top: 3rem; }
.contact-info-item { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.contact-info-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne-dark); margin-bottom: 0.5rem; }
.contact-info-value { font-family: var(--serif); font-size: 1.3rem; color: var(--charcoal); }
.contact-info-value a { text-decoration: none; }
.contact-info-value a:hover { color: var(--champagne-dark); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--warm-gray); padding: 0.6rem 0; border-top: 1px solid var(--border-light); }
.hours-row span:last-child { color: var(--charcoal-mid); }

.form-field { margin-bottom: 1.75rem; }
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.7rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.75rem 0.1rem;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.25s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--champagne-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.form-submit { margin-top: 0.5rem; border: 1px solid var(--charcoal); background: var(--charcoal); color: var(--ivory); cursor: pointer; }
.form-submit:hover { background: var(--charcoal-mid); }
.form-note { margin-top: 1.25rem; font-size: 11.5px; color: var(--muted); line-height: 1.7; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--charcoal); padding: 7rem 2rem; text-align: center; }
.cta-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: var(--ivory); margin-bottom: 1.5rem; line-height: 1.2; }
.cta-sub { font-size: 12px; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--champagne); margin-bottom: 3rem; }

/* ─── FOOTER ─── */
footer.site-footer {
  background: #111110;
  color: rgba(250,250,248,0.35);
  padding: 4rem 3rem 2.5rem;
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,250,248,0.1);
}
.footer-brand-block { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.footer-logo { height: 34px; width: auto; object-fit: contain; }
.footer-brand-name { color: rgba(250,250,248,0.75); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-desc { font-size: 12.5px; line-height: 1.9; max-width: 260px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,250,248,0.5); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 12.5px; color: rgba(250,250,248,0.55); text-decoration: none; margin-bottom: 0.85rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--champagne-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .intro-layout, .contact-layout, .founder-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 1rem 1.5rem; }
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--ivory); flex-direction: column; align-items: flex-start; padding: 2.5rem; gap: 2rem; transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .service-card { padding: 2rem 1.5rem; }
  section, .page-hero { padding: 5rem 1.5rem; }
  .page-hero { padding-top: 8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .credential-row { gap: 1.5rem 2.5rem; }
}
