/* =======================================================
   BLACKOUT SOLUTIONS — Stylesheet
   ======================================================= */

/* ----- Design tokens ----- */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;

  --surface: #ffffff;
  --surface-alt: #f6f5f2;
  --surface-alt-2: #eeece5;

  --line: #e6e3dc;
  --line-dark: #000000;

  --gold: #c9a349;
  --gold-2: #d9b661;
  --gold-muted: #8a7030;

  --font-display: "League Spartan", "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-accent: "Raleway", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.30);

  --shadow-sm-light: 0 1px 2px rgba(55, 55, 55, 0.3), 0 2px 4px rgba(55, 55, 55, 0.3);
  --shadow-md-light: 0 4px 8px rgba(55, 55, 55, 0.3), 0 8px 24px rgba(55, 55, 55, 0.3);
  --shadow-xl-light: 0 20px 60px rgba(55, 55, 55, 0.3);

  --container: 1200px;
  --pad: clamp(20px, 4vw, 48px);

  --hero-h: min(100vh, 900px);

  --text: #0a0a0a;
  --text-2: #1a1a1a;
  --text-3: #565656;
  --text-muted: #6b6b6b;

  --text-strong: var(--text);
  --text-muted: var(--text-3);
}

/* ----- Text Theme Modifiers ----- */
.text-light {
  --text: rgba(255,255,255,0.85);
  --text-strong: rgba(255,255,255,0.96);
  --text-muted: rgba(255,255,255,0.65);
  color: var(--text);
}

.text-dark {
  --text: #0a0a0a;
  --text-2: #1a1a1a;
  --text-3: #3d3d3d;
  --text-muted: #6b6b6b;
  color: var(--text);
}

.text-muted { 
  color: var(--text-muted); 
}

.text-light { 
  color: rgba(255,255,255,0.8); 
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, object { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding-left: 0; list-style-position: inside; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
p, li {
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.6rem); font-weight: 900; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-muted);
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--gold-2); }

/* ----- Layout ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.section-head h2 { 
  margin-bottom: 18px; 
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.service-detail,
.about,
.contact {
  color: var(--text);
}

/* ----- Header / Nav ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.90);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.nav-cta):hover { color: var(--gold-2); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-2);
  transition: width .28s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--text) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  transition: background-color .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: var(--hero-h);
  background: var(--bg);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,163,73,0.09), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(201,163,73,0.05), transparent 45%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  z-index: 2;
}
.hero-mark {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 60%;
  max-width: 900px;
  opacity: 0.05;
  transform: translateY(-50%) rotate(-3deg);
  pointer-events: none;
  z-index: 1;
}
.hero-logo-svg {
  width: 100%;
  filter: brightness(0) invert(1);
}

.hero-headline {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp .95s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
}
.hero-headline .line-1 { animation-delay: 0.15s; color: rgba(255,255,255,0.95); }
.hero-headline .line-2 { animation-delay: 0.35s; color: rgba(255,255,255,0.95); }
.hero-headline .line-3 { animation-delay: 0.55s; color: #fff; }
.hero-headline em {
  font-style: normal;
  color: var(--gold-2);
  position: relative;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  position: relative;
  z-index: 2;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 0.8s forwards;
}
.hero-ctas {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.0s forwards;
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.2s forwards;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid;
  border-radius: 12px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.4s forwards;
}
.hero-scroll-light {
  position: absolute;
  border-color: rgba(255, 255, 255, 0.4)
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid;
  border-radius: 12px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.4s forwards;
}
.hero-scroll-dark {
  position: absolute;
  border-color: rgba(0, 0, 0, 0.4);
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid;
  border-radius: 12px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.4s forwards;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--gold-2);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--text);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,163,73,0.30);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.30);
}
.btn-ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}
.btn-inline {
  margin-top: 36px;
}
.btn-full {
  width: 100%;
  margin-bottom: 15px;
}

/* ----- Services overview ----- */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--surface-alt);
  position: relative;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  padding: 48px 36px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,163,73,0.25);
}
.service-card:hover::before { 
  transform: scaleX(1); 
}
.service-card-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-card-body {
  text-align: left;
  text-justify: inter-word;
  font-size: 0.9rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-strong);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
  margin-top: auto;
}
.service-card:hover .service-card-link {
  color: var(--gold-muted);
  border-color: var(--gold);
  gap: 12px;
}

