/* ══════════════════════════════════════════
   Digital Surplus — Shared Stylesheet
   /digital.css
══════════════════════════════════════════ */


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

:root {
  --black: #111110;
  --white: #f5f4f0;
  --grey: #1e1e1c;
  --mid: #2e2e2b;
  --muted: #888784;
  --accent: #caf291;
  --accent2: #4f6ef7;
  --ink: #f5f4f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--ink);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: top 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-wrap.hidden { top: -90px !important; }

nav {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.nav-wrap.scrolled {
  top: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-wrap.scrolled nav {
  pointer-events: all;
  width: 820px;
  max-width: calc(100vw - 40px);
  background: #2e2e2b;
  border: none;
  border-radius: 10px;
  padding: 0 8px 0 28px;
  height: 54px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.nav-wrap.scrolled .nav-logo { color: var(--ink); }
.nav-wrap.scrolled .nav-logo span { color: var(--accent); }
.nav-wrap.scrolled .nav-center a { color: var(--muted); }
.nav-wrap.scrolled .nav-center a:hover { color: var(--ink); }
.nav-wrap.scrolled .nav-back { display: none; }
/* scrolled always wins over light-hero */
.nav-wrap.scrolled.light-hero .nav-logo { color: var(--ink); }
.nav-wrap.scrolled.light-hero .nav-logo span { color: var(--accent); }
.nav-wrap.scrolled.light-hero .nav-center a { color: var(--muted); }
.nav-wrap.scrolled.light-hero .nav-back { display: none; }


.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); transition: color 0.35s;
}
.nav-logo span { color: var(--accent); transition: color 0.35s; }

.nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 40px;
}
.nav-center a {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.nav-center a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-back {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted); transition: color 0.2s;
}
.nav-back:hover { color: var(--ink); }

.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 10px 22px; border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #caf291; }


/* ── NAV LIGHT HERO (use on dark/colored hero pages) ── */
.nav-wrap.light-hero .nav-logo { color: var(--ink); }
.nav-wrap.light-hero .nav-logo span { color: var(--accent); }
.nav-wrap.light-hero .nav-center a { color: rgba(255,255,255,0.75); }
.nav-wrap.light-hero .nav-center a:hover { color: #fff; }
.nav-wrap.light-hero .nav-back { color: rgba(255,255,255,0.65); }
.nav-wrap.light-hero .nav-back:hover { color: #fff; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--black); border-top: 1px solid #222; padding: 40px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-logo span { color: var(--accent); }
.footer-center { text-align: center; }
.footer-center a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.07em;
  border-bottom: 1px solid #333; padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-center a:hover { color: var(--ink); border-color: var(--muted); }
.footer-right { display: flex; gap: 24px; justify-content: flex-end; }
.footer-right a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.07em; transition: color 0.2s; white-space: nowrap;
}
.footer-right a:hover { color: var(--ink); }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ══════════════════════════════════════════
   INDEX PAGE
══════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-block;
  background: var(--mid); color: var(--muted);
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px; border-radius: 10px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 40px; margin-top: 40px;
}
.hero h1 em { font-style: normal; color: var(--accent); display: block; }

.hero-sub {
  font-size: 18px; font-weight: 400;
  color: var(--muted); max-width: 560px;
  margin: 0 auto 48px; line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; align-items: center; }

.btn-primary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }

.btn-results {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 36px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-results:hover { background: #b8e87a; transform: translateY(-2px); }

.btn-outline {
  border: 1px solid #333; color: var(--muted);
  padding: 16px 36px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* ── WHITE SECTION ───────────────────────────────── */
.white-section {
  background: var(--white); color: var(--black);
  padding: 120px 48px;
}

.ws-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #999;
  margin-bottom: 24px;
}

.ws-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--black); margin-bottom: 60px;
  max-width: 800px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #111110; border-radius: 24px;
  padding: 36px 32px; color: var(--ink);
  display: flex; flex-direction: column;
  gap: 16px;
}

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; color: var(--muted);
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  text-transform: uppercase; line-height: 1.1; color: var(--ink);
}
.service-desc {
  font-size: 14px; font-weight: 400;
  color: var(--muted); line-height: 1.65; flex: 1;
}
.service-tag {
  display: inline-block; background: var(--mid);
  color: var(--muted); font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 10px; align-self: flex-start;
}

