/* ============================================================
   TREE AMIGOS — premium hand-crafted site
   Austin's ISA certified arborist crew · since 2017
   ============================================================ */

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

:root {
  --ink: #0E0E0E;
  --ink-2: #1A1A1A;
  --ink-3: #242424;
  --line-dark: rgba(255,255,255,0.10);
  --line-light: rgba(14,14,14,0.10);
  --accent: #E8542C;
  --accent-bright: #FF6233;
  --accent-dark: #C9461F;
  --accent-tint: rgba(232,84,44,0.12);
  --canvas: #F8F4E9;
  --canvas-2: #ECE5D0;
  --surface: #FFFFFF;
  --sand: #E8DFCA;
  --text: #141414;
  --text-mid: #494949;
  --text-muted: #7A7670;
  --header-height: 96px;
  --max-w: 1440px;
  --max-w-tight: 1200px;
  --shadow-md: 0 24px 60px -24px rgba(0,0,0,0.4);
  --shadow-lg: 0 40px 100px -30px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 16.5px; line-height: 1.65; color: var(--text); background: var(--canvas); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: #fff; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Archivo Black', 'Archivo', sans-serif; line-height: 0.98; letter-spacing: -0.025em; color: var(--text); font-weight: 900; }
h1 { font-size: clamp(56px, 8.5vw, 156px); letter-spacing: -0.04em; line-height: 0.92; }
h2 { font-size: clamp(40px, 5.5vw, 92px); letter-spacing: -0.035em; line-height: 0.95; }
h3 { font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -0.02em; }
h4 { font-size: clamp(17px, 1.5vw, 22px); font-weight: 700; font-family: 'Archivo', sans-serif; letter-spacing: -0.01em; }

.italic-serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; letter-spacing: -0.01em; }
.display-mega { font-family: 'Archivo Black', sans-serif; font-size: clamp(80px, 14vw, 220px); line-height: 0.88; letter-spacing: -0.05em; }

.eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }
.eyebrow.dark { color: var(--ink); }
.eyebrow.dark::before { background: var(--ink); }
.eyebrow.no-bar::before { display: none; }
.lead { font-size: clamp(17px, 1.3vw, 21px); line-height: 1.6; color: var(--text-mid); max-width: 60ch; }
.lead-tight { font-size: 16.5px; line-height: 1.65; color: var(--text-mid); max-width: 50ch; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }
.container-tight { width: 100%; max-width: var(--max-w-tight); margin: 0 auto; padding: 0 36px; }
.section { padding: clamp(96px, 12vh, 180px) 0; }
.section-tight { padding: clamp(64px, 8vh, 112px) 0; }
.bg-cream { background: var(--canvas); }
.bg-surface { background: var(--surface); }
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: #E8E5DD; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  border-radius: 0;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.btn svg { width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(232,84,44,0.5); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.85); padding: 16px 30px; }
.btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 16px 30px; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); padding: 14px 0; border-radius: 0; border-bottom: 2px solid var(--accent); }
.btn-ghost:hover { color: var(--accent); }