/* ----- Service detail sections ----- */
.service-detail {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.service-detail-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,163,73,0.07), transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(201,163,73,0.04), transparent 45%);
}
.service-detail-dark {
  background: var(--bg);
  --text: rgb(255, 255, 255);
  --text-strong: rgba(255, 255, 255, 0.96);
  --text-muted: rgba(255,255,255,0.60);
  --border: rgba(255,255,255,0.10);
}
.service-detail-light {
  background: var(--surface);
  --text: var(--text);
  --text-strong: var(--text);
  --text-muted: var(--text-muted);
  --border: var(--line);
}
.service-detail-dark .container { 
  position: relative; 
  z-index: 2; 
}
.service-header {
  max-width: 900px;
  margin-bottom: 72px;
}
.service-header h2 { 
  margin-bottom: 22px;
}
.service-detail p,
.service-detail li {
  color: var(--text);
}
.service-detail h1,
.service-detail h2,
.service-detail h3,
.service-detail h4,
.service-detail h5 {
  color: var(--text);
}
.service-detail .section-intro,
.service-detail .subtle {
  color: var(--text-muted);
}

/* Junk layout */
.junk-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.junk-content ol.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.numbered-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
}
.numbered-list li {
  position: relative;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  counter-increment: step;
}
.numbered-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--gold-muted);
  letter-spacing: 0.04em;
}
.numbered-list li:last-child { border-bottom: 0; }
.numbered-list li strong {
  display: block;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.price-card {
  background: var(--surface-alt);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  color: var(--text-2)
  transition: border-color .3s ease, transform .3s ease;
}
.price-card-featured {
  background: var(--gold);
  border: 1px solid var(--line-dark);
  color: var(--text-strong)
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.price-card * {
  color: inherit;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.price-label {
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-2);
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--text-2);
}
.price-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* badge */
.price-card-featured::before {
  content: 'Most common';
  position: absolute;
  top: -11px;
  right: 14px;
  background: var(--surface-alt);
  font-family: var(--font-accent);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  color: var(--text-2);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}

.check-list, 
.cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .cross-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.check-list li:last-child, .cross-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.cross-list li::before,
.cross-list li::after {
  content: '';
  position: absolute;
  left: 0px; top: 23px;
  width: 14px; height: 2px;
  background: #8a3a3a;
}
.cross-list li::before { transform: rotate(45deg); }
.cross-list li::after  { transform: rotate(-45deg); }

.check-list-light li {
  border-bottom-color: rgba(255,255,255,0.06);
}
.check-list-light li::before {
  border-color: var(--gold-2);
}

.junk-media {
  position: sticky;
  top: 110px;
}
.junk-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md-light);
}
.quote-card {
  background: var(--surface-alt);
  padding: 36px 32px 32px;
  color: var(--text)
  margin-top: -60px;
  margin-left: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  bottom: 20px;
  box-shadow: var(--shadow-xl-light);
  max-width: 320px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  position: absolute;
  top: 24px; left: 20px;
  font-weight: 900;
}
.quote-card p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 32px 0 0;
  position: relative;
  z-index: 2;
}

.quote-card-dark {
  background: var(--bg-alt);
  padding: 36px 32px 32px;
  color: var(--text)
  margin-top: -60px;
  margin-left: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  bottom: 20px;
  box-shadow: var(--shadow-xl);
  max-width: 320px;
}
.quote-mark-dark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  position: absolute;
  top: 24px; left: 20px;
  font-weight: 900;
}
.quote-card-dark p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 32px 0 0;
  position: relative;
  z-index: 2;
}

/* Hotshot layout */
.hotshot-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.hotshot-media {
  position: sticky;
  top: 110px;
}
.hotshot-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.info-notice {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(201,163,73,0.08);
  border: 1px solid rgba(201,163,73,0.25);
  border-radius: var(--radius-lg);
  margin: 28px 0;
  color: var(--text);
}
.info-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text);
}
.info-notice p {
  margin: 0;
  color: var(--text));
  font-size: 0.94rem;
  line-height: 1.55;
}
.info-notice strong { 
  color: var(--text); 
}

