/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

/* ---------- Tokens ---------- */
:root {
  --black: #0e0d0b;
  --black-soft: #1a1815;
  --white: #ffffff;
  --cream: #f7f3ea;
  --cream-deep: #efe9db;
  --cream-line: #e3dac8;
  --gray-600: #6b6353;
  --gray-800: #322e26;

  /* hi-vis accent */
  --orange: #ff6a1a;
  --orange-deep: #c2440a;
  --orange-glow: rgba(255, 106, 26, 0.16);

  --on-dark-muted: rgba(255, 255, 255, 0.68);
  --on-dark-line: rgba(255, 255, 255, 0.13);

  --font-display: "Archivo", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --max-width: 1120px;
  --radius: 10px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 106%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 22px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Type ---------- */
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.95rem, 4.6vw, 2.85rem);
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--black);
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--black);
}

/* ---------- Kicker labels ---------- */
.kicker {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero .kicker,
.section-dark .kicker { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(255, 106, 26, 0.28);
}
.btn-primary::after {
  content: "\2192";
  display: inline-block;
  margin-left: 9px;
  transition: transform 0.2s var(--ease);
}
.btn-primary:hover {
  background: #ff7d36;
  border-color: #ff7d36;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 106, 26, 0.4);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-nav {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-nav:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 13, 11, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--on-dark-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--on-dark-muted);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ---------- Hamburger ---------- */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 40px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-toggle:hover { border-color: var(--orange); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease),
              background 0.2s var(--ease);
}
.nav-toggle.is-open { border-color: var(--orange); }
.nav-toggle.is-open span { background: var(--orange); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile: links collapse into a dropdown panel */
@media (max-width: 759px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--on-dark-line);
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.32s var(--ease), opacity 0.22s var(--ease),
                padding 0.32s var(--ease);
  }
  .nav-links.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    padding: 6px 22px 18px;
  }
  .nav-links a {
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--on-dark-line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .btn-nav { padding: 9px 14px; font-size: 0.8rem; }
}

@media (min-width: 760px) {
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 32%, var(--orange-glow), transparent 62%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--black);
  padding: 62px 0 104px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 44px));
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: 100%;
  max-width: 390px;
  height: auto;
  margin-bottom: 10px;
  /* logo art is white-on-black: screen drops its black box into the hero glow */
  mix-blend-mode: screen;
}
.hero-value-prop {
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.93);
  max-width: 660px;
  margin-top: 14px;
  line-height: 1.62;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-cta .btn-primary { padding: 16px 38px; font-size: 1.02rem; }
.hero-cta-note {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.hero-location {
  margin-top: 34px;
  font-size: 0.86rem;
  color: var(--on-dark-muted);
  border-top: 1px solid var(--on-dark-line);
  padding-top: 22px;
  width: 100%;
  max-width: 430px;
}

/* ---------- Sections (shared) ---------- */
.section { padding: 74px 0; scroll-margin-top: 78px; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--black);
  color: var(--white);
  clip-path: polygon(0 44px, 100% 0, 100% 100%, 0 100%);
  padding-top: 108px;
  margin-top: -8px;
}

.section-lede {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 660px;
  margin-top: 14px;
}

/* ---------- What We Do ---------- */
.section-columns {
  display: grid;
  gap: 38px;
  margin-top: 32px;
}
.section-text p {
  color: var(--gray-800);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.section-text p:last-child { margin-bottom: 0; }

.example-lede {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 13px;
}
.example-list {
  display: grid;
  gap: 12px;
}
.example-note {
  margin-top: 18px;
  padding-left: 15px;
  border-left: 3px solid var(--orange);
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--gray-600);
}
.example-list li {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 16px 18px 16px 48px;
  font-size: 0.96rem;
  color: var(--gray-800);
  position: relative;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              border-color 0.22s var(--ease);
}
.example-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 15px;
  height: 8px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.example-list li:hover {
  transform: translateX(4px);
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(30, 28, 22, 0.07);
}

@media (min-width: 800px) {
  .section-columns {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 52px;
  }
}

/* ---------- Services ---------- */
.services-grid {
  margin-top: 40px;
  display: grid;
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cream-line);
  transition: background 0.25s var(--ease);
}
.service-card:first-child::before { background: var(--orange); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30, 28, 22, 0.13);
}
.service-card:hover::before { background: var(--orange); }

.service-card::after {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--cream-deep);
  position: absolute;
  top: 14px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.service-card:nth-child(1)::after { content: "01"; }
.service-card:nth-child(2)::after { content: "02"; }
.service-card:nth-child(3)::after { content: "03"; }
.service-card h3 { padding-right: 72px; }

.service-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 12px;
}
.service-price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-left: 4px;
}
.service-meta {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--orange-deep);
  margin-top: 8px;
  margin-bottom: 18px;
}
.service-card > p:not(.service-price):not(.service-meta):not(.service-badge) {
  font-size: 0.97rem;
  color: var(--gray-800);
}
.service-badge {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--black);
}
.service-badge span {
  display: inline-block;
  background: rgba(255, 106, 26, 0.12);
  border: 1px solid rgba(255, 106, 26, 0.35);
  border-radius: 999px;
  padding: 9px 16px;
}
.service-examples {
  margin-top: 18px;
  display: grid;
  gap: 9px;
}
.service-examples li {
  font-size: 0.92rem;
  color: var(--gray-800);
  padding-left: 20px;
  position: relative;
}
.service-examples li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

