/* Kept: static build, brand layer */
:root {
  --ink: #0e1613;
  --ink2: #121b17;
  --ink3: #0a0f0c;
  --bone: #ede8dc;
  --fog: #a6a597;
  --verm: #e14434;
  --rule: rgba(237, 232, 220, 0.14);
  --display: "Cabinet Grotesk", "Inter Tight", system-ui, sans-serif;
  --body: "Inter Tight", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--ink); color: var(--bone); scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--verm); color: var(--ink); }
:focus-visible { outline: 2px solid var(--verm); outline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 0; }
.eyebrow {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  margin: 0 0 1rem;
}
.eyebrow.red { color: var(--verm); }
.muted { color: var(--fog); }
.section { padding-top: 6rem; padding-bottom: 6rem; }
.rule-top { border-top: 1px solid var(--rule); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--rule);
  background: rgba(14, 22, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.wordmark { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.5rem; color: var(--bone); }
.wordmark span { color: var(--verm); }
.main-nav { display: none; gap: 2rem; }
.main-nav a { position: relative; font-size: 0.875rem; color: var(--fog); padding: 0.25rem 0; transition: color 0.2s; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--verm); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--bone); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { display: none; font-size: 0.875rem; color: var(--fog); font-variant-numeric: tabular-nums; }
.header-phone:hover { color: var(--bone); }
.bracket-cta {
  position: relative; display: none; padding: 0.5rem 1rem;
  font-family: var(--display); font-weight: 700; font-size: 0.875rem; letter-spacing: -0.02em;
}
.bracket-cta::before, .bracket-cta::after {
  content: ""; position: absolute; width: 0.625rem; height: 0.625rem; transition: all 0.2s;
}
.bracket-cta::before { left: 0; top: 0; border-left: 1px solid var(--verm); border-top: 1px solid var(--verm); }
.bracket-cta::after { right: 0; bottom: 0; border-right: 1px solid var(--verm); border-bottom: 1px solid var(--verm); }
.bracket-cta:hover::before, .bracket-cta:hover::after { width: 100%; height: 100%; }
.burger { display: flex; flex-direction: column; gap: 6px; justify-content: center; align-items: center; width: 2.5rem; height: 2.5rem; background: none; border: 0; cursor: pointer; }
.burger span { width: 1.5rem; height: 1px; background: var(--bone); transition: transform 0.2s; }
.burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--rule); padding: 1rem 1.25rem 1.5rem; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--rule); font-family: var(--display); font-weight: 700; font-size: 1.125rem; letter-spacing: -0.02em; }
.mobile-nav a:last-child { border-bottom: 0; color: var(--verm); }

/* Hero */
.hero { position: relative; min-height: 100dvh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-img, .hero-dark { position: absolute; inset: 0; }
.hero-img img, .hero-dark img { width: 100%; height: 100%; object-fit: cover; }
.hero-dark {
  --kx: 50%; --ky: 50%;
  opacity: 0; transition: opacity 0.7s;
  -webkit-mask-image: radial-gradient(circle 460px at var(--kx) var(--ky), transparent 0 220px, black 440px);
  mask-image: radial-gradient(circle 460px at var(--kx) var(--ky), transparent 0 220px, black 440px);
}
.hero-dark.on { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink), rgba(14, 22, 19, 0.4) 50%, transparent); }
.hero-content { position: relative; width: 100%; padding-bottom: 5rem; padding-top: 6rem; }
.hero h1 { font-size: clamp(3rem, 8vw, 4.5rem); max-width: 48rem; }
.hero .sub { max-width: 36rem; margin: 1.25rem 0 0; font-size: 1.125rem; color: rgba(237, 232, 220, 0.85); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.5rem; margin-top: 2.25rem; }
.cta-underline {
  position: relative; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3vw, 1.875rem); display: inline-flex; align-items: baseline; gap: 0.75rem;
}
.cta-underline .line { position: relative; }
.cta-underline .line::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--verm); transform: scaleX(0.35); transform-origin: left; transition: transform 0.3s;
}
.cta-underline:hover .line::after { transform: scaleX(1); }
.cta-underline .arrow { color: var(--verm); transition: transform 0.3s; }
.cta-underline:hover .arrow { transform: translateX(8px); }
.cta-quiet { color: rgba(237, 232, 220, 0.7); transition: color 0.2s; }
.cta-quiet:hover { color: var(--bone); }
.cta-quiet .arrow { display: inline-block; margin-left: 0.5rem; transition: transform 0.3s; }
.cta-quiet:hover .arrow { transform: translateX(6px); }

