/* ============================================================
   RFCP Custom Painting — design system
   Dark "gallery" theme keyed to the RFCP logo:
   safety-yellow + teal on near-black charcoal, off-white ink.
   The finished rooms are colorful — the canvas stays dark so the
   work is the star. Shared across index / work / contact.
   ============================================================ */

:root {
  /* Surfaces — dark, gallery-like */
  --bg:          #0e1013;   /* near-black charcoal */
  --surface:     #16191f;   /* cards */
  --surface-2:   #181c23;   /* alt sections */
  --surface-3:   #1f242c;   /* deeper panels */

  /* Brand (from logo: yellow bucket+brush, teal tagline) */
  --yellow:        #f4d11a;
  --yellow-bright: #ffe24a;
  --yellow-deep:   #d9b400;
  --teal:          #5fd0c8;
  --teal-deep:     #36b3aa;

  /* Ink — strictly legible on dark */
  --ink:        #f3f4f1;
  --ink-soft:   rgba(243, 244, 241, .74);
  --ink-faint:  rgba(243, 244, 241, .54);
  --line:       rgba(255, 255, 255, .10);
  --line-2:     rgba(255, 255, 255, .18);
  --yellow-dim: color-mix(in srgb, var(--yellow) 16%, transparent);
  --teal-dim:   color-mix(in srgb, var(--teal) 14%, transparent);

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --section-pad: clamp(72px, 10vw, 130px);
  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1200px;
  --shadow:      0 24px 60px -28px rgba(0, 0, 0, .8);
  --shadow-sm:   0 12px 30px -18px rgba(0, 0, 0, .7);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: pointer; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* Hide native cursor only once JS confirms the custom cursor is live. */
@media (hover: hover) and (pointer: fine) {
  html.has-cursor body,
  html.has-cursor a,
  html.has-cursor button { cursor: none; }
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor ---------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.has-cursor .cursor {
    position: fixed; top: 0; left: 0; width: 42px; height: 42px;
    margin: -21px 0 0 -21px; border: 1.6px solid var(--teal);
    border-radius: 50%; pointer-events: none; z-index: 10000; display: block; opacity: .85;
  }
  html.has-cursor .cursor-dot {
    position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    margin: -3px 0 0 -3px; background: var(--yellow); border-radius: 50%;
    pointer-events: none; z-index: 10001; display: block;
  }
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
section { padding: var(--section-pad) 0; position: relative; }
.tint { background: var(--surface-2); }
.sand { background: var(--surface-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 800;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal);
}
.eyebrow::before { content: '✦'; color: var(--yellow); }
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -.015em; color: var(--ink); }
.section-head { max-width: 740px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(30px, 4.6vw, 56px); margin: .8rem 0 1rem; }
.section-head p { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-soft); max-width: 640px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.hl { color: var(--yellow); position: relative; white-space: nowrap; }
.hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .12em;
  background: var(--yellow); opacity: .35; border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 800; font-size: 1rem;
  padding: .92rem 1.7rem; border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
  will-change: transform;
}
.btn-primary { background: var(--yellow); color: #0e1013; box-shadow: 0 10px 30px -12px var(--yellow-deep); }
.btn-primary:hover { transform: translateY(-2px); background: var(--yellow-bright); box-shadow: 0 16px 40px -14px var(--yellow-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.6px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #06201d; box-shadow: var(--shadow-sm); }
.btn-teal:hover { transform: translateY(-2px); background: #76ddd4; }
.btn-dark { background: #0e1013; color: var(--ink); border: 1.6px solid var(--line-2); }
.btn-dark:hover { transform: translateY(-2px); border-color: var(--yellow); }
.btn-text { font-weight: 800; color: var(--teal); display: inline-flex; gap: .4rem; align-items: center; }
.btn-text::after { content: '→'; transition: transform .3s; }
.btn-text:hover::after { transform: translateX(5px); }
.btn .ar { transition: transform .3s; }
.btn:hover .ar { transform: translateX(4px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(20px, 5vw, 48px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding-top: .7rem; padding-bottom: .7rem;
}
.nav-brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.24rem; letter-spacing: .02em; line-height: 1; color: var(--ink); }
.brand-name b { color: var(--yellow); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 700; font-size: .94rem; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav .btn { padding: .62rem 1.3rem; font-size: .92rem; }
.nav-phone { font-weight: 800; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.nav-phone:hover { color: var(--teal); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: .3s; }

@media (max-width: 940px) {
  .nav-links, .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); padding: 1.6rem clamp(20px,5vw,48px) 2rem;
    box-shadow: var(--shadow); border-top: 1px solid var(--line);
  }
  .nav.open .nav-links a { font-size: 1.1rem; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
}

/* ============================================================
   HERO — copy + interactive before/after
   ============================================================ */
.hero { padding-top: clamp(118px, 17vh, 176px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(2rem, 5vw, 4.4rem); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(42px, 6.2vw, 80px); margin: 1.2rem 0 1.3rem; }
.hero-sub { font-size: clamp(17px, 1.45vw, 20px); color: var(--ink-soft); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; color: var(--ink-faint); font-weight: 700; font-size: .86rem; }
.hero-trust b { color: var(--ink); }
.hero-trust .tk { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust .tk::before { content: '★'; color: var(--yellow); }

.hero-visual { position: relative; }
.hero-visual .ba-frame { aspect-ratio: 4/5; }
.hero-stamp {
  position: absolute; top: -14px; right: -10px; z-index: 4; background: var(--yellow); color: #0e1013;
  font-weight: 800; font-size: .78rem; letter-spacing: .03em; padding: .5rem .9rem;
  border-radius: 100px; box-shadow: var(--shadow-sm); transform: rotate(4deg);
}

/* ticker */
.tagline-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--surface-2); }
.ticker { display: flex; gap: 2.6rem; width: max-content; padding: .95rem 0; animation: ticker 34s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker span { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); white-space: nowrap; }
.ticker .dot { color: var(--yellow); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   BEFORE / AFTER SLIDER (reusable: hero + gallery)
   ============================================================ */
.ba { position: relative; }
.ba-frame {
  position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow);
  background: var(--surface-2); user-select: none; -webkit-user-select: none;
  cursor: ew-resize; touch-action: pan-y; border: 1px solid var(--line);
}
.ba-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: block; -webkit-user-drag: none; pointer-events: none;
}
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); will-change: clip-path; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: var(--yellow); transform: translateX(-1.5px); pointer-events: none; z-index: 2;
  box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}
.ba-handle {
  position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--yellow); color: #0e1013;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.45);
  cursor: ew-resize; touch-action: none; z-index: 3; font-size: 1.1rem; line-height: 1;
}
.ba-handle::before { content: '⟺'; font-weight: 900; }
.ba-handle:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.ba-tag {
  position: absolute; bottom: 14px; z-index: 2;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .66rem; border-radius: 100px; color: #fff;
  background: rgba(14,16,19,.66); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; color: #0e1013; background: color-mix(in srgb, var(--yellow) 90%, transparent); }
.ba-cap { margin-top: 1rem; color: var(--ink-soft); font-size: .96rem; }
.ba-cap b { color: var(--ink); font-weight: 800; }

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.2rem); }
.ba-grid .ba-frame { aspect-ratio: 4/3; }

/* ============================================================
   FILTER TABS + WORK GALLERY
   ============================================================ */
.tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.tab {
  padding: .52rem 1.15rem; border-radius: 100px; border: 1.5px solid var(--line-2);
  color: var(--ink-soft); font-weight: 700; font-size: .9rem; transition: .2s;
}
.tab:hover { color: var(--ink); border-color: var(--teal); }
.tab.active { background: var(--yellow); color: #0e1013; border-color: var(--yellow); }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.shot {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface-2);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 4/3;
  transition: transform .35s ease, box-shadow .35s ease;
}
.shot.tall { aspect-ratio: 3/4; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.shot:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.1rem .9rem;
  background: linear-gradient(to top, rgba(8,9,11,.86), transparent);
  color: #fff; font-weight: 700; font-size: .94rem;
}
.shot .cat {
  position: absolute; top: 12px; left: 12px; font-size: .66rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: #0e1013; background: var(--yellow);
  padding: .26rem .6rem; border-radius: 100px;
}
.shot.hide { display: none; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.stat { text-align: center; padding: 1.4rem 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--display); font-weight: 600; font-size: clamp(36px, 4.6vw, 58px); color: var(--yellow); line-height: 1; }
.stat .lbl { font-size: .9rem; color: var(--ink-soft); font-weight: 700; margin-top: .6rem; }

/* ============================================================
   SERVICES (icon tiles)
   ============================================================ */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.6rem); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  display: flex; flex-direction: column; height: 100%;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--teal) 40%, transparent); }