/* ── WORK SHOWCASE ───────────────────────────────── */
.work-section {
  background: var(--black);
  padding: 160px 0;
}
.work-header {
  max-width: 900px; margin: 0 auto;
  padding: 0 48px; margin-bottom: 100px;
  text-align: center;
}
.work-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
}
.work-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 24px;
}
.work-title span { color: var(--accent); }
.work-sub {
  font-size: 17px; color: var(--muted);
  max-width: 480px; line-height: 1.7;
  margin: 0 auto;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 0;
  max-width: 1440px; margin: 0 auto;
  padding: 0 80px;
  align-items: start;
}
.work-col { display: flex; flex-direction: column; gap: 100px; }
.work-col:last-child { margin-top: 160px; }
.work-tile {
  background: transparent;
}
.work-placeholder {
  width: 100%;
  background: #1a1a18;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #242422;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.work-placeholder::after {
  content: '';
}

.work-img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}
.work-img--tall   { aspect-ratio: 3/4; min-height: 520px; }
.work-img--wide   { aspect-ratio: 4/3; min-height: 420px; }
.work-img--square { aspect-ratio: 1/1; }
.work-img--top    { object-position: 70% center; }

.work-meta {
  padding: 24px 4px 0;
}
.work-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900; text-transform: uppercase;
  color: var(--ink); line-height: 1.1;
  margin-bottom: 10px;
}
.work-desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.65; max-width: 400px;
}
@media (max-width: 1100px) and (min-width: 640px) {
  .work-grid { column-gap: 24px; padding: 0 32px; }
  .work-col:last-child { margin-top: 60px; }
}
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .work-col:last-child { margin-top: 0; }
  .work-header { padding: 0 24px; }
  .work-placeholder { min-height: auto !important; }
}
/* ── RESULTS ─────────────────────────────────────── *
.results-section {
  background: var(--white); color: var(--black);
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.results-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; color: var(--black); margin-bottom: 28px;
}
.results-left p { font-size: 17px; line-height: 1.75; color: #555; margin-bottom: 40px; }
.results-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--black); border-radius: 20px; padding: 32px 28px; color: var(--ink); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; line-height: 1.5; }

/* ── COLOR BLOCKS ────────────────────────────────── */
.color-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.color-block {
  padding: 80px 60px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.color-block-1 { background: var(--grey); }
.color-block-2 { background: var(--accent2); }
.color-block-3 { background: var(--accent); }
.color-block-4 { background: var(--mid); }

.block-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3); margin-bottom: 24px;
}
.color-block-3 .block-num { color: rgba(0,0,0,0.35); }

.block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: 0.01em;
  color: var(--ink); margin-bottom: 20px;
}
.color-block-3 .block-title { color: var(--black); }

.block-desc {
  font-size: 16px; font-weight: 400;
  line-height: 1.65; color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.color-block-3 .block-desc { color: rgba(0,0,0,0.55); }
    
/* ── CTA ─────────────────────────────────────────── */
.cta-section {
  background: #1a1a1a; padding: 120px 48px;
  text-align: center; border-top: 1px solid #2a2a28;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; color: var(--ink); margin-bottom: 36px;
}
.cta-section p {
  font-size: 18px; color: var(--muted);
  max-width: 480px; margin: 0 auto 48px; line-height: 1.7;
}
.btn-cta {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 18px 44px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }

/* underline word */
.underline-word { position: relative; display: inline-block; }
.word-underline {
  position: absolute; bottom: -12px; left: 0;
  width: 100%; height: auto; pointer-events: none;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  
  
  .hero {
  padding-top: 64px; padding: 80px 24px 60px; }
  .color-blocks { grid-template-columns: 1fr; }
  .white-section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .statement { padding: 100px 24px; }
  .results-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .results-right { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 80px 24px; }
  
  
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}


/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */

/* PAGE HEADER */
.page-header {
  background: #4f6ef7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #3d5de0;
  padding-top: 64px;
}
.page-header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 6px;
  align-self: flex-start;
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 900; text-transform: uppercase; line-height: 0.93;
  color: var(--ink);
}
.page-header h1 span { color: var(--accent); }
.page-header p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 420px; line-height: 1.75; }

.page-header-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-img-main {
  position: relative;
  width: 620px;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-sub {
  position: absolute; bottom: -30px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.1);
  border: 4px solid #4f6ef7;
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
}
.hero-img-sub img { width: 100%; height: 100%; object-fit: cover; }


.underline-word { position: relative; display: inline-block; }
.word-underline {
  position: absolute; bottom: -14px; left: 0;
  width: 100%; height: auto; pointer-events: none;
}

/* SERVICE SECTIONS */
.service-section {
  padding: 100px 0;
}
.service-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
@media (max-width: 1500px) { .service-section-inner { padding: 0 60px; } }
@media (max-width: 900px) { .service-section-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; } }

#s-leads { background: var(--dark); color: var(--ink); }
#s-web   { background: var(--white); color: var(--black); }
#s-seo   { background: var(--dark); color: var(--ink); }
#s-auto  { background: var(--white); color: var(--black); }