/* Rise-in on load (fires on mount, never viewport-gated) */
@keyframes k-rise { from { transform: translateY(26px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.rise { animation: k-rise 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
.rise2 { animation: k-rise 0.7s 0.12s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
.rise3 { animation: k-rise 0.7s 0.24s cubic-bezier(0.2, 0.6, 0.2, 1) both; }

/* Page headers */
.page-head { padding-top: 5rem; padding-bottom: 3.5rem; }
.page-head h1 { font-size: clamp(3rem, 8vw, 4.5rem); max-width: 48rem; }
.page-head .sub { max-width: 36rem; margin: 1.25rem 0 0; font-size: 1.125rem; color: var(--fog); }

/* Who grid */
.who h2 { font-size: clamp(2.25rem, 6vw, 3.75rem); max-width: 42rem; }
.who-grid { display: grid; gap: 1px; background: rgba(237, 232, 220, 0.1); margin-top: 3.5rem; }
.who-tile { background: var(--ink); padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; transition: background 0.3s; }
.who-tile:hover { background: var(--ink2); }
.who-tile img { width: 2.5rem; height: 2.5rem; opacity: 0.8; transition: transform 0.3s, opacity 0.3s; }
.who-tile:hover img { transform: translateY(-4px); opacity: 1; }
.who-tile h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.25rem; margin: 0; }
.who-tile p { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--fog); }

/* Compare diptych */
.compare { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--ink3); }
.compare-grid { display: grid; }
.compare-cell { padding: 4rem 1.25rem; }
.compare-cell .big { font-size: clamp(3.75rem, 10vw, 6rem); }
.compare-cell .big .dot { color: var(--verm); }
.compare-cell .big.dim { color: var(--fog); }
.compare-cell p.body { max-width: 24rem; margin: 1rem 0 0; }
.compare-cell.left { border-bottom: 1px solid var(--rule); }

/* Steps */
.steps-wrap { position: relative; overflow: hidden; }
.big-seven { position: absolute; right: -2.5rem; top: 50%; transform: translateY(-50%); font-family: var(--display); font-weight: 800; font-size: 26rem; line-height: 1; letter-spacing: -0.03em; color: var(--ink2); user-select: none; pointer-events: none; display: none; }
.steps-inner { position: relative; }
.steps h2 { font-size: clamp(2.25rem, 5vw, 3rem); max-width: 36rem; margin-top: 1rem; }
.steps ol { list-style: none; margin: 3.5rem 0 0; padding: 0; max-width: 42rem; }
.steps li { display: grid; gap: 1rem; border-left: 1px solid rgba(237, 232, 220, 0.15); padding: 2rem 0 2rem 2rem; transition: border-color 0.2s; }
.steps li:hover { border-left-color: var(--verm); }
.step-n { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--verm); font-variant-numeric: tabular-nums; }
.steps h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.5rem; margin: 0; }
.steps p { margin: 0.5rem 0 0; color: var(--fog); max-width: 36rem; }
.step-day { font-family: ui-monospace, "SF Mono", monospace; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--verm); }

