/* ============================================================
   HOME ADDITIONS NoVA — v2 (Bright Editorial)
   Palette: warm cream + near-black + terracotta
   Type:    Instrument Serif (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #faf6ef;
  --bg-warm: #f3ede0;
  --surface: #ffffff;
  --surface-2: #f8f2e6;
  --ink: #1a1a1a;
  --ink-2: #4a453c;
  --ink-3: #7a7365;
  --ink-4: #a69d8c;
  --line: #e8dfc9;
  --line-2: #d6ccb3;
  --clay: #b85438;
  --clay-2: #d06a4a;
  --clay-3: #9a4128;
  --clay-soft: #f2ddd2;
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, system-ui, sans-serif;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--easing); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h4 { font-size: 1.3rem; letter-spacing: -0.01em; }

em { font-style: italic; color: var(--clay); font-weight: 400; }
p { color: var(--ink-2); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--clay); display: inline-block;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  font-weight: 300;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container, .container-narrow { padding: 0 24px; } }

section { padding: 130px 0; position: relative; }
@media (max-width: 900px) { section { padding: 80px 0; } }

/* TOPBAR */
.topbar {
  background: var(--ink); color: var(--bg);
  padding: 10px 0; font-size: 0.78rem; letter-spacing: 0.05em; text-align: center;
}
.topbar a { color: var(--clay-2); font-weight: 500; }
.topbar a:hover { color: var(--bg); }
.topbar .sep { margin: 0 14px; opacity: 0.3; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; max-width: 1400px; margin: 0 auto;
}
@media (max-width: 720px) { .header-inner { padding: 18px 24px; } }

.logo {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); font-size: 1.55rem;
  letter-spacing: -0.015em; color: var(--ink);
}
.logo em { color: var(--clay); }
.logo .mark {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.3em; color: var(--ink-3); text-transform: uppercase;
  align-self: center; padding-left: 12px; border-left: 1px solid var(--line-2); margin-left: 8px;
}

.nav { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav a { font-size: 0.9rem; font-weight: 400; color: var(--ink-2); }
.nav a:hover { color: var(--clay); }
.nav a.cta {
  padding: 11px 22px; background: var(--ink); color: var(--bg);
  border-radius: 100px; font-weight: 500; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem;
}
.nav a.cta:hover { background: var(--clay); color: var(--bg); }
.nav a.cta::before { content: '\260E'; font-size: 0.9rem; }

.mobile-toggle { display: none; background: transparent; border: 0; color: var(--ink); cursor: pointer; font-size: 1.5rem; }
@media (max-width: 900px) {
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: 320px;
    background: var(--surface); border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: 100px 40px 40px; transform: translateX(100%);
    transition: transform 0.5s var(--easing); gap: 24px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.2rem; color: var(--ink); }
  .nav a.cta { width: 100%; justify-content: center; font-size: 0.9rem; }
  .mobile-toggle { display: block; z-index: 102; position: relative; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px; background: var(--ink); color: var(--bg);
  font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 0; border-radius: 100px; cursor: pointer;
  transition: all 0.3s var(--easing);
}
.btn:hover { background: var(--clay); transform: translateY(-1px); }
.btn-phone::before { content: '\260E'; font-size: 1rem; }
.btn-clay { background: var(--clay); }
.btn-clay:hover { background: var(--clay-3); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-large { padding: 21px 40px; font-size: 0.92rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--clay); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: gap 0.3s var(--easing), color 0.3s var(--easing);
}
.arrow-link::after {
  content: '\2192'; font-size: 1rem;
  transition: transform 0.3s var(--easing);
}
.arrow-link:hover { gap: 16px; color: var(--clay-3); }
.arrow-link:hover::after { transform: translateX(4px); }

/* HERO */
.hero {
  min-height: 92vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 180px 0 100px; overflow: hidden; background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(250,246,239,0.1) 0%, rgba(250,246,239,0) 40%, rgba(250,246,239,0.85) 95%, rgba(250,246,239,1) 100%),
    linear-gradient(90deg, rgba(250,246,239,0.88) 0%, rgba(250,246,239,0.6) 45%, rgba(250,246,239,0.2) 70%, transparent 100%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 80px; align-items: end;
}
@media (max-width: 1040px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-copy { max-width: 780px; }
.hero h1 { margin: 28px 0 28px; }
.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--ink-2); max-width: 560px;
  margin-bottom: 40px; line-height: 1.55; font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding-top: 32px; border-top: 1px solid var(--line-2);
  max-width: 600px;
}
.hero-meta-item .num {
  display: block; font-family: var(--font-display); font-size: 2.8rem;
  color: var(--clay); line-height: 1; margin-bottom: 8px; font-style: italic;
}
.hero-meta-item .lab {
  font-size: 0.72rem; color: var(--ink-3);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}