@media (min-width: 860px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Why Fretline ---------- */
.why-grid {
  margin-top: 38px;
  display: grid;
  gap: 34px;
}
.why-item {
  padding-top: 20px;
  position: relative;
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.why-item:hover::before { width: 88px; }
.why-item h3 { padding-right: 44px; }
.why-item::after {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream-line);
  position: absolute;
  top: 20px;
  right: 0;
}
.why-item:nth-of-type(1)::after { content: "01"; }
.why-item:nth-of-type(2)::after { content: "02"; }
.why-item:nth-of-type(3)::after { content: "03"; }
.why-item:nth-of-type(4)::after { content: "04"; }
.why-item p {
  margin-top: 11px;
  font-size: 0.98rem;
  color: var(--gray-800);
}

@media (min-width: 700px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
}

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  gap: 44px;
}
.contact-about p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  margin-top: 18px;
}
.contact-about h2 { color: var(--white); }

.contact-card {
  background: var(--black-soft);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}
.contact-card h3 { color: var(--white); margin-bottom: 4px; }
.contact-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--on-dark-line);
  transition: padding-left 0.22s var(--ease);
}
.contact-link:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-link:hover { padding-left: 6px; }
.contact-label {
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--orange);
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.btn-contact { text-align: center; margin-top: 6px; }

@media (min-width: 820px) {
  .contact-inner { grid-template-columns: 1.12fr 0.88fr; align-items: start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 3px solid transparent;
  border-image: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 10px,
    var(--black) 10px 20px
  ) 3;
}
.footer-inner {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--on-dark-muted);
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--orange);
}

@media (min-width: 600px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Interior page hero ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, var(--orange-glow), transparent 62%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--black);
  padding: 56px 0 88px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px));
  text-align: center;
}
.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero .kicker { color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.95rem, 5vw, 2.9rem);
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--white);
  margin: 0;
}
.page-hero-lede {
  margin-top: 16px;
  max-width: 620px;
  font-size: clamp(1rem, 2.4vw, 1.14rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
}

/* ---------- Intake form ---------- */
.intake-wrap { max-width: 780px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.field-group {
  border: none;
  margin: 0 0 34px;
  padding: 0;
}
.field-group:last-of-type { margin-bottom: 26px; }
.field-legend {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--black);
  padding: 0 0 14px;
  margin-bottom: 4px;
  width: 100%;
  border-bottom: 2px solid var(--cream-line);
}

.field { margin-top: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 7px;
}
.req { color: var(--orange-deep); }
.field-hint {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: -2px 0 9px;
}
.field-group > .field-hint { margin-top: 12px; }

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--cream-line);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.intake-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.intake-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6353' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.intake-form input::placeholder,
.intake-form textarea::placeholder { color: #a9a293; }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.16);
}
.intake-form input:user-invalid,
.intake-form textarea:user-invalid { border-color: #d64545; }

.field-row { display: grid; gap: 0; }
.field-row .field { margin-top: 18px; }

@media (min-width: 620px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .field-row-3 { grid-template-columns: 2fr 0.8fr 1fr; }
}

/* radio cards */
.radio-group { display: grid; gap: 10px; }
/* scoped past `.field label { display: block }`, which otherwise wins on specificity */
.radio-group .radio-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 0;
  padding: 15px 17px;
  background: var(--white);
  border: 1.5px solid var(--cream-line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 400;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.radio-card:hover { border-color: var(--orange); }
.radio-card input[type="radio"] {
  accent-color: var(--orange);
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}
.radio-card span {
  display: block;
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.radio-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--black);
  margin-bottom: 2px;
}
.radio-card:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 106, 26, 0.06);
}
.radio-card:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.16);
}

.form-actions {
  border-top: 2px solid var(--cream-line);
  padding-top: 24px;
}
.form-actions .btn-primary {
  width: 100%;
  padding: 17px 30px;
  font-size: 1.05rem;
  border: none;
  font-family: var(--font-display);
}
.form-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--gray-600);
  text-align: center;
}
.form-note a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 620px) {
  .form-card { padding: 40px 38px; }
  .form-actions .btn-primary { width: auto; min-width: 240px; }
  .form-actions { display: flex; flex-direction: column; align-items: center; }
}

/* ---------- Thank-you screen ---------- */
.confirm-screen {
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, var(--orange-glow), transparent 62%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--black);
  min-height: calc(100vh - 66px - 76px);
  display: flex;
  align-items: center;
  padding: 70px 0;
}
.confirm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.confirm-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  position: relative;
  margin-bottom: 26px;
}
.confirm-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 24px;
  height: 12px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}
.confirm-screen h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3rem);
  letter-spacing: -0.022em;
  color: var(--white);
  margin: 0;
}
.confirm-lede {
  margin-top: 16px;
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
}
.confirm-sub {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--on-dark-muted);
  margin-bottom: 30px;
}
.confirm-sub a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Scroll reveal (JS-gated, no-JS shows everything) ---------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal [data-reveal],
  .js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation: none !important; }
}