/* Plans */
.plans h2 { font-size: clamp(2.25rem, 5vw, 3rem); max-width: 42rem; margin-top: 1rem; }
.plans-grid { display: grid; gap: 2.5rem; margin-top: 3.5rem; }
.plan { display: flex; flex-direction: column; border-top: 1px solid rgba(237, 232, 220, 0.15); }
.plan.popular { border-top: 2px solid var(--verm); }
.plan-head { display: flex; align-items: baseline; justify-content: space-between; padding-top: 1.5rem; }
.plan-name { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.125rem; color: var(--fog); margin: 0; }
.plan-pop { font-family: ui-monospace, "SF Mono", monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--verm); }
.plan-tagline { font-size: clamp(2.25rem, 4vw, 3rem); margin-top: 1.5rem; }
.plan-blurb { font-size: 0.875rem; color: var(--fog); margin: 1.25rem 0 0; }
.plan-price { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; font-size: 2.25rem; margin: 2rem 0 0; }
.plan-price small { font-family: var(--body); font-weight: 500; font-size: 1rem; color: var(--fog); margin-left: 0.25rem; }
.plan ul { list-style: none; flex: 1; margin: 1.5rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(237, 232, 220, 0.1); font-size: 0.875rem; color: rgba(237, 232, 220, 0.85); }
.plan li { display: flex; gap: 0.625rem; margin-bottom: 0.7rem; }
.plan li::before { content: "\00b7"; color: var(--verm); font-weight: 800; }
.plan-cta { position: relative; overflow: hidden; display: block; margin-top: 2rem; border: 1px solid rgba(237, 232, 220, 0.2); padding: 0.875rem 1.25rem; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; }
.plan-cta i { position: absolute; inset: 0; background: var(--verm); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; font-style: normal; }
.plan-cta b { position: relative; display: flex; justify-content: space-between; font-weight: inherit; transition: color 0.3s; }
.plan-cta:hover i { transform: scaleY(1); }
.plan-cta:hover b { color: var(--ink); }
.plans-note { margin-top: 2.5rem; font-size: 0.875rem; color: var(--fog); }
.plans-note a { color: var(--bone); text-decoration: underline; text-decoration-color: var(--verm); text-underline-offset: 4px; }
.plans-note a:hover { color: var(--verm); }

/* Statement */
.statement { position: relative; border-top: 1px solid var(--rule); }
.statement > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.statement-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 6rem 1.25rem; text-align: center; }
.statement h2 { font-size: clamp(2.25rem, 6vw, 3.75rem); }
.statement .body { max-width: 42rem; margin: 1.5rem auto 0; color: rgba(237, 232, 220, 0.85); }
.stat-grid { display: grid; gap: 1px; background: rgba(237, 232, 220, 0.15); max-width: 42rem; margin: 2.5rem auto 0; font-size: 0.875rem; }
.stat-cell { background: rgba(14, 22, 19, 0.9); padding: 1.25rem 1rem; }
.stat-cell .n { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.5rem; }
.stat-cell p { margin: 0.25rem 0 0; color: var(--fog); }

/* Referral ticket */
.ticket { display: flex; flex-direction: column; max-width: 48rem; margin: 0 auto; }
.ticket-main { flex: 1; border: 1px solid rgba(237, 232, 220, 0.2); background: var(--ink2); padding: 2rem; }
.ticket-main h2 { font-size: clamp(1.875rem, 5vw, 3rem); margin-top: 1rem; }
.ticket-main .body { max-width: 32rem; color: var(--fog); margin: 1.25rem 0 0; }
.ticket-main .small { font-size: 0.75rem; color: rgba(166, 165, 151, 0.7); margin: 1rem 0 0; }
.ticket-stub { display: flex; align-items: center; justify-content: center; border: 1px solid rgba(237, 232, 220, 0.2); border-top: 0; background: var(--ink2); padding: 2rem; transition: transform 0.3s; font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.ticket:hover .ticket-stub { transform: translateX(8px) rotate(1deg); }

/* Band CTA */
.band { display: block; border-top: 1px solid var(--rule); background: var(--ink2); transition: background 0.3s; }
.band .inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 4rem; padding-bottom: 4rem; }
.band p { font-size: clamp(1.875rem, 4vw, 3rem); font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 0; max-width: 42rem; transition: color 0.3s; }
.band .go { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--verm); transition: transform 0.3s, color 0.3s; }
.band:hover { background: var(--verm); }
.band:hover p, .band:hover .go { color: var(--ink); }
.band:hover .go { transform: translateX(8px); }