/* ── Site header / nav ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.top-nav {
  display: flex; align-items: center; gap: 40px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 36px;
  height: var(--header-height);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 62px; width: auto; max-width: 220px; object-fit: contain; }
.nav-pages { display: flex; gap: 40px; margin-left: auto; }
.nav-pages a {
  font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.78);
  padding: 8px 0; position: relative; transition: color .15s ease;
}
.nav-pages a:hover { color: #fff; }
.nav-pages a.active { color: #fff; }
.nav-pages a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--accent);
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.92); font-family: 'Archivo', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  padding: 8px 0;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--accent); }
.nav-phone:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; background: var(--accent); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 12.5px;
  white-space: nowrap; transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-toggle { display: none; font-size: 30px; color: #fff; padding: 4px 8px; }

@media (max-width: 1100px) { .nav-pages { gap: 28px; } .nav-pages a { font-size: 12px; letter-spacing: 0.14em; } }
@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .nav-logo img { height: 44px; }
  .nav-pages {
    display: none; position: absolute; top: var(--header-height); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    padding: 16px 36px 28px; margin-left: 0;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; }
  .nav-pages a:last-child { border-bottom: 0; }
  .nav-phone .label { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex; align-items: flex-end;
  background: var(--ink); color: #fff;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.0) 45%, rgba(14,14,14,0.0) 100%),
    linear-gradient(180deg, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0.0) 25%, rgba(14,14,14,0.8) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) 36px clamp(56px, 9vh, 110px);
}
.hero-location {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  background: rgba(232,84,44,0.16); color: var(--accent-bright);
  border: 1.5px solid var(--accent);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-location svg { width: 14px; height: 14px; }
.hero-title { color: #fff; max-width: 18ch; margin-bottom: 28px; }
.hero-title .stack { display: block; }
.hero-title .accent { color: var(--accent); }
.hero-title .ital { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; letter-spacing: -0.02em; color: #fff; }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(17px, 1.3vw, 22px); line-height: 1.5;
  max-width: 58ch; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-meta {
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-meta-item { display: flex; align-items: center; gap: 14px; }
.hero-meta-item .num {
  font-family: 'Archivo Black', sans-serif; font-size: 38px; line-height: 1; color: #fff;
  letter-spacing: -0.03em;
}
.hero-meta-item .label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75);
  line-height: 1.3;
}
.hero-meta-item .label strong { display: block; color: #fff; font-weight: 700; font-size: 12.5px; margin-bottom: 2px; }

/* Marquee under hero */
.marquee {
  background: var(--accent);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--accent-dark);
}
.marquee-track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.01em; text-transform: uppercase; line-height: 1;
  display: flex; align-items: center; gap: 64px;
}
.marquee-item::after {
  content: '✦'; color: rgba(255,255,255,0.5); font-size: 0.7em;
}

/* ── Section head ───────────────────────────────────────────── */
.section-head { max-width: 820px; margin-bottom: clamp(56px, 7vh, 88px); }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 22px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ── Stats anchor strip ─────────────────────────────────────── */
.anchor-strip { background: var(--ink); color: #fff; padding: 80px 0; border-top: 1px solid var(--line-dark); }
.anchor-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 36px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.anchor-cell {
  padding: 0 36px;
  border-right: 1px solid var(--line-dark);
}
.anchor-cell:last-child { border-right: 0; }
.anchor-cell:first-child { padding-left: 0; }
.anchor-cell:last-child { padding-right: 0; }
.anchor-cell .big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 7vw, 96px); line-height: 0.92; letter-spacing: -0.04em;
  color: var(--accent); margin-bottom: 16px;
}
.anchor-cell .big sup { font-size: 0.4em; vertical-align: super; color: #fff; opacity: 0.6; margin-left: 4px; }
.anchor-cell .lbl {
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .anchor-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .anchor-cell { padding: 0 24px; border-bottom: 1px solid var(--line-dark); padding-bottom: 32px; }
  .anchor-cell:nth-child(2) { border-right: 0; }
  .anchor-cell:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}

/* ── Services bento ─────────────────────────────────────────── */
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: 480px 360px;
  gap: 18px;
}
.bento-card {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  transition: transform .3s ease;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.bento-card:hover .bento-card-bg { transform: scale(1.06); }
.bento-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,14,0.15) 0%, rgba(14,14,14,0.85) 100%);
}
.bento-card > * { position: relative; z-index: 2; }
.bento-card .num {
  font-family: 'Archivo Black', sans-serif; font-size: 36px; line-height: 1; letter-spacing: -0.03em;
  color: var(--accent); margin-bottom: auto;
}
.bento-card h3 { color: #fff; margin-bottom: 10px; }
.bento-card p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.bento-card .link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-bright); font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.bento-card .link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.bento-card:hover .link svg { transform: translateX(4px); }
.bento-card.feature { grid-column: span 3; grid-row: span 2; padding: 48px; }
.bento-card.feature .num { font-size: 56px; margin-bottom: auto; }
.bento-card.feature h3 { font-size: clamp(32px, 3vw, 46px); }
.bento-card.feature p { font-size: 17px; max-width: 44ch; }
.bento-card.wide { grid-column: span 3; }
.bento-card:not(.feature):not(.wide) { grid-column: span 2; }

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-template-rows: 420px 320px 320px 320px; }
  .bento-card.feature { grid-column: span 2; grid-row: span 2; }
  .bento-card.wide { grid-column: span 2; }
  .bento-card:not(.feature):not(.wide) { grid-column: span 2; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .bento-card { grid-column: 1 / -1 !important; min-height: 360px; }
  .bento-card.feature { min-height: 460px; }
}