.hero-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 4px; padding: 36px 32px;
  max-width: 380px; justify-self: end;
  box-shadow: 0 20px 60px -20px rgba(26, 26, 26, 0.18);
}
@media (max-width: 1040px) { .hero-card { justify-self: start; } }
.hero-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.hero-card p.sub {
  font-size: 0.85rem; color: var(--ink-3);
  letter-spacing: 0.04em; margin-bottom: 22px;
}
.hero-card ul { list-style: none; margin-bottom: 26px; border-top: 1px solid var(--line); }
.hero-card li {
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 0.88rem; color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.hero-card li::before { content: '\2014'; color: var(--clay); }
.hero-card .btn { width: 100%; justify-content: center; background: var(--clay); }
.hero-card .btn:hover { background: var(--clay-3); }

/* TRUST MARQUEE */
.trust-strip {
  background: var(--ink); color: var(--bg);
  padding: 26px 0; overflow: hidden;
}
.trust-track {
  display: flex; gap: 80px; white-space: nowrap;
  animation: marquee 40s linear infinite; width: fit-content;
}
.trust-track span {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--bg);
  font-style: italic; display: inline-flex; align-items: center; gap: 80px;
}
.trust-track span::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay-2); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION HEAD */
.section-head { margin-bottom: 72px; }
.section-head-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: end;
}
@media (max-width: 900px) { .section-head-grid { grid-template-columns: 1fr; gap: 24px; } }
.section-head h2 { margin-top: 24px; max-width: 14ch; }
.section-head p.lead { padding-bottom: 8px; }

/* GALLERY */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px; gap: 14px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}

.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--easing);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,26,26,0.75) 100%);
  pointer-events: none;
}
.gallery-item .cap {
  position: absolute; left: 22px; bottom: 18px; right: 22px;
  z-index: 2; color: var(--bg);
}
.gallery-item .cap em {
  display: block; font-size: 0.68rem; color: var(--clay-2);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-style: normal; margin-bottom: 6px;
  font-family: var(--font-body); font-weight: 500;
}
.gallery-item .cap .title {
  font-family: var(--font-display); font-size: 1.35rem;
  line-height: 1.1; color: var(--bg); letter-spacing: -0.01em;
}

.gallery-item.g-large { grid-column: span 3; grid-row: span 3; }
.gallery-item.g-wide  { grid-column: span 3; grid-row: span 2; }
.gallery-item.g-tall  { grid-column: span 2; grid-row: span 3; }
.gallery-item.g-med   { grid-column: span 2; grid-row: span 2; }
.gallery-item.g-sq    { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery-item.g-large, .gallery-item.g-wide, .gallery-item.g-tall,
  .gallery-item.g-med, .gallery-item.g-sq { grid-column: span 2; grid-row: span 1; }
}

/* SERVICES */
.services { background: var(--surface-2); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 1040px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  border-radius: 4px; background: var(--surface);
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(26,26,26,0.25);
}
.service img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--easing);
}
.service:hover img { transform: scale(1.08); }
.service::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26,26,26,0.92) 100%);
  pointer-events: none;
}
.service-inner {
  position: absolute; inset: 0; z-index: 2; padding: 26px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-num { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--clay-2); }