/* Footer */
.site-footer { border-top: 1px solid var(--rule); background: var(--ink3); }
.footer-grid { display: grid; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.footer-grid .blurb { max-width: 20rem; font-size: 0.875rem; color: var(--fog); }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-col a { color: var(--fog); width: fit-content; }
.footer-col a:hover { color: var(--bone); }
.footer-col .head { font-family: ui-monospace, "SF Mono", monospace; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog); margin-bottom: 0.25rem; }
.footer-col .fine { max-width: 20rem; font-size: 0.75rem; color: rgba(166, 165, 151, 0.7); margin-top: 0.75rem; }
.footer-bottom { border-top: 1px solid var(--rule); }
.footer-bottom .inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; padding-top: 1rem; padding-bottom: 1rem; font-size: 0.75rem; color: rgba(166, 165, 151, 0.7); }

/* Work */
.work-grid { display: grid; gap: 3rem; padding-bottom: 6rem; }
.work-card .shot { position: relative; overflow: hidden; border: 1px solid rgba(237, 232, 220, 0.1); }
.work-card .shot img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.work-card:hover .shot img { transform: scale(1.03); }
.work-card .tag { position: absolute; left: 1rem; top: 1rem; background: rgba(14, 22, 19, 0.8); padding: 0.25rem 0.5rem; font-family: ui-monospace, monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog); }
.work-meta { display: flex; align-items: baseline; gap: 1rem; margin-top: 1.25rem; }
.work-meta .idx { font-family: var(--display); font-weight: 700; font-size: 0.875rem; color: var(--verm); }
.work-meta h2 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.5rem; margin: 0; }
.work-meta .sector { font-size: 0.875rem; color: var(--fog); margin: 0; }
.work-meta .note { max-width: 28rem; font-size: 0.875rem; color: rgba(237, 232, 220, 0.8); margin: 0.5rem 0 0; }
.work-slot { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; min-height: 18rem; border: 1px dashed rgba(237, 232, 220, 0.25); padding: 2rem; transition: border-color 0.3s; }
.work-slot:hover { border-color: var(--verm); }
.work-slot h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); }
.work-slot p { max-width: 24rem; font-size: 0.875rem; color: var(--fog); margin: 0.75rem 0 0; }
.work-slot .go { display: inline-block; margin-top: 1.5rem; font-family: var(--display); font-weight: 700; font-size: 1.125rem; color: var(--verm); transition: transform 0.3s; }
.work-slot:hover .go { transform: translateX(8px); }