/* ── Magazine-style about preview ───────────────────────────── */
.mag-feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.mag-stack { position: relative; aspect-ratio: 4/5; }
.mag-stack .photo {
  position: absolute; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mag-stack .photo img { width: 100%; height: 100%; object-fit: cover; }
.mag-stack .photo.a { top: 0; left: 0; width: 68%; height: 76%; z-index: 2; }
.mag-stack .photo.b { bottom: 0; right: 0; width: 56%; height: 60%; z-index: 1; }
.mag-stack::before {
  content: ''; position: absolute; top: 12%; right: 0; width: 70%; height: 70%;
  background: var(--accent); z-index: 0;
}
.mag-body .eyebrow { margin-bottom: 24px; }
.mag-body h2 { margin-bottom: 28px; }
.mag-body p { font-size: 18px; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; }
.mag-body p .italic-serif { color: var(--text); font-size: 1.05em; }
.mag-body-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.mag-pullquote {
  margin: 36px 0; padding: 28px 0 28px 28px;
  border-left: 4px solid var(--accent);
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.4; color: var(--text);
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .mag-feature { grid-template-columns: 1fr; gap: 48px; }
  .mag-stack { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
}

/* ── Process / approach ─────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { padding: 40px 32px 40px 0; border-right: 1px solid var(--line-light); position: relative; }
.process-step:last-child { border-right: 0; padding-right: 0; }
.process-step .stepnum {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9; letter-spacing: -0.05em;
  color: var(--ink); -webkit-text-stroke: 2px var(--ink); -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
}
.process-step:nth-child(odd) .stepnum { -webkit-text-fill-color: var(--accent); -webkit-text-stroke: 0; color: var(--accent); }
.process-step h4 { margin-bottom: 12px; font-size: 22px; }
.process-step p { color: var(--text-mid); font-size: 15px; line-height: 1.65; }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .process-step { border-right: 0; padding-right: 24px; }
  .process-step:nth-child(2n) { padding-right: 0; }
}
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } .process-step { padding-right: 0; } }

/* ── Why us (dark + icon grid) ──────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.why-item .icon-box {
  width: 64px; height: 64px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 26px;
}
.why-item .icon-box svg { width: 30px; height: 30px; }
.why-item h4 { color: #fff; margin-bottom: 14px; font-size: 22px; }
.why-item p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Gallery (asymmetric masonry) ───────────────────────────── */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 16px;
}
.gallery-cell { overflow: hidden; position: relative; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-cell:hover img { transform: scale(1.05); }
.gallery-cell.tall { grid-row: span 2; }
.gallery-cell.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .gallery-cell.tall { grid-row: span 1; grid-column: span 2; }
  .gallery-cell.wide { grid-column: span 2; }
}

/* ── Owners ─────────────────────────────────────────────────── */
.owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.owner-card {
  background: var(--surface); padding: 0; border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
}
.owner-photo { aspect-ratio: 4/3; overflow: hidden; }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.owner-body .role {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.owner-body h3 { font-size: 32px; margin-bottom: 8px; }
.owner-body .cred { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; color: var(--text-mid); margin-bottom: 18px; }
.owner-body p { color: var(--text-mid); font-size: 15.5px; line-height: 1.7; }
@media (max-width: 700px) { .owners-grid { grid-template-columns: 1fr; } }

/* ── Reviews wall ───────────────────────────────────────────── */
.reviews-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--surface); padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: '"'; position: absolute; top: 14px; right: 28px;
  font-family: 'Fraunces', serif; font-size: 100px; line-height: 1;
  color: var(--accent); opacity: 0.18;
}
.review-stars { display: flex; gap: 3px; color: var(--accent); }
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-text { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; line-height: 1.55; color: var(--text); flex: 1; }
.review-attrib { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-light); }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: 'Archivo Black', sans-serif; font-size: 15px; letter-spacing: -0.02em;
}
.review-attrib-text { font-size: 13px; color: var(--text-muted); }
.review-attrib-text strong {
  display: block; color: var(--text);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
@media (max-width: 1000px) { .reviews-wall { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .reviews-wall { grid-template-columns: 1fr; } }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding: clamp(80px, 12vh, 160px) 0;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('img-gallery-1.jpg') center/cover;
  opacity: 0.24;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.5) 100%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.cta-banner-body .eyebrow { color: var(--accent-bright); margin-bottom: 24px; }
.cta-banner-body h2 { color: #fff; margin-bottom: 24px; }
.cta-banner-body p { color: rgba(255,255,255,0.82); font-size: 19px; line-height: 1.55; max-width: 54ch; }
.cta-banner-call {
  background: var(--accent); color: #fff;
  padding: 44px;
  display: flex; flex-direction: column; gap: 16px;
}
.cta-banner-call .label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.cta-banner-call .phone-big {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(40px, 4vw, 56px);
  line-height: 1; letter-spacing: -0.02em; color: #fff;
}
.cta-banner-call .or { font-size: 12px; opacity: 0.85; letter-spacing: 0.12em; text-transform: uppercase; margin: 4px 0; }
.cta-banner-call .btn { background: #fff; color: var(--accent); align-self: flex-start; }
.cta-banner-call .btn:hover { background: var(--ink); color: #fff; box-shadow: 0 16px 40px -8px rgba(0,0,0,0.5); }
@media (max-width: 900px) { .cta-banner-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Feature row (services page) ────────────────────────────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-row.flip > .feature-photo { order: 2; }
.feature-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line-light); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo .tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--accent); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 16px;
}
.feature-body .eyebrow { margin-bottom: 22px; }
.feature-body h2 { margin-bottom: 24px; font-size: clamp(36px, 4.5vw, 64px); }
.feature-body p { color: var(--text-mid); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; color: var(--text-mid); line-height: 1.55; }
.feature-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.flip > .feature-photo { order: 0; }
}

/* ── Page header (sub-pages) ────────────────────────────────── */
.page-header {
  position: relative; overflow: hidden;
  min-height: 60vh; display: flex; align-items: flex-end;
  background: var(--ink); color: #fff;
}
.page-header .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-header .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,14,14,0.5) 0%, rgba(14,14,14,0.9) 100%); }
.page-header .container { position: relative; z-index: 2; padding-bottom: clamp(56px, 8vh, 96px); padding-top: clamp(56px, 8vh, 96px); }
.page-header .crumb {
  display: inline-flex; gap: 12px; align-items: center;
  font-family: 'Archivo', sans-serif; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 22px; font-weight: 700;
}
.page-header .crumb a { color: rgba(255,255,255,0.7); }
.page-header .crumb a:hover { color: var(--accent-bright); }
.page-header h1 { color: #fff; font-size: clamp(56px, 8vw, 132px); max-width: 18ch; margin-bottom: 22px; }
.page-header .lead { color: rgba(255,255,255,0.88); max-width: 60ch; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.contact-form { background: var(--surface); padding: 48px; border: 1px solid var(--line-light); }
.contact-form h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 12px; }
.contact-form .lead { font-size: 16px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted);
}
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit; font-size: 15px;
  padding: 16px 18px;
  background: var(--canvas); border: 1px solid var(--line-light); color: var(--text);
  transition: border-color .15s ease, background .15s ease;
  border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.contact-info { background: var(--ink); color: #fff; padding: 48px; }
.contact-info h3 { color: #fff; margin-bottom: 32px; font-size: 32px; }
.info-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.info-row:last-child { border-bottom: 0; }
.info-row .icon { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-row .label {
  display: block; font-family: 'Archivo', sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 6px; font-weight: 700;
}
.info-row a, .info-row .value { color: #fff; font-size: 16.5px; font-weight: 500; line-height: 1.5; font-family: 'Inter Tight', sans-serif; }
.info-row a:hover { color: var(--accent-bright); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-info { padding: 36px; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #050505; color: rgba(255,255,255,0.7); padding: 96px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.site-footer h5 {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 22px;
}
.site-footer a { color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color .15s ease; }
.site-footer a:hover { color: var(--accent-bright); }
.footer-brand img { height: 64px; width: auto; max-width: 220px; margin-bottom: 22px; filter: brightness(1.05); }
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 36ch; margin-bottom: 24px; }
.footer-brand .signoff {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 16px;
  color: var(--accent-bright); margin-top: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom {
  padding-top: 36px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: 'Archivo', sans-serif; font-size: 12px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Mobile call pill ───────────────────────────────────────── */
.mobile-call-pill {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 800;
  background: var(--accent); color: #fff;
  padding: 16px 22px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 20px 50px -10px rgba(232,84,44,0.6);
  align-items: center; gap: 10px;
}
.mobile-call-pill svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .mobile-call-pill { display: inline-flex; } }

/* ── Animations ─────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 90ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 180ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 270ms; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 450ms; }
.stagger.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 540ms; }
@media (prefers-reduced-motion: reduce) {
  .fade-up, .stagger > *, .hero-bg { opacity: 1; transform: none; transition: none; animation: none; }
}

/* ============================================================
   PRO-MODE ADDITIONS — scroll-progress, fixed bento, gallery,
   editorial moments, micro-interactions
   ============================================================ */

/* ── Scroll progress bar ────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: 3px; background: transparent; pointer-events: none;
}
.scroll-progress > div {
  height: 100%; width: 0; background: var(--accent);
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(232,84,44,0.6);
}

/* ── Bento card — actual <img> background pattern ───────────── */
.bento-card { position: relative; isolation: isolate; }
.bento-card > img.bento-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .8s ease, filter .6s ease;
}
.bento-card:hover > img.bento-bg { transform: scale(1.07); }
.bento-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,14,14,0.10) 0%, rgba(14,14,14,0.55) 55%, rgba(14,14,14,0.92) 100%);
}

/* ── Premium logo sizing ────────────────────────────────────── */
.nav-logo img.svg-logo { height: 72px; max-width: 280px; }
@media (max-width: 900px) { .nav-logo img.svg-logo { height: 50px; max-width: 200px; } }
.footer-brand img.svg-logo { height: 78px; max-width: 260px; }

/* ── Floating accent badge (next to hero CTAs) ──────────────── */
.hero-ribbon {
  position: absolute; top: 32px; right: 36px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Archivo', sans-serif; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-ribbon .dot { width: 8px; height: 8px; border-radius: 50%; background: #58D685; box-shadow: 0 0 8px #58D685; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@media (max-width: 700px) { .hero-ribbon { display: none; } }

/* ── Service-areas pill cloud ───────────────────────────────── */
.areas {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center;
}
.areas-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--surface); border: 1px solid var(--line-light);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; color: var(--ink);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.area-pill::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.area-pill:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.area-pill:hover::before { background: #fff; }
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; gap: 36px; } }

