/* ============================================================================
   SEND JUNK PHOTOS — STYLES
   Lakers theme · Maximalist · Mobile-first
   ============================================================================ */

:root {
  /* ⬇⬇⬇ EDIT PHONE HERE — one place, every page updates ⬇⬇⬇ */
  --phone-display: "(813) 775-8978";
  --phone-link: "+18137758978";
  /* ⬇⬇⬇ EDIT EMAIL HERE ⬇⬇⬇ */
  --business-email: "darrell@darrellslandscaping.com";

  /* ⬇⬇⬇ EDIT COLORS HERE — Lakers palette ⬇⬇⬇ */
  --purple:        #4B257D;       /* brand purple */
  --purple-deep:   #31005F;       /* darker for depth */
  --purple-darkest:#1F0042;       /* deepest, for footer/edges */
  --gold:          #FDD023;       /* accent gold */
  --gold-deep:     #C8A015;       /* darker gold */
  --bone:          #F4EEDF;       /* warm white */
  --cream:         #E8DDBF;       /* light cream for light sections */
  --paper:         #FFFFFF;
  --ink:           #31005F;       /* "dark" = purple-deep, not black */
  --ink-soft:      #2A1F45;
  --muted:         rgba(244, 238, 223, 0.6);
  --line:          rgba(244, 238, 223, 0.12);
  --line-strong:   rgba(244, 238, 223, 0.22);

  /* Typography */
  --display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --serif:   'Fraunces', Georgia, serif;
  --body:    'Inter Tight', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;
  --script:  'Caveat', cursive;

  --container: 1320px;
  --container-narrow: 880px;
  --radius:    14px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* CSS-variable-driven phone display text */
.phone-text::after { content: var(--phone-display); }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: 64px; /* room for sticky call bar on mobile */
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.005em;
  margin: 0;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }

/* Subtle noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: 60px; position: relative; z-index: 2; }
@media (min-width: 600px) { .container { padding-inline: 30px; } }
@media (min-width: 900px) {
  .container { padding-inline: 40px; }
  .section { padding-block: 110px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  margin-right: 0.5rem;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  --bg: var(--gold);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 24px;
  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  position: relative;
  white-space: nowrap;
  border: 2px solid var(--bg);
  min-height: 44px;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--gold); }
.btn:active { transform: translate(0, 0); box-shadow: none; }
.btn .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost { --bg: transparent; --fg: var(--bone); border-color: var(--bone); }
.btn--ghost:hover { background: var(--bone); color: var(--ink); box-shadow: 6px 6px 0 var(--bone); }

.btn--purple { --bg: var(--purple); --fg: var(--bone); border-color: var(--purple); }
.btn--purple:hover { box-shadow: 6px 6px 0 var(--purple); background: var(--purple); }

.btn--ink { --bg: var(--ink); --fg: var(--gold); border: 2px solid var(--gold); }
.btn--ink:hover { box-shadow: 6px 6px 0 var(--gold); }

.btn--white { --bg: var(--paper); --fg: var(--purple-deep); border-color: var(--paper); }
.btn--white:hover { box-shadow: 6px 6px 0 var(--purple-deep); background: var(--paper); }

.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--xl { padding: 22px 38px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============================================================================
   NAV
   ============================================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.3s, background 0.3s;
}
.nav-wrap.is-scrolled {
  border-bottom-color: rgba(0,0,0,0.08);
  background: #ffffff;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 0 14px rgba(253, 208, 35, 0.35));
}
.nav-brandtxt {
  display: none;
  flex-direction: column;
  line-height: 1.3;
  gap: 3px;
}
.nav-brandtxt strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--purple-deep);
  text-transform: uppercase;
}
.nav-brandtxt span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}
@media (min-width: 480px) { .nav-brandtxt { display: flex; } }

.nav-list {
  list-style: none;
  display: none;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  position: relative;
  padding: 10px 4px;
  transition: color 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
}
.nav-link:hover { color: var(--gold); }
.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  height: 2px;
  background: var(--gold);
}
.nav-link .caret { font-size: 9px; opacity: 0.7; transition: transform 0.2s; }
.nav-dropdown.open .caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--purple-darkest);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 240px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.nav-dropdown-menu::before {
  /* hover bridge — death triangle fix */
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bone);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.is-active {
  background: rgba(253, 208, 35, 0.12);
  color: var(--gold);
}
.nav-dropdown-menu .all-link {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
  color: var(--gold);
}

.nav-cta { display: none; align-items: center; gap: 12px; }
.nav-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--purple-deep);
  font-size: 14px;
  white-space: nowrap;
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-cta .btn { padding: 11px 18px; font-size: 12px; }

@media (min-width: 980px) {
  .nav-list  { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-phone { display: inline-flex; }
}

/* Hamburger toggle */
.nav-toggle {
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 44px;
}
.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
}
.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
@media (min-width: 980px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--purple-darkest);
  color: var(--bone);
  z-index: 105;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  color: var(--bone);
  border: 2px solid var(--bone);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-height: 40px;
}
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--line); }
.mobile-nav-list > li > a, .mobile-nav-grouptrigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  text-align: left;
  min-height: 56px;
}
.mobile-nav-list > li > a:hover, .mobile-nav-grouptrigger:hover { color: var(--gold); }
.mobile-nav-list > li > a.is-active { color: var(--gold); }
.mobile-nav-arrow {
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.25s;
  display: inline-block;
}
.mobile-nav-group.open .mobile-nav-arrow { transform: rotate(-180deg); }
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-group.open .mobile-nav-sub { max-height: 800px; padding-bottom: 12px; }
.mobile-nav-sublink {
  display: block;
  padding: 12px 0 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(244, 238, 223, 0.78);
  text-transform: none;
  letter-spacing: 0;
  min-height: 44px;
}
.mobile-nav-sublink:hover { color: var(--gold); }
.mobile-nav-sublink.mobile-nav-sublink-all {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.mobile-nav-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.nav-open { overflow: hidden; }
@media (min-width: 980px) {
  .mobile-nav, .nav-toggle { display: none !important; }
}

/* ============================================================================
   STICKY MOBILE CALL BAR
   ============================================================================ */
.call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 16px;
  text-align: center;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  text-transform: uppercase;
}
.call-bar:hover { background: var(--bone); }
.call-bar svg { width: 18px; height: 18px; }
@media (min-width: 900px) { .call-bar { display: none; } }

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */
.breadcrumbs {
  background: var(--purple-darkest);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
  position: relative;
  z-index: 2;
}
.breadcrumbs-inner {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--gold); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--bone); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--bone); }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
  background: var(--purple-darkest);
  color: var(--bone);
  padding-block: 48px 24px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(75, 37, 125, 0.4), transparent 60%),
    radial-gradient(600px 300px at 10% 100%, rgba(253, 208, 35, 0.08), transparent 60%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}
.footer-brand h3 {
  font-size: 42px;
  margin-bottom: 8px;
  font-family: var(--display);
  line-height: 0.95;
}
.footer-brand h3 em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  font-size: 1.15em;
}
.footer-brand p {
  color: rgba(244, 238, 223, 0.7);
  max-width: 36ch;
  font-size: 14px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  color: rgba(244, 238, 223, 0.75);
  transition: color 0.2s;
  font-weight: 500;
  font-size: 14px;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-block { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-block strong { color: var(--gold); font-size: 18px; font-family: var(--mono); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(244, 238, 223, 0.5);
  position: relative;
  z-index: 2;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-giant {
  display: none;
  position: relative;
  margin-top: 40px;
  font-family: var(--display);
  font-size: clamp(64px, 18vw, 256px);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(253, 208, 35, 0.18);
  font-weight: 400;
  letter-spacing: -0.005em;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

/* ============================================================================
   PAGE HERO (inner pages)
   ============================================================================ */
.page-hero {
  position: relative;
  padding-block: 56px 40px;
  overflow: hidden;
  background: var(--purple-deep);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% -10%, rgba(253, 208, 35, 0.12), transparent 60%),
    radial-gradient(500px 500px at -10% 100%, rgba(137, 0, 167, 0.18), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--bone);
  margin: 16px 0 20px;
  letter-spacing: -0.005em;
}
.page-hero-title em {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-2deg);
}
.page-hero-title .ho-1 { color: var(--gold); }
.page-hero-lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 238, 223, 0.82);
  max-width: 58ch;
  margin-bottom: 28px;
}
.page-hero-lede strong { color: var(--bone); }
@media (min-width: 900px) {
  .page-hero { padding-block: 80px 60px; }
}

/* ============================================================================
   PROSE
   ============================================================================ */
.prose { max-width: 70ch; }
.prose h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 28px 0 14px;
  letter-spacing: -0.005em;
  color: var(--bone);
}
.prose h3 {
  font-size: clamp(20px, 2.8vw, 26px);
  margin: 24px 0 10px;
  letter-spacing: 0.005em;
  color: var(--gold);
}
.prose p, .prose li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244, 238, 223, 0.82);
}
.prose strong { color: var(--bone); }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 16px 0; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--gold); border-bottom: 1px dashed var(--gold); padding-bottom: 1px; }
.prose a:hover { color: var(--bone); border-bottom-color: var(--bone); }

/* ============================================================================
   FORMS
   ============================================================================ */
.quote-form-card {
  background: var(--purple-darkest);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
}
.quote-form-card h3 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--bone);
  letter-spacing: 0.005em;
  margin-bottom: 4px;
}
.form-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(244, 238, 223, 0.05);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--bone);
  min-height: 48px;
  transition: border-color 0.15s, background 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244, 238, 223, 0.1);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(244, 238, 223, 0.4); }
.form-submit {
  width: 100%;
  padding: 18px;
  margin-top: 6px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  min-height: 52px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.form-submit:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--gold); }
.form-or {
  text-align: center;
  margin: 18px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  position: relative;
}
.form-or::before, .form-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--line);
}
.form-or::before { left: 0; }
.form-or::after { right: 0; }
.form-call { display: grid; gap: 10px; }
@media (min-width: 480px) { .form-call { grid-template-columns: 1fr 1fr; } }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.form-success.active { display: block; }
.form-success svg { width: 64px; height: 64px; color: var(--gold); margin: 0 auto 20px; }
.form-success h3 { font-family: var(--display); font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.form-success p { color: rgba(244, 238, 223, 0.78); max-width: 40ch; margin: 0 auto 16px; }
.botcheck-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ============================================================================
   FINAL-CTA SECTION
   ============================================================================ */
.final-cta {
  background: var(--gold);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding-block: 80px;
  border-block: 3px solid var(--ink);
  text-align: center;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  font-family: var(--display);
  font-size: clamp(120px, 25vw, 360px);
  line-height: 0.78;
  color: rgba(31, 0, 66, 0.07);
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.final-cta::before { content: "JUNK"; top: -5%; left: -2%; transform: rotate(-4deg); }
.final-cta::after  { content: "GONE"; bottom: -5%; right: -2%; transform: rotate(4deg); }
.final-cta-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(40px, 9vw, 96px);
  line-height: 0.9;
  margin-bottom: 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.final-cta h2 em {
  font-family: var(--script);
  color: var(--purple-deep);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
}
.final-cta h2 .stamp-inline {
  display: inline-block;
  background: var(--paper);
  color: var(--purple-deep);
  padding: 0 0.18em;
  transform: rotate(-2deg);
  box-shadow: 6px 6px 0 var(--purple-deep);
}
.final-cta p {
  font-size: 18px;
  color: rgba(31, 0, 66, 0.7);
  margin-bottom: 24px;
  max-width: 50ch;
  margin-inline: auto;
  font-weight: 500;
}
.phone-display-big {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 8vw, 64px);
  color: var(--purple-deep);
  letter-spacing: 0.02em;
  margin: 16px 0 24px;
  text-decoration: none;
}
.phone-display-big:hover { color: var(--ink); }
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.final-cta-buttons .btn--ghost { border-color: var(--ink); color: var(--ink); }
.final-cta-buttons .btn--ghost:hover { background: var(--ink); color: var(--gold); }

/* ============================================================================
   REVEAL ANIMATION
   ============================================================================ */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js-ready .reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================================
   REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-ready .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.gold { color: var(--gold); }
.bone { color: var(--bone); }
.script { font-family: var(--script); font-style: italic; font-weight: 400; }