/* Deal + FAQ */
.deal { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--ink3); }
.deal .inner { padding-top: 4rem; padding-bottom: 4rem; }
.deal h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); max-width: 42rem; }
.deal-grid { display: grid; gap: 2rem; margin-top: 2.5rem; font-size: 0.875rem; color: rgba(237, 232, 220, 0.85); }
.deal-grid b { font-family: var(--display); letter-spacing: -0.02em; color: var(--bone); }
.faq { max-width: 48rem; margin: 0 auto; padding: 6rem 1.25rem; }
.faq h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); }
.faq-wrap { margin-top: 2.5rem; }
.faq details { border-top: 1px solid rgba(237, 232, 220, 0.15); }
.faq details:last-child { border-bottom: 1px solid rgba(237, 232, 220, 0.15); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; cursor: pointer; list-style: none; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.125rem; transition: color 0.2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--verm); }
.faq summary .plus { color: var(--verm); transition: transform 0.2s; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { max-width: 42rem; margin: 0; padding-bottom: 1.5rem; color: var(--fog); }

/* Contact */
.contact-grid { display: grid; gap: 4rem; padding-bottom: 6rem; }
.contact-phone { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.5rem; display: block; width: fit-content; font-variant-numeric: tabular-nums; transition: color 0.2s; }
.contact-phone:hover { color: var(--verm); }
.contact-email { display: block; width: fit-content; color: var(--fog); text-decoration: underline; text-decoration-color: var(--verm); text-underline-offset: 4px; margin-top: 1rem; }
.contact-email:hover { color: var(--bone); }
.contact-hours { font-size: 0.875rem; color: var(--fog); margin-top: 2rem; }
.form-panel { border: 1px solid rgba(237, 232, 220, 0.15); padding: 1.75rem; }
.form-grid { display: grid; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label { font-size: 0.875rem; font-weight: 500; }
.field input, .field select, .field textarea {
  border: 1px solid rgba(237, 232, 220, 0.2); background: var(--ink2); color: var(--bone);
  padding: 0.75rem 0.875rem; font: inherit; font-size: 0.95rem; outline: none; border-radius: 0; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--verm); }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e14434' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.field select option { background-color: var(--ink2); color: var(--bone); }
.field ::placeholder { color: rgba(166, 165, 151, 0.6); }
.stamp {
  width: 100%; margin-top: 2rem; background: var(--verm); color: var(--ink); border: 0; cursor: pointer;
  padding: 1rem 1.5rem; font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; font-size: 1.125rem;
  box-shadow: 0 4px 0 0 #8f2a20; transition: all 0.15s;
}
.stamp:hover { filter: brightness(1.1); }
.stamp:active { transform: translateY(4px); box-shadow: 0 0 0 0 #8f2a20; }
.form-note { font-size: 0.75rem; color: rgba(166, 165, 151, 0.7); margin-top: 1rem; }
.hidden { display: none; }

/* 404 / thanks */
.center-page { min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; text-align: center; padding: 1.5rem; }
.center-page .huge { font-size: clamp(4.5rem, 15vw, 8rem); }
.center-page .back { font-family: var(--display); font-weight: 700; font-size: 1.25rem; border-bottom: 2px solid var(--verm); padding-bottom: 0.25rem; transition: color 0.2s; }
.center-page .back:hover { color: var(--verm); }

/* Responsive */
@media (min-width: 640px) {
  .bracket-cta { display: block; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .ticket { flex-direction: row; }
  .ticket-stub { border-top: 1px solid rgba(237, 232, 220, 0.2); border-left: 1px dashed rgba(237, 232, 220, 0.3); writing-mode: vertical-rl; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field.wide { grid-column: span 2; }
  .stamp { width: auto; }
}
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .burger, .mobile-nav { display: none !important; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .compare-cell.left { border-bottom: 0; border-right: 1px solid var(--rule); padding-right: 3.5rem; }
  .compare-cell.right { padding-left: 3.5rem; }
  .steps li { grid-template-columns: 4rem 1fr; }
  .steps li.day { grid-template-columns: 8rem 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .header-phone { display: block; }
  .big-seven { display: block; }
  .who-grid { grid-template-columns: repeat(12, 1fr); }
  .who-tile:nth-child(1), .who-tile:nth-child(4) { grid-column: span 5; }
  .who-tile:nth-child(2), .who-tile:nth-child(5) { grid-column: span 4; }
  .who-tile:nth-child(3), .who-tile:nth-child(6) { grid-column: span 3; }
  .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .plan { border-left: 1px solid rgba(237, 232, 220, 0.15); padding: 0 2rem; }
  .plan:first-child { border-left: 0; padding-left: 0; }
  .plan:last-child { padding-right: 0; }
  .plan.popular { margin-top: -1.5rem; padding-top: 1.5rem; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; }
  .deal-grid { grid-template-columns: repeat(4, 1fr); }
  .form-panel { padding: 2.5rem; }
}
/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--verm); color: var(--ink); padding: 0.625rem 1.25rem;
  font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Header elevation once the page scrolls */
.site-header { transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }

/* Scroll reveal (class applied by JS only, so no-JS visitors see everything) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise, .rise2, .rise3 { animation: none; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