/* ── Gallery page filter pills + cards ──────────────────────── */
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.gallery-filter {
  padding: 12px 24px; background: var(--surface); border: 1px solid var(--line-light);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gallery-filter:hover, .gallery-filter.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.case-card {
  background: var(--surface); border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.case-card:hover .case-photo img { transform: scale(1.06); }
.case-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px;
}
.case-num {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-family: 'Archivo Black', sans-serif; font-size: 16px;
  letter-spacing: -0.02em;
  width: 38px; height: 38px;
  display: grid; place-items: center;
}
.case-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.case-body h3 { font-size: 22px; margin-bottom: 4px; }
.case-body .loc {
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.case-body .loc svg { width: 12px; height: 12px; }
.case-body p { color: var(--text-mid); font-size: 14.5px; line-height: 1.6; flex: 1; }
.case-body .meta {
  display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line-light);
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}
.case-body .meta strong { color: var(--text); font-weight: 700; }
@media (max-width: 1000px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .case-grid { grid-template-columns: 1fr; } }

/* ── Editorial blockquote moment ────────────────────────────── */
.editorial-quote {
  padding: clamp(72px, 10vh, 128px) 0;
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.editorial-quote::before {
  content: '"'; position: absolute;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: clamp(280px, 36vw, 480px); line-height: 0.8;
  color: var(--accent); opacity: 0.18;
  top: -10%; left: -2%;
}
.editorial-quote .container { position: relative; z-index: 1; max-width: 980px; text-align: center; }
.editorial-quote .q-text {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(28px, 4vw, 56px); line-height: 1.25;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 36px;
}
.editorial-quote .q-attrib {
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
}
.editorial-quote .q-attrib strong { display: block; color: #fff; font-family: 'Archivo Black', sans-serif; font-size: 15px; letter-spacing: -0.01em; text-transform: none; margin-bottom: 6px; }

/* ── Smooth count up — no flash ─────────────────────────────── */
.count[data-target]::before { content: attr(data-display); }
.count { font-variant-numeric: tabular-nums; }


/* 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; }