.service-content h3 {
  font-size: 1.65rem; line-height: 1.05;
  color: var(--bg); margin-bottom: 10px;
}
.service-content p {
  font-size: 0.85rem; color: rgba(250, 246, 239, 0.82);
  margin-bottom: 14px; line-height: 1.5;
}
.service .arrow-link { font-size: 0.7rem; color: var(--clay-2); }
.service .arrow-link:hover { color: var(--bg); }

/* SPLIT */
.split { background: var(--bg); }
.split-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 40px; } }

.split-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .badge {
  position: absolute; bottom: 24px; left: 24px;
  padding: 9px 16px; background: var(--bg); color: var(--ink);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; border-radius: 100px;
}
.split-image .badge em { color: var(--clay); font-style: normal; margin-right: 6px; }

.split-copy h2 { margin: 20px 0 28px; }
.split-copy p { margin-bottom: 18px; line-height: 1.7; }
.split-list {
  list-style: none; margin: 40px 0 32px;
  padding-top: 28px; border-top: 1px solid var(--line-2);
}
.split-list li {
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.split-list .n {
  font-family: var(--font-display); font-size: 1.45rem;
  color: var(--clay); font-style: italic;
}
.split-list h4 { margin-bottom: 6px; }
.split-list p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* PROCESS */
.process {
  background: var(--surface-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.p-step { border-top: 1px solid var(--line-2); padding-top: 28px; }
.p-step .n {
  font-family: var(--font-display); font-size: 3.4rem; font-style: italic;
  color: var(--clay); line-height: 1; margin-bottom: 16px; display: block;
}
.p-step h4 { margin-bottom: 10px; font-size: 1.2rem; }
.p-step p { font-size: 0.92rem; line-height: 1.6; color: var(--ink-2); }

/* LOCAL INTRO */
.local-intro { background: var(--bg); }
.local-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .local-grid { grid-template-columns: 1fr; gap: 40px; } }

.local-image {
  aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; position: relative;
}
.local-image img { width: 100%; height: 100%; object-fit: cover; }

.local-facts {
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line-2);
}
.local-facts dl { display: grid; gap: 0; }
.local-facts div {
  display: grid; grid-template-columns: 1fr 2fr; gap: 30px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.local-facts dt {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-3); font-weight: 500; padding-top: 2px;
}
.local-facts dd { color: var(--ink); font-size: 0.98rem; }

/* NEIGHBORHOODS */
.neighborhoods {
  background: var(--surface-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.neigh-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px;
}
.neigh {
  padding: 32px 28px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 4px;
  transition: all 0.4s var(--easing);
  position: relative; overflow: hidden;
}
.neigh::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--clay);
  transition: width 0.5s var(--easing);
}
.neigh:hover {
  border-color: var(--clay); transform: translateY(-4px);
  box-shadow: 0 12px 36px -12px rgba(184, 84, 56, 0.25);
}
.neigh:hover::before { width: 100%; }
.neigh h4 { font-size: 1.3rem; margin-bottom: 6px; }
.neigh .zip {
  display: block; font-family: var(--font-display); font-style: italic;
  color: var(--clay); font-size: 1rem; margin-bottom: 14px;
}
.neigh p { font-size: 0.9rem; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* TESTIMONIALS */
.testimonials { background: var(--bg); }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

.test {
  padding: 40px 32px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 4px;
  position: relative; transition: all 0.4s var(--easing);
}
.test:hover {
  border-color: var(--clay); transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(26,26,26,0.15);
}
.test::before {
  content: '\201C'; position: absolute; top: -8px; left: 28px;
  font-family: var(--font-display); font-size: 5.5rem;
  color: var(--clay); line-height: 1;
}
.test .stars { color: var(--clay); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.85rem; }
.test-quote {
  font-family: var(--font-display); font-size: 1.3rem;
  line-height: 1.35; margin-bottom: 32px; color: var(--ink);
}
.test-who { display: flex; gap: 14px; align-items: center; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clay); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
}
.test-name { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.test-loc { font-size: 0.8rem; color: var(--ink-3); }

/* AREAS */
.areas {
  background: var(--surface-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .areas-grid { grid-template-columns: 1fr; } }

.area {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 4px;
  transition: all 0.3s var(--easing);
  font-size: 0.95rem; color: var(--ink); font-weight: 400;
}
.area:hover {
  background: var(--ink); color: var(--bg);
  border-color: var(--ink); padding-left: 28px;
}
.area .arrow { color: var(--clay); font-size: 0.9rem; transition: transform 0.3s var(--easing); }
.area:hover .arrow { color: var(--clay-2); transform: translateX(4px); }

/* FAQ */
.faq { background: var(--bg); }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item:first-child { border-top: 1px solid var(--line-2); }
.faq-q {
  width: 100%; text-align: left; padding: 30px 0;
  background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--ink); letter-spacing: -0.01em;
}
.faq-q::after {
  content: '+'; font-family: var(--font-body); font-weight: 300;
  font-size: 2rem; color: var(--clay);
  transition: transform 0.4s var(--easing);
  flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--easing);
  font-size: 1.02rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 30px; }