/* Other services grid */
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.other-card {
  background: var(--surface-alt);
  color: var(--text);
  padding: 44px 32px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.other-card-body {
  text-align: left;
  text-justify: inter-word;
  font-size: 0.9rem;
}
.other-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,163,73,0.30);
  background: var(--surface);
}
.other-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--gold-2);
  border-radius: 50%;
  margin-bottom: 15px;
}
.other-icon svg { width: 22px; height: 22px; }
.other-card h3 { 
  margin-bottom: 10px; 
  color: var(--text);
}
.other-card p {
  color: var(--text, var(--text-3));
  font-size: 0.95rem;
  margin: 0;
}

/* ----- About ----- */
.about {
  background: var(--surface);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 4px;

}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.about-intro {
  position: sticky;
  top: 120px;
}
.about-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.about-body p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body p strong { color: var(--text); font-weight: 600; }
.motto {
  margin: 40px 0;
  padding: 28px 30px;
  background: var(--surface-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}
.motto p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-2);
}
.motto em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-muted);
}
.motto-mark {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.commit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text)
}
.commit-list li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}
.commit-list li::before {
  content: '';
  position: absolute;
  left: 8px; top: 24px;
  width: 14px; height: 2px;
  background: var(--gold);
}
.commit-list li:last-child { border-bottom: 0; }
.commit-list strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ----- Contact ----- */
.contact {
  background: var(--bg);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(201,163,73,0.10), transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(201,163,73,0.06), transparent 50%);
}
.contact .container { 
  position: relative; z-index: 2; 
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro h2 {
  color: #fff;
  margin-bottom: 22px;
}
.contact-intro .lead-light { 
  margin-bottom: 44px; 
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: transform .2s ease;
}
.contact-method:first-child { border-top: 0; padding-top: 0; }
.contact-method:not(.contact-method-info):hover {
  transform: translateX(4px);
}
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,163,73,0.12);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color .2s ease;
}
.contact-method:not(.contact-method-info):hover .contact-method-icon {
  background: rgba(201,163,73,0.22);
}
.contact-method-label {
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-method-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.contact-method-sub {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.60);
  margin-top: 4px;
}

.contact-form-wrap {
  background: var(--surface);
  color: var(--text);
  padding: 42px 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.contact-form h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 44px; height: 2px;
  background: var(--gold);
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row label {
  display: block;
}
.label-text {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
  .label-text-header {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
textarea::placeholder {
  font-size: 0.85rem;
  white-space: pre-line;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-3);
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,73,0.12);
}
.form-row textarea { 
  resize: vertical; 
  min-height: 100px; 
}

input[type="date"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  color: var(--text-3);
  background: white;
}

.form-note {
  font-size: 0.70rem;
  color: var(--text-3);
  text-align: right;
}
.form-note a { 
  color: var(--gold-muted); 
  font-weight: 600; 
  font-size: 0.9rem;
}
.form-note-group .form-note {
  margin: 0;
}
.form-note-group .form-note + .form-note {
  margin-top: 0px;
}
/* ----- Footer ----- */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 240px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: all .25s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-family: var(--font-accent);
  font-size: 0.80rem;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* ----- Reveal on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.2, 0.65, 0.2, 1), transform .8s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px var(--pad);
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .service-grid { grid-template-columns: 1fr; }
  .junk-layout { grid-template-columns: 1fr; gap: 48px; }
  .junk-media { position: static; margin-top: 16px; }
  .junk-media img { aspect-ratio: 16 / 10; }
  .hotshot-layout { grid-template-columns: 1fr; gap: 48px; }
  .hotshot-media { order: 2; }
  .hotshot-media img { aspect-ratio: 16 / 10; }
  .pricing-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 12px; }
  .other-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-mark { display: none; }
  .form-row-split { grid-template-columns: 1fr; }
  .motto-mark { display: none; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 30px 22px; }
  .quote-card {
    margin-left: 12px;
    max-width: calc(100% - 24px);
    padding: 28px 22px 24px;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-headline .line-1,
  .hero-headline .line-2,
  .hero-headline .line-3,
  .hero-sub, .hero-ctas, .hero-meta, .hero-scroll {
    opacity: 1;
    transform: none;
  }
}
.service-detail-dark .price-card-featured,
.service-detail-dark .price-card-featured * {
  color: var(--text);
}