/* =========================================================
   Wax Social — Purple/gold brand site
   Brand system derived from the pitch deck and uploaded W/S logo.
   ========================================================= */

:root {
  --cream: #F6F2FF;
  --cream-2: #EEE7FF;
  --ink: #21083D;
  --ink-2: #32105D;
  --muted: #786B92;
  --line: #D8CAFA;
  --gold: #E2BE22;
  --gold-deep: #B89112;
  --violet: #7B35F4;
  --violet-deep: #4A1790;
  --white: #FAF8F3;

  --serif: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --maxw-narrow: 880px;
  --pad: clamp(20px, 4vw, 56px);

  --radius: 4px;
  --shadow: 0 1px 0 rgba(14,13,11,.08), 0 30px 60px -30px rgba(14,13,11,.18);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--violet); color: var(--white); }

/* ===== Type ===== */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 24px;
}
.eyebrow--small { font-size: 11px; margin-bottom: 8px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}

em { font-style: italic; color: var(--gold); }

p { margin: 0 0 1em; }

/* ===== Layout ===== */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section {
  padding: clamp(72px, 11vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.section__head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 820px; }
.section__title {
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.section__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  margin-top: 18px;
  max-width: 60ch;
  line-height: 1.55;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--violet); color: var(--white); border-color: var(--violet); }
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }

/* ===== Nav ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.nav__mark svg { display: block; }
.nav__mark--image {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(33, 8, 61, 0.18);
  background: var(--white);
}
.nav__mark--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.nav__wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.nav__links {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 3.5vw, 44px);
}
.nav__links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover { border-bottom-color: var(--gold); }

.nav__cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__cta:hover { background: var(--violet); border-color: var(--violet); }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px; height: 1.5px;
  background: var(--ink);
  margin-left: -10px;
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.nav__burger span:nth-child(1) { transform: translateY(-7px); }
.nav__burger span:nth-child(2) { transform: translateY(0); }
.nav__burger span:nth-child(3) { transform: translateY(7px); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px var(--pad) 28px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav__mobile a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile-cta {
  margin-top: 18px;
  background: var(--ink);
  color: var(--cream) !important;
  padding: 16px 0 !important;
  text-align: center;
  border: 0 !important;
}

/* ===== Hero ===== */

.hero {
  padding: clamp(38px, 6.5vw, 88px) 0 clamp(48px, 8vw, 104px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(123, 53, 244, 0.28), transparent 32%),
    linear-gradient(90deg, var(--violet-deep) 0 40%, var(--ink) 40% 100%);
  color: var(--white);
}
.hero .eyebrow { margin-bottom: clamp(48px, 7vw, 100px); }
.hero .eyebrow { margin-bottom: clamp(30px, 4.5vw, 62px); }
.hero .eyebrow { color: var(--gold); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__title {
  font-size: clamp(42px, 5.8vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-weight: 800;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--gold);
}

.hero__brand-card {
  justify-self: end;
  width: min(100%, 430px);
  background: var(--white);
  border: 1px solid rgba(226, 190, 34, 0.4);
  box-shadow: 0 26px 80px -44px rgba(0, 0, 0, 0.8);
  padding: clamp(18px, 2.8vw, 34px);
}
.hero__brand-card img {
  width: 100%;
  height: auto;
}

.hero__lede {
  margin-top: clamp(40px, 6vw, 72px);
  max-width: 56ch;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.82);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero .btn--ghost {
  color: var(--white);
  border-color: rgba(250, 248, 243, 0.75);
}
.hero .btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

/* ===== Ticker ===== */

.ticker {
  background: var(--violet);
  color: var(--white);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  padding: 22px 0;
}
.ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}
.ticker__group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}
.ticker__group span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.ticker__group span[aria-hidden="true"] {
  color: var(--gold);
  letter-spacing: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ===== Problem ===== */

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 48px);
  border-top: 1px solid var(--line);
}
.problem__card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
}
.problem__card:nth-child(2n) { border-right: 0; }
.problem__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}
.problem__card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.problem__card p {
  color: var(--ink-2);
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Proof ===== */

.proof { background: var(--cream-2); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 2vw, 28px);
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.stat__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.proof__callout {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 760px;
}
.proof__line {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  margin-bottom: 18px;
}
.proof__math {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 18px;
}
.proof__math strong {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(transparent 65%, rgba(201,169,110,0.45) 65%);
  padding: 0 4px;
}
.proof__sub { color: var(--muted); max-width: 60ch; }

/* ===== Services ===== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  transition: background .3s var(--ease);
}
.service:hover { background: var(--cream-2); }
.service h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  margin: 0 0 18px;
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service li {
  position: relative;
  padding-left: 18px;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.service li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--gold-deep);
  font-size: 11px;
}

/* ===== Pricing ===== */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.plan {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(32px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--featured {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}
.plan--featured h3, .plan--featured p { color: var(--white); }
.plan__badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 12px;
  margin: 0;
}
.plan__name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.plan--featured .plan__name { color: rgba(250, 248, 243, 0.78); }
.plan__price {
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
.plan__currency {
  font-size: 0.5em;
  vertical-align: top;
  margin-right: 4px;
  color: var(--gold-deep);
}
.plan--featured .plan__currency { color: var(--gold); }
.plan__period {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-left: 6px;
}
.plan--featured .plan__period { color: rgba(250, 248, 243, 0.78); }
.plan__note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.plan--featured .plan__note { color: rgba(250, 248, 243, 0.78); }
.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan__features li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
}
.plan__features li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--gold-deep);
}
.plan--featured .plan__features li::before { color: var(--gold); }
.plan__cta { width: 100%; }
.plan--featured .plan__cta {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.plan--featured .plan__cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.pricing__addons {
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* ===== About ===== */

.about__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about__copy p {
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-top: 24px;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.about__list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.about__list li:first-child { border-top: 1px solid var(--line); }
.about__bullet {
  position: absolute; left: 0; top: 16px;
  color: var(--gold-deep);
  font-size: 12px;
}

.about__card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 36px;
  position: sticky;
  top: 110px;
}
.about__mark {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(33, 8, 61, 0.18);
  background: var(--white);
}
.about__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.about__name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 6px;
  font-style: italic;
}
.about__role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.5;
}
.about__facts {
  margin: 0;
  border-top: 1px solid var(--line);
}
.about__facts > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.about__facts dt {
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 11px;
}
.about__facts dd {
  margin: 0;
  text-align: right;
  font-family: var(--sans);
  color: var(--ink);
}
.about__facts a { text-decoration: none; border-bottom: 1px solid var(--gold); }

/* ===== Interest / Form ===== */

.interest { background: var(--cream-2); }
.interest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.interest__copy p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 48ch;
}
.interest__meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
}
.interest__direct {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.interest__direct p { margin: 0 0 6px; font-size: 17px; }
.interest__direct a { text-decoration: none; border-bottom: 1px solid var(--gold); }

.form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px);
}
.form__hidden { display: none !important; }
.form__row { margin-bottom: 20px; }
.form__row label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color .25s var(--ease);
  border-radius: 0;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-bottom-color: var(--ink);
}
.form input.is-error, .form select.is-error {
  border-bottom-color: #A12C7B;
}
.form textarea { resize: vertical; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 28px; }
.form__error {
  font-size: 12px;
  color: #A12C7B;
  margin: 6px 0 0;
  min-height: 1em;
}
.form__disclaimer {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 20px;
}
.form__submit { width: 100%; padding: 18px; }

.form__success {
  padding: 32px 0 8px;
  text-align: left;
}
.form__success-title {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.form__success p { font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.form__success-direct { margin-top: 18px; font-size: 14px; }
.form__success a { border-bottom: 1px solid var(--gold); text-decoration: none; }

/* ===== FAQ ===== */

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 56px 28px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--ink), var(--ink)) center/100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center/1px 100% no-repeat;
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after {
  background: linear-gradient(var(--ink), var(--ink)) center/100% 1px no-repeat;
  transform: translateY(-50%) rotate(180deg);
}
.faq__item summary:hover { color: var(--gold-deep); }

.faq__body { padding: 0 0 28px; max-width: 70ch; }
.faq__body p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; }

/* ===== Footer ===== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.16);
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__tagline {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.4;
  max-width: 32ch;
  margin: 0;
  color: rgba(245, 240, 232, 0.86);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 240, 232, 0.86);
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact p { font-size: 16px; margin: 0 0 6px; color: rgba(245, 240, 232, 0.92); }
.footer__contact a { text-decoration: none; border-bottom: 1px solid var(--gold); }
.footer .eyebrow { color: rgba(245, 240, 232, 0.64); }

.footer__base {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
}
.footer__base p { margin: 0; }

/* ===== Reveal animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__brand-card { justify-self: start; width: min(100%, 360px); margin-top: 8px; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__card { border-right: 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__card { position: static; }
  .interest__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-block; }
  .nav.is-open .nav__mobile { display: flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; padding-bottom: 36px; }
  .footer__base { flex-direction: column; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(40px, 12vw, 72px); }
  .about__facts > div { grid-template-columns: 1fr; gap: 4px; }
  .about__facts dd { text-align: left; }
}