#s-leads .s-num, #s-seo .s-num { color: rgba(255,255,255,0.1); }
#s-leads .s-label, #s-seo .s-label { color: var(--muted); }
#s-leads .s-title, #s-seo .s-title { color: var(--ink); }
#s-leads .s-body, #s-seo .s-body { color: var(--muted); }
#s-leads .s-bullets li, #s-seo .s-bullets li { color: var(--muted); }
#s-web .s-num, #s-auto .s-num { color: rgba(0,0,0,0.07); }
#s-web .s-label, #s-auto .s-label { color: #999; }
#s-web .s-title, #s-auto .s-title { color: var(--black); }
#s-web .s-body, #s-auto .s-body { color: #555; }
#s-web .s-bullets li, #s-auto .s-bullets li { color: #666; }

/* Alternate image side — light sections flip visual left */
#s-web .s-visual, #s-auto .s-visual { order: -1; }

.s-content { display: flex; flex-direction: column; gap: 20px; }

.s-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px; font-weight: 900; line-height: 1;
  color: rgba(0,0,0,0.07); letter-spacing: -0.03em;
  margin-bottom: -16px;
}

.s-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #999;
}

.s-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
  color: var(--black);
}

.s-body { font-size: 17px; line-height: 1.75; color: #555; max-width: 440px; }

.s-bullets { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.s-bullets li {
  font-size: 15px; color: #666;
  padding-left: 20px; position: relative; line-height: 1.55;
}
.s-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }



.btn-dark-sm {
  display: inline-block;
  align-self: flex-start;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-dark-sm:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.btn-accent-sm {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--black);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  align-self: flex-start; transition: background 0.2s, transform 0.2s;
}
.btn-accent-sm:hover { background: #caf291; transform: translateY(-2px); }

/* VISUAL BLOCKS */
.s-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s-visual-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.s-visual-icon {
  font-size: 80px;
  opacity: 0.18;
  position: absolute;
}

.s-visual-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 1; opacity: 0.08;
  position: absolute;
  color: var(--ink);
}

/* Visual backgrounds */
#s-leads .s-visual { background: linear-gradient(135deg, #1a1d35 0%, #0e1124 100%); }
#s-web .s-visual   { background: linear-gradient(135deg, #1e2818 0%, #0f1a0c 100%); }
#s-seo .s-visual   { background: linear-gradient(135deg, #1a1d35 0%, #0a0c28 100%); }
#s-auto .s-visual  { background: linear-gradient(135deg, #1c1430 0%, #0e0820 100%); }

.visual-glow {
  position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  filter: blur(60px); opacity: 0.3;
}
#s-leads .visual-glow { background: #4f6ef7; top: 20%; left: 30%; }
#s-web .visual-glow   { background: var(--accent); top: 20%; left: 30%; }
#s-seo .visual-glow   { background: #4f52e8; top: 20%; left: 30%; }
#s-auto .visual-glow  { background: #8040c0; top: 20%; left: 30%; }

/* CTA STRIP */
.cta-strip {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900; text-transform: uppercase; line-height: 0.92;
  color: var(--ink); margin-bottom: 24px;
}
.cta-strip p { font-size: 18px; color: var(--muted); max-width: 440px; margin: 0 auto 44px; line-height: 1.7; }
.btn-dark-lg {
  display: inline-flex; align-items: center; gap: 12px;
  align-self: flex-start;
  background: var(--ink); color: var(--black);
  padding: 18px 42px; border-radius: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-dark-lg:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }




/* REVEAL */


.rd1 { transition-delay: 0.12s; }
.rd2 { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .page-header { padding-top: 64px; padding: 60px 0; min-height: auto; }
  .page-header > .container { grid-template-columns: 1fr !important; }
  .page-header-right { height: auto; }
  .hero-img-main { width: 100%; height: auto; }
  .hero-img-sub { width: 140px; height: 140px; bottom: -16px; left: -16px; }
  .service-section { padding: 60px 0; }
  .service-section:nth-child(even) .s-visual { order: 0; }
  .s-visual { aspect-ratio: 16/9; }
  .cta-strip { padding: 80px 0; }
}
@media (max-width: 640px) {
  .hero-img-main { border-radius: 14px; }
  .hero-img-sub { width: 100px; height: 100px; bottom: -12px; left: -12px; border-radius: 10px; }
  .page-header-grid { gap: 32px; }
}

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  width: 100%;
}
@media (max-width: 1300px) {
  .container { padding: 0 48px; }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
}

/* Nav hide/show on scroll */


/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  width: 100%;
}
@media (max-width: 1300px) { .container { padding: 0 48px; } }
@media (max-width: 900px)  { .container { padding: 0 24px; } }

/* ── CONTACT MAIN ────────────────────────────────── */
.contact-main {
  background: var(--black);
  padding: 184px 0 140px;
  min-height: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 0;
}

/* LEFT */
.contact-left { display: flex; flex-direction: column; gap: 0; }

.contact-tag {
  display: inline-block;
  background: transparent;
  border: 2px solid #333;
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 6px;
  margin-bottom: 28px; align-self: flex-start;
}

.contact-left h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.88; letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
}

.contact-left h1 span { color: var(--accent); }

.contact-left p {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 400px;
  margin-bottom: 56px;
}

.contact-info-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.info-col { display: flex; flex-direction: column; gap: 8px; }

.info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}

.info-val {
  font-size: 15px; color: var(--muted);
  border-bottom: 1px solid #333; padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.info-val:hover { color: var(--ink); border-color: var(--muted); }
.info-val--static { cursor: default; pointer-events: none; }

/* RIGHT — FORM */
.contact-right { padding-top: 8px; }

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}

input, textarea, select {
  background: var(--mid);
  border: 1px solid #3a3a37;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px; color: var(--ink);
  outline: none; width: 100%;
  transition: border-color 0.2s;
  resize: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: #444; }
input:focus, textarea:focus, select:focus { border-color: #555; }
textarea { height: 140px; }

.form-submit-row {
  display: flex; align-items: center;
  gap: 24px; margin-top: 8px;
}

.submit-btn {
  margin-top: 16px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 17px 40px;
  border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.submit-btn:hover { background: #caf291; transform: translateY(-2px); }

.form-note {
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.form-note a { color: var(--muted); border-bottom: 1px solid #444; padding-bottom: 1px; }
.form-note a:hover { color: var(--ink); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section {
  background: var(--black);
  padding: 160px 0 140px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left { display: flex; flex-direction: column; gap: 24px; }

.faq-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; color: var(--ink);
}

.faq-left p {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 360px;
}

.faq-review-btn {
  display: inline-block;
  border: 2px solid #333;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}
.faq-review-btn:hover { border-color: var(--accent); color: var(--accent); }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-top: 1px solid #222;
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid #222; }

.faq-question {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  gap: 20px;
  text-align: left;
}

.faq-q-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); line-height: 1.2;
}

.faq-icon {
  font-size: 22px; color: var(--accent);
  font-weight: 300; flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px; color: var(--muted); line-height: 1.7;
}


/* ── CONTACT RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .contact-main { padding: 100px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-left h1 { font-size: clamp(52px, 12vw, 80px); }
  .contact-left p { margin-bottom: 32px; }
  .contact-info-row { gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .contact-main { padding: 90px 0 40px; }
  .contact-grid { gap: 36px; }
  .contact-info-row { flex-direction: column; gap: 20px; }
  .submit-btn { width: 100%; text-align: center; }
}

/* Nav hide/show on scroll */

/* ── GLOBAL RESPONSIVE ───────────────────────────── */
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
    gap: 16px;
  }
  .footer-right { justify-content: center; }
  .footer-center { display: block; }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-center { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
}
/* ── SERVICES HERO BUTTON ────────────────────────── */
.btn-hero {
  display: inline-block;
  align-self: flex-start;
  background: #ffffff;
  color: #111110;
  border: none;
  padding: 16px 36px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-hero:hover { background: var(--accent); transform: translateY(-2px); }

/* ── GRAIN ───────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 700 700' width='700' height='700'%3E%3Cdefs%3E%3Cfilter id='nnnoise-filter' x='-20%25' y='-20%25' width='140%25' height='140%25' filterUnits='objectBoundingBox' primitiveUnits='userSpaceOnUse' color-interpolation-filters='linearRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.153' numOctaves='4' seed='15' stitchTiles='stitch' x='0%25' y='0%25' width='100%25' height='100%25' result='turbulence'%3E%3C/feTurbulence%3E%3CfeSpecularLighting surfaceScale='13' specularConstant='0.6' specularExponent='20' lighting-color='%23ffffff' x='0%25' y='0%25' width='100%25' height='100%25' in='turbulence' result='specularLighting'%3E%3CfeDistantLight azimuth='3' elevation='96'%3E%3C/feDistantLight%3E%3C/feSpecularLighting%3E%3C/filter%3E%3C/defs%3E%3Crect width='700' height='700' fill='%23000000'%3E%3C/rect%3E%3Crect width='700' height='700' fill='%23ffffff' filter='url(%23nnnoise-filter)'%3E%3C/rect%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 700px 700px;
  mix-blend-mode: soft-light;
}

/* ── PAGE HEADER GRID ────────────────────────────── */
.page-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 64px);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 900px) {
  .page-header-grid { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
}

/* ── SERVICE VISUAL IMAGE ────────────────────────── */
.s-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