.faq-a p { color: var(--ink-2); }

/* CTA BANNER */
.cta-banner { position: relative; overflow: hidden; padding: 170px 0; }
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.75) 100%);
}
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { color: var(--bg); margin: 24px auto 28px; max-width: 18ch; }
.cta-banner h2 em { color: var(--clay-2); }
.cta-banner .lead { color: rgba(250,246,239,0.88); margin: 0 auto 40px; }
.cta-banner .eyebrow { color: var(--clay-2); }
.cta-banner .eyebrow::before { background: var(--clay-2); }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-ghost { color: var(--bg); border-color: var(--bg); }
.cta-banner .btn-ghost:hover { background: var(--bg); color: var(--ink); }
.cta-phone {
  display: block; margin-top: 36px;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 5vw, 3.25rem); color: var(--clay-2);
  transition: color 0.3s var(--easing);
}
.cta-phone:hover { color: var(--bg); }

/* FOOTER */
.site-footer { background: var(--ink); color: var(--bg); padding: 100px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h5 {
  font-family: var(--font-body); font-size: 0.72rem;
  color: var(--clay-2); text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 500; margin-bottom: 22px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.site-footer a { color: rgba(250,246,239,0.72); font-size: 0.9rem; }
.site-footer a:hover { color: var(--clay-2); }

.footer-brand {
  font-family: var(--font-display); font-size: 1.85rem;
  color: var(--bg); margin-bottom: 16px; display: block;
}
.footer-brand em { color: var(--clay-2); }
.footer-about { color: rgba(250,246,239,0.72); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 360px; }
.site-footer .footer-phone {
  font-family: var(--font-display); font-size: 1.9rem;
  color: var(--clay-2); letter-spacing: -0.01em; font-style: italic;
  display: inline-block;
}
.site-footer .footer-phone:hover { color: var(--bg); }

.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(250,246,239,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.76rem; color: rgba(250,246,239,0.5); letter-spacing: 0.05em;
}

/* STICKY MOBILE CALL */
.sticky-call {
  display: none; position: fixed;
  bottom: 16px; left: 16px; right: 16px; padding: 16px;
  background: var(--clay); color: var(--bg);
  text-align: center; font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(184, 84, 56, 0.35); z-index: 99;
}
.sticky-call::before { content: '\260E '; font-size: 1rem; }
@media (max-width: 768px) { .sticky-call { display: block; } }

/* REVEAL */
.reveal { opacity: 1; transform: none; }
body.js-ready .reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--easing), transform 1s var(--easing); }
body.js-ready .reveal.visible { opacity: 1; transform: none; }

.text-center { text-align: center; }
.mt-lg { margin-top: 56px; }