.tile .ic {
  width: 50px; height: 50px; border-radius: 13px; background: var(--yellow-dim); color: var(--yellow);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.tile.alt .ic { background: var(--teal-dim); color: var(--teal); }
.tile h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.tile p { color: var(--ink-soft); font-size: .94rem; }

/* feature split (process / about) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; border: 1px solid var(--line); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(28px, 4vw, 48px); margin: .9rem 0 1.2rem; }
.split-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.split-copy .quote { font-family: var(--display); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); color: var(--ink); line-height: 1.3; border-left: 3px solid var(--yellow); padding-left: 1.2rem; margin: 1.4rem 0; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.step .n { font-family: var(--display); font-size: 2.6rem; color: var(--teal); line-height: 1; }
.step h3 { font-size: 1.24rem; margin: .5rem 0 .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 1.8rem); }
.qcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s; }
.qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.qcard .stars { color: var(--yellow); letter-spacing: .12em; margin-bottom: .9rem; }
.qcard blockquote { font-size: 1.02rem; line-height: 1.62; color: var(--ink); font-style: italic; margin-bottom: 1.1rem; }
.qcard .who { display: flex; align-items: center; gap: .8rem; }
.qcard .who .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-dim); color: var(--teal); font-weight: 800; font-family: var(--display); }
.qcard .who b { font-family: var(--display); color: var(--ink); font-weight: 600; }
.qcard .who span { display: block; font-size: .82rem; color: var(--ink-faint); font-weight: 700; }

/* service area */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.area-list span { background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-soft); font-weight: 700; font-size: .88rem; padding: .45rem .9rem; border-radius: 100px; }
.licenses { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.6rem; }
.lic { display: flex; align-items: center; gap: .6rem; color: var(--ink-soft); font-weight: 700; font-size: .9rem; }
.lic b { color: var(--yellow); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  background: linear-gradient(135deg, #1b1f26 0%, #0e1013 100%);
  border: 1px solid var(--line-2); text-align: center; border-radius: clamp(20px, 4vw, 32px);
  padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 64px); position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: -30%;
  background: radial-gradient(circle at 22% 26%, color-mix(in srgb, var(--yellow) 22%, transparent), transparent 52%),
              radial-gradient(circle at 82% 80%, color-mix(in srgb, var(--teal) 20%, transparent), transparent 52%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { font-size: clamp(30px, 5vw, 60px); margin-bottom: 1rem; }
.cta p { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 19px); max-width: 580px; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding-top: clamp(130px, 20vh, 188px); padding-bottom: clamp(36px, 6vw, 64px); text-align: center; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px, 6vw, 72px); margin: 1rem auto .9rem; max-width: 18ch; }
.page-hero p { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 20px); max-width: 640px; margin: 0 auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 800; font-size: .88rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line-2); border-radius: 12px; padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.field textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .84rem; color: var(--ink-faint); margin-top: .4rem; }
.form-status { margin-top: 1rem; font-weight: 700; display: none; }
.form-status.ok { display: block; color: var(--teal); }
.form-status.err { display: block; color: #ff8a6b; }

.info-card { background: linear-gradient(135deg, #1b1f26, #14171c); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.1rem; }
.info-row .em { font-size: 1.1rem; color: var(--yellow); width: 1.4rem; text-align: center; }
.info-row a, .info-row span { color: var(--ink-soft); }
.info-row a:hover { color: var(--teal); }
.info-row b { color: var(--ink); }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-weight: 800; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--yellow); color: #0e1013; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a0c0e; color: var(--ink-soft); padding: clamp(48px, 6vw, 70px) 0 2rem; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.6rem; }
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 34ch; color: var(--ink-faint); }
.footer h4 { color: var(--ink); font-family: var(--body); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links a { display: block; padding: .32rem 0; color: var(--ink-soft); font-weight: 600; font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .84rem; color: var(--ink-faint); }
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   REVEAL — failsafe: visible unless JS marks ready
   ============================================================ */
html.js-ready .reveal { opacity: 0; }
html.js-ready .hero-anim { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .grid.cols-3, .grid.cols-4, .quotes, .steps, .split, .contact-grid, .area, .ba-grid, .shots { grid-template-columns: 1fr 1fr; }
  .split.flip .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid.cols-3, .grid.cols-4, .grid.cols-2, .quotes, .steps, .split, .contact-grid, .area, .stats, .ba-grid, .shots { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
  .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html.js-ready .reveal, html.js-ready .hero-anim { opacity: 1 !important; }
}
