:root {
  --bg: #070707;
  --bg-soft: #0f0f0f;
  --panel: #141414;
  --red: #b71f20;
  --red-hot: #e11d25;
  --cream: #ebe8cb;
  --white: #f5f5f0;
  --silver: #9c9c96;
  --line: #2f2f2d;
  --muted: #a8a8a2;
  --max: 1220px;
  --serif: Baskerville, "Baskerville Old Face", "Times New Roman", serif;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(183,31,32,.14), transparent 28rem),
    linear-gradient(180deg, #080808, #050505 70%);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--red-hot); color: white; }

.site-shell { min-height: 100vh; overflow: hidden; }
.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.wordmark { display:flex; align-items:center; gap:12px; text-decoration:none; text-transform:uppercase; letter-spacing:.18em; font-size:.78rem; }
.wordmark-mark { width:40px; height:40px; display:grid; place-items:center; border:1px solid var(--cream); color:var(--cream); font-family:var(--serif); font-size:1rem; letter-spacing:0; transform:rotate(45deg); }
.wordmark-mark::after { content:""; position:absolute; inset:4px; border:1px solid rgba(183,31,32,.65); }
.wordmark strong { font-weight:600; }
.site-nav { display:flex; align-items:center; gap:28px; font-size:.78rem; text-transform:uppercase; letter-spacing:.16em; }
.site-nav a { text-decoration:none; color:#d7d7d1; }
.site-nav a:hover, .site-nav a.active { color:var(--cream); }
.nav-cta { border:1px solid var(--red); padding:10px 18px; }
.menu-toggle { display:none; background:none; color:white; border:1px solid var(--line); padding:8px 12px; text-transform:uppercase; letter-spacing:.12em; cursor:pointer; }

.ornamental-frame { position: relative; }
.ornamental-frame::before,
.ornamental-frame::after {
  content:"";
  position:absolute;
  pointer-events:none;
}
.ornamental-frame::before { inset: 18px; border:1px solid rgba(235,232,203,.15); }
.ornamental-frame::after { left:18px; right:18px; top:18px; height:3px; background:linear-gradient(90deg, var(--red), transparent 22%, transparent 78%, var(--red)); }

.hero, .booking-hero {
  width:min(calc(100% - 40px), var(--max));
  margin:34px auto 0;
  min-height:690px;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  align-items:center;
  gap:40px;
  padding:92px 82px;
  background:linear-gradient(145deg, #131313 0%, #0a0a0a 58%, #15100f 100%);
  border:1px solid #262626;
}
.hero-copy, .booking-hero > div { position:relative; z-index:2; }
.eyebrow { margin:0 0 18px; color:var(--red-hot); text-transform:uppercase; letter-spacing:.22em; font-size:.76rem; font-weight:700; }
h1,h2,h3 { margin:0; font-family:var(--serif); line-height:.98; font-weight:500; }
h1 { font-size:clamp(3.6rem, 7vw, 7.2rem); letter-spacing:-.045em; }
h1 em, h2 em { color:var(--cream); font-weight:400; }
h2 { font-size:clamp(2.5rem, 4.6vw, 4.9rem); letter-spacing:-.035em; }
h3 { font-size:2rem; }
.hero-lede { max-width:680px; color:#c7c7c1; font-size:1.08rem; margin:28px 0 0; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:12px 20px; text-decoration:none; text-transform:uppercase; letter-spacing:.13em; font-size:.74rem; font-weight:700; transition:.2s ease; }
.button-primary { background:var(--red); color:white; border:1px solid var(--red-hot); box-shadow:0 8px 35px rgba(183,31,32,.18); }
.button-primary:hover { background:var(--red-hot); transform:translateY(-2px); }
.button-ghost { background:transparent; border:1px solid #4a4a46; color:var(--cream); cursor:pointer; }
.button-ghost:hover { background:rgba(235,232,203,.06); border-color:var(--cream); }
.button-large { min-width:230px; min-height:58px; }
.microcopy { max-width:600px; color:#797975; font-size:.78rem; margin-top:18px; }
.hero-logo-wrap { position:relative; z-index:1; display:grid; place-items:center; min-height:500px; }
.hero-logo { width:min(100%, 420px); filter:drop-shadow(0 24px 30px rgba(0,0,0,.55)); }
.logo-glow { position:absolute; width:330px; height:330px; border-radius:50%; background:rgba(183,31,32,.12); filter:blur(60px); }

.marquee { width:100%; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin:34px 0 0; overflow:hidden; color:#8f8f8b; }
.marquee-track { min-width:max-content; display:flex; align-items:center; gap:28px; padding:13px 0; text-transform:uppercase; letter-spacing:.22em; font-size:.71rem; animation: marquee 38s linear infinite; }
.marquee-track b { color:var(--red); }
@keyframes marquee { to { transform:translateX(-40%); } }

.section { width:min(calc(100% - 40px), var(--max)); margin:0 auto; padding:110px 0; }
.section-heading { display:grid; grid-template-columns:1.25fr .75fr; align-items:end; gap:70px; margin-bottom:48px; }
.section-heading > p { color:#9d9d98; margin:0; max-width:520px; }

.portfolio-grid {
  columns: 3 300px;
  column-gap: 14px;
}
.portfolio-item {
  width:100%;
  display:block;
  margin:0 0 14px;
  padding:0;
  border:1px solid #282828;
  background:#0e0e0e;
  cursor:zoom-in;
  break-inside:avoid;
  overflow:hidden;
  position:relative;
}
.portfolio-item::after {
  content:"VIEW";
  position:absolute;
  right:12px;
  bottom:12px;
  padding:7px 9px;
  background:rgba(6,6,6,.82);
  border:1px solid rgba(235,232,203,.28);
  color:var(--cream);
  font-size:.62rem;
  letter-spacing:.18em;
  opacity:0;
  transform:translateY(4px);
  transition:.2s ease;
}
.portfolio-item img {
  width:100%;
  height:auto;
  transition:transform .35s ease, filter .35s ease;
}
.portfolio-item:hover { border-color:rgba(225,29,37,.75); }
.portfolio-item:hover img { transform:scale(1.015); filter:brightness(.92); }
.portfolio-item:hover::after { opacity:1; transform:translateY(0); }
.portfolio-note { color:#696965; font-size:.78rem; margin:18px 0 0; }

.lightbox {
  width:min(94vw, 1100px);
  height:min(94vh, 1100px);
  padding:0;
  border:1px solid #353532;
  background:#050505;
  overflow:hidden;
}
.lightbox::backdrop { background:rgba(0,0,0,.88); backdrop-filter:blur(8px); }
.lightbox img { width:100%; height:100%; object-fit:contain; }
.lightbox-close {
  position:absolute;
  z-index:2;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border:1px solid rgba(235,232,203,.3);
  background:rgba(0,0,0,.78);
  color:white;
  font-size:1.7rem;
  line-height:1;
  cursor:pointer;
}

.about-section { padding-top:20px; }
.about-panel { display:grid; grid-template-columns:1fr 1fr; gap:90px; padding:72px; background:#101010; border:1px solid #272727; position:relative; }
.ornamental-frame-small::before { content:""; position:absolute; inset:14px; border:1px solid rgba(235,232,203,.09); pointer-events:none; }
.about-copy p { color:#aaa9a4; margin:0 0 20px; }
.about-copy em { color:var(--cream); font-family:var(--serif); font-size:1.08em; }
.text-link { display:inline-block; margin-top:12px; color:var(--cream); text-decoration:none; border-bottom:1px solid var(--red); padding-bottom:4px; }

.booking-callout { border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:60px; }
.booking-callout-copy { max-width:760px; }
.booking-callout-copy p:last-child { color:#91918c; max-width:680px; }

.site-footer { width:min(calc(100% - 40px), var(--max)); margin:0 auto; min-height:150px; display:flex; justify-content:space-between; gap:30px; align-items:center; border-top:1px solid var(--line); color:#777772; font-size:.78rem; }
.site-footer div:first-child { display:flex; flex-direction:column; gap:4px; }
.site-footer strong { color:#d8d8d2; text-transform:uppercase; letter-spacing:.14em; }
.footer-links { display:flex; flex-wrap:wrap; gap:22px; }
.footer-links a { text-decoration:none; }
.footer-links a:hover { color:var(--cream); }

/* Booking page */
.booking-hero { min-height:560px; padding-block:72px; grid-template-columns:1.3fr .7fr; }
.booking-hero h1 { font-size:clamp(3.2rem, 6vw, 6.4rem); }
.booking-logo { width:min(100%,320px); justify-self:center; opacity:.78; filter:drop-shadow(0 22px 28px rgba(0,0,0,.6)); }
.booking-intro { display:grid; grid-template-columns:260px 1fr; gap:90px; align-items:start; }
.booking-index { position:sticky; top:28px; border-left:1px solid var(--red); padding-left:22px; display:flex; flex-direction:column; gap:10px; }
.booking-index a { text-decoration:none; color:#777772; font-size:.76rem; text-transform:uppercase; letter-spacing:.11em; padding:3px 0; }
.booking-index a:hover { color:var(--cream); }
.booking-content { border-top:1px solid var(--line); }
.booking-block { display:grid; grid-template-columns:78px 1fr; gap:26px; padding:68px 0; border-bottom:1px solid var(--line); scroll-margin-top:40px; }
.booking-block .step { font-family:var(--serif); font-size:3.3rem; color:rgba(235,232,203,.16); line-height:1; }
.booking-block h2 { font-size:clamp(2.1rem, 4vw, 4.2rem); max-width:820px; margin-bottom:28px; }
.booking-block p { color:#a4a49f; max-width:820px; }
.booking-block strong { color:#e2e2dc; }
.notice { margin-top:28px; max-width:820px; border-left:3px solid var(--red); background:#121212; padding:20px 22px; }
.notice strong { display:block; color:var(--cream); text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; }
.notice p { margin:8px 0 0; }
.notice.subtle { border-color:#44443f; }
.style-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; max-width:840px; }
.style-tags span { border:1px solid #31312e; background:#0d0d0d; color:#c7c7c1; padding:8px 11px; font-size:.7rem; text-transform:uppercase; letter-spacing:.11em; }
.check-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:26px 0; max-width:820px; }
.check-grid > div { border:1px solid #292929; padding:20px; display:flex; gap:15px; background:#0e0e0e; }
.check-grid span { color:var(--red-hot); font-weight:700; }
.check-grid p { margin:0; font-size:.9rem; }
.clean-list { max-width:780px; list-style:none; padding:0; margin:24px 0 0; }
.clean-list li { padding:13px 0 13px 24px; border-bottom:1px solid #242424; color:#a4a49f; position:relative; }
.clean-list li::before { content:"◆"; position:absolute; left:0; color:var(--red); font-size:.55rem; top:18px; }
.schedule-section { padding-top:60px; scroll-margin-top:20px; }
.scheduler-shell { border:1px solid #2d2d2b; padding:10px; background:#fff; min-height:820px; }
.scheduler-shell iframe { width:100%; min-height:800px; display:block; border:0; background:#fff; }
.final-note { text-align:center; padding-top:50px; }
.final-note h2 { max-width:940px; margin:0 auto 30px; }

@media (max-width: 900px) {
  .site-header { min-height:72px; }
  .wordmark strong { display:none; }
  .menu-toggle { display:block; }
  .site-nav { position:absolute; top:70px; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:0; background:#0a0a0a; border:1px solid #282828; padding:12px; }
  .site-nav.open { display:flex; }
  .site-nav a { padding:14px; border-bottom:1px solid #202020; }
  .nav-cta { border:0; }
  .hero, .booking-hero { grid-template-columns:1fr; min-height:0; padding:70px 36px 44px; }
  .hero-logo-wrap { min-height:380px; }
  .hero-logo { width:300px; }
  .booking-logo { width:220px; }
  .section-heading, .about-panel { grid-template-columns:1fr; gap:28px; }
  .portfolio-grid { columns:2 260px; }
  .booking-callout { align-items:flex-start; flex-direction:column; }
  .booking-intro { grid-template-columns:1fr; gap:35px; }
  .booking-index { position:static; display:grid; grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header, .hero, .booking-hero, .section, .site-footer { width:min(calc(100% - 24px), var(--max)); }
  .hero, .booking-hero { margin-top:12px; padding:58px 24px 34px; }
  .ornamental-frame::before { inset:10px; }
  .ornamental-frame::after { left:10px; right:10px; top:10px; }
  h1 { font-size:3.45rem; }
  .hero-logo-wrap { min-height:300px; }
  .hero-logo { width:235px; }
  .section { padding:78px 0; }
  .section-heading { margin-bottom:30px; }
  .portfolio-grid { columns:1; }
  .portfolio-item::after { opacity:1; transform:none; }
  .about-panel { padding:44px 28px; }
  .site-footer { align-items:flex-start; flex-direction:column; padding:35px 0; }
  .booking-index { grid-template-columns:1fr; }
  .booking-block { grid-template-columns:1fr; gap:8px; padding:52px 0; }
  .booking-block .step { font-size:2.2rem; }
  .check-grid { grid-template-columns:1fr; }
  .scheduler-shell { padding:0; border-left:0; border-right:0; margin-inline:-12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .marquee-track { animation:none; }
  .button, .portfolio-item img, .portfolio-item::after { transition:none; }
}

/* Mobile-first refinements */
.wordmark-mark { position: relative; }
.mobile-book-bar { display:none; }

@media (max-width: 620px) {
  body { padding-bottom:72px; }

  .site-header {
    min-height:64px;
    position:relative;
  }

  .wordmark-mark {
    width:36px;
    height:36px;
    font-size:.9rem;
  }

  .menu-toggle {
    min-height:40px;
    padding-inline:14px;
  }

  .site-nav {
    top:62px;
    box-shadow:0 18px 40px rgba(0,0,0,.55);
  }

  .hero, .booking-hero {
    padding:52px 22px 30px;
  }

  h1 { font-size:clamp(3rem, 15vw, 3.75rem); }
  h2 { font-size:clamp(2.3rem, 11vw, 3.15rem); }

  .hero-lede {
    font-size:1rem;
    line-height:1.65;
  }

  .hero-actions {
    display:grid;
    grid-template-columns:1fr;
  }

  .button {
    width:100%;
    min-height:52px;
  }

  .hero-logo-wrap { min-height:245px; }
  .hero-logo { width:205px; }

  .section { padding:68px 0; }

  .section-heading > p {
    font-size:.94rem;
    line-height:1.65;
  }

  /* Two-column masonry on most phones keeps all 20 pieces easy to scan.
     Tapping still opens the uncropped, full image in the lightbox. */
  .portfolio-grid {
    columns:2;
    column-gap:8px;
  }

  .portfolio-item {
    margin-bottom:8px;
    border-color:#222;
  }

  .portfolio-item::after { display:none; }

  .portfolio-note {
    margin-top:14px;
    line-height:1.5;
  }

  .about-panel {
    padding:38px 22px;
  }

  .booking-callout {
    gap:26px;
  }

  .booking-index {
    border-left:0;
    border-top:1px solid var(--red);
    padding:18px 0 0;
  }

  .booking-block {
    padding:44px 0;
  }

  .booking-block h2 {
    margin-bottom:22px;
  }

  .notice {
    padding:18px;
  }

  .style-tags span {
    font-size:.64rem;
  }

  .schedule-section {
    padding-top:42px;
  }

  .scheduler-shell {
    margin-inline:-12px;
    min-height:760px;
  }

  .scheduler-shell iframe {
    min-height:760px;
  }

  .mobile-book-bar {
    display:flex;
    position:fixed;
    left:12px;
    right:12px;
    bottom:10px;
    z-index:50;
    min-height:52px;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.13em;
    font-size:.72rem;
    font-weight:700;
    color:#fff;
    background:var(--red);
    border:1px solid var(--red-hot);
    box-shadow:0 12px 34px rgba(0,0,0,.65), 0 6px 24px rgba(183,31,32,.22);
  }

  .site-footer {
    padding-bottom:24px;
  }
}

@media (max-width: 340px) {
  .portfolio-grid { columns:1; }
}

/* V4 featured-work hero */
.hero-feature {
  grid-template-columns:minmax(0, .92fr) minmax(390px, 1.08fr);
  gap:0;
  padding:0;
  min-height:720px;
  overflow:hidden;
  background:#090909;
}

.hero-feature .hero-copy {
  padding:88px 68px 82px;
  align-self:center;
}

.hero-art {
  position:relative;
  align-self:stretch;
  min-height:718px;
  overflow:hidden;
  border-left:1px solid rgba(235,232,203,.12);
  background:#050505;
}

.hero-feature-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 37%;
  filter:contrast(1.04) saturate(.92) brightness(.88);
}

.hero-art-shade {
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,7,7,.62) 0%, rgba(7,7,7,.12) 24%, transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 58%, rgba(0,0,0,.72));
}

.hero-logo-badge {
  position:absolute;
  top:34px;
  right:34px;
  width:128px;
  padding:10px;
  background:rgba(5,5,5,.72);
  border:1px solid rgba(235,232,203,.22);
  backdrop-filter:blur(8px);
  box-shadow:0 18px 45px rgba(0,0,0,.4);
}

.hero-logo-badge img { width:100%; height:auto; }

.hero-art-caption {
  position:absolute;
  left:28px;
  bottom:26px;
  z-index:2;
  color:rgba(245,245,240,.88);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.63rem;
  padding:9px 12px;
  background:rgba(5,5,5,.68);
  border-left:2px solid var(--red-hot);
  backdrop-filter:blur(8px);
}

@media (max-width:900px) {
  .hero-feature {
    grid-template-columns:1fr;
    padding:0;
  }

  .hero-feature .hero-copy {
    padding:62px 42px 54px;
  }

  .hero-art {
    min-height:590px;
    border-left:0;
    border-top:1px solid rgba(235,232,203,.12);
  }
}

@media (max-width:620px) {
  .hero-feature {
    display:flex;
    flex-direction:column;
    padding:0;
    margin-top:12px;
  }

  .hero-feature .hero-art {
    order:-1;
    min-height:455px;
    height:54vh;
    max-height:520px;
  }

  .hero-feature-image {
    object-position:50% 34%;
    filter:contrast(1.05) saturate(.92) brightness(.92);
  }

  .hero-art-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.7) 100%);
  }

  .hero-logo-badge {
    top:18px;
    right:18px;
    width:94px;
    padding:7px;
  }

  .hero-art-caption {
    left:18px;
    bottom:17px;
    max-width:72%;
    font-size:.56rem;
    letter-spacing:.13em;
  }

  .hero-feature .hero-copy {
    padding:36px 22px 34px;
  }

  .hero-feature h1 {
    font-size:clamp(2.85rem, 14vw, 3.55rem);
  }

  .hero-feature .hero-lede { margin-top:20px; }
  .hero-feature .hero-actions { margin-top:26px; }
}

/* V5 guided booking intake */
.intake-hero { min-height:600px; }
.intake-overview { padding-top:76px; }
.process-row { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.process-row > div { min-height:210px; padding:26px 24px; border:1px solid #292929; background:#0e0e0e; display:flex; flex-direction:column; }
.process-row span { font-family:var(--serif); font-size:2.4rem; line-height:1; color:rgba(235,232,203,.2); margin-bottom:28px; }
.process-row strong { color:var(--cream); font-size:.82rem; text-transform:uppercase; letter-spacing:.1em; }
.process-row p { color:#8f8f89; font-size:.88rem; line-height:1.55; margin:10px 0 0; }

.form-section { padding-top:42px; }
.form-shell { display:grid; grid-template-columns:minmax(260px,.68fr) minmax(0,1.32fr); gap:70px; align-items:start; }
.form-intro { position:sticky; top:28px; }
.form-intro h2 { font-size:clamp(2.7rem,4.5vw,4.7rem); max-width:600px; }
.form-intro > p:not(.eyebrow) { color:#969690; max-width:520px; }
.form-help-card { margin-top:30px; padding:22px; border-left:3px solid var(--red); background:#101010; max-width:520px; }
.form-help-card strong { color:var(--cream); text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; }
.form-help-card p { color:#92928c; margin:8px 0 0; font-size:.9rem; }

.intake-card { border:1px solid #2a2a2a; background:#0d0d0d; }
.form-progress { padding:24px 30px 22px; border-bottom:1px solid #252525; background:#0a0a0a; }
.form-progress-meta { display:flex; justify-content:space-between; gap:20px; color:#81817c; text-transform:uppercase; letter-spacing:.11em; font-size:.67rem; }
#step-title { color:var(--cream); text-align:right; }
.progress-track { height:3px; background:#262626; margin-top:15px; overflow:hidden; }
.progress-track span { display:block; height:100%; width:20%; background:var(--red-hot); transition:width .25s ease; }

#tattoo-intake { padding:0; }
.form-step { border:0; margin:0; padding:42px 36px 26px; display:none; min-width:0; }
.form-step.is-active { display:block; }
.form-step legend { color:var(--cream); font-family:var(--serif); font-size:clamp(2rem,3vw,3.2rem); line-height:1.02; padding:0; margin-bottom:12px; }
.step-copy { color:#969690; line-height:1.65; max-width:760px; margin:0 0 30px; }
.field-grid { display:grid; gap:18px; margin-bottom:18px; }
.field-grid.two-col { grid-template-columns:1fr 1fr; }
.field { display:block; margin-bottom:22px; }
.field > span, .upload-field > span { display:block; color:#d9d9d4; font-size:.75rem; text-transform:uppercase; letter-spacing:.095em; margin-bottom:9px; font-weight:700; }
.field b, .check-field b { color:var(--red-hot); }
.field input, .field select, .field textarea { width:100%; border:1px solid #30302d; background:#080808; color:#f0f0e9; padding:14px 15px; border-radius:0; font:inherit; outline:none; }
.field input, .field select { min-height:52px; }
.field textarea { resize:vertical; line-height:1.55; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:#77766e; box-shadow:0 0 0 2px rgba(235,232,203,.06); }
.field small, .upload-field small { display:block; color:#6f6f6a; font-size:.76rem; line-height:1.45; margin-top:7px; }
.field ::placeholder { color:#555550; }
.hidden-field { position:absolute; left:-99999px; width:1px; height:1px; overflow:hidden; }

.choice-grid { display:grid; gap:10px; margin-top:10px; }
.choice-grid.three-col { grid-template-columns:repeat(3,1fr); }
.choice { display:block; position:relative; }
.choice input { position:absolute; opacity:0; pointer-events:none; }
.choice span { min-height:58px; display:flex; align-items:center; justify-content:center; text-align:center; padding:10px 12px; border:1px solid #30302d; background:#080808; color:#969690; font-size:.76rem; text-transform:uppercase; letter-spacing:.08em; cursor:pointer; transition:.15s ease; }
.choice input:checked + span { color:#fff; border-color:var(--red-hot); background:rgba(183,31,32,.18); box-shadow:inset 0 0 0 1px rgba(232,39,40,.3); }
.choice input:focus-visible + span { outline:2px solid var(--cream); outline-offset:2px; }

.check-field { display:flex; align-items:flex-start; gap:12px; padding:15px 0; color:#b2b2ac; font-size:.9rem; line-height:1.5; cursor:pointer; }
.check-field input { flex:0 0 auto; width:20px; height:20px; margin-top:1px; accent-color:var(--red-hot); }
.important-check { border-top:1px solid #252525; padding:18px 0; }
.final-ack { margin-top:10px; }

.conditional-coverup { margin-top:20px; padding:20px; background:#121212; border-left:2px solid var(--red); }
.reference-note { border-left:3px solid #4c4c47; background:#111; padding:18px 20px; margin-bottom:26px; }
.reference-note strong { display:block; color:var(--cream); text-transform:uppercase; letter-spacing:.1em; font-size:.7rem; }
.reference-note p { color:#90908a; margin:8px 0 0; font-size:.88rem; }
.upload-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:22px; }
.upload-field { display:block; padding:18px; border:1px dashed #3a3a36; background:#090909; min-height:135px; }
.upload-field input { width:100%; color:#888883; font-size:.8rem; }
.upload-field input::file-selector-button { border:1px solid #4a4a45; background:#151515; color:#dddcd4; padding:9px 10px; margin-right:10px; cursor:pointer; }
.form-tags { margin:0 0 28px; }
.form-notice { margin:0 0 16px; }

.review-card { border:1px solid #30302d; background:#090909; padding:22px; margin:28px 0 18px; }
.review-card .eyebrow { margin-bottom:12px; }
#request-summary { color:#aaa9a3; font-size:.9rem; line-height:1.65; }
#request-summary strong { color:#e3e3dd; }

.form-actions { display:flex; justify-content:space-between; gap:12px; padding:24px 36px 36px; border-top:1px solid #252525; }
.form-actions button { -webkit-appearance:none; appearance:none; }
.form-actions .form-back { background-color:#0d0d0d !important; color:var(--cream); }
.form-actions .form-back:hover { background-color:#171715 !important; }
.form-actions .button { min-width:160px; }
.form-actions .form-next, .form-actions .form-submit { margin-left:auto; }
.form-error { color:#ff7777; min-height:20px; margin:-18px 36px 28px; font-size:.82rem; }
.after-form-note { text-align:center; max-width:980px; }
.after-form-note h2 { margin-inline:auto; }
.after-form-note > p:last-child { color:#969690; max-width:760px; margin:22px auto 0; }

.thank-hero { min-height:580px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; padding:82px 70px; }
.thank-hero h1 { max-width:1050px; }
.thank-hero .hero-lede { max-width:760px; }
.success-mark { width:54px; height:54px; display:grid; place-items:center; background:var(--red); color:#fff; font-size:1.5rem; margin-bottom:28px; border:1px solid var(--red-hot); }
.thank-schedule { padding-top:76px; }
.thank-final-note > p:last-child { max-width:760px; margin:20px auto 0; color:#92928c; }

@media (max-width:1000px) {
  .process-row { grid-template-columns:1fr 1fr; }
  .form-shell { grid-template-columns:1fr; gap:34px; }
  .form-intro { position:static; }
}

@media (max-width:620px) {
  .intake-hero { padding-bottom:38px; }
  .intake-hero .booking-logo { width:155px; justify-self:start; margin-top:8px; }
  .process-row { grid-template-columns:1fr; }
  .process-row > div { min-height:0; padding:22px; }
  .process-row span { margin-bottom:18px; }
  .form-section { padding-top:20px; }
  .intake-card { margin-inline:-12px; border-left:0; border-right:0; }
  .form-progress { padding:20px 18px; }
  .form-step { padding:32px 18px 22px; }
  .form-step legend { font-size:2.15rem; }
  .field-grid.two-col, .choice-grid.three-col, .upload-grid { grid-template-columns:1fr; }
  .choice span { min-height:52px; justify-content:flex-start; text-align:left; }
  .upload-field { min-height:0; }
  .form-actions { padding:20px 18px 28px; position:sticky; bottom:68px; z-index:12; background:linear-gradient(180deg,rgba(13,13,13,.94),#0d0d0d 28%); }
  .form-actions .form-back { background:#0d0d0d !important; border-color:#4a4a46; color:var(--cream); -webkit-appearance:none; appearance:none; }
  .form-actions .button { min-width:0; flex:1; padding-inline:12px; font-size:.65rem; }
  .form-error { margin:-14px 18px 22px; }
  .thank-hero { min-height:0; padding:62px 24px 48px; }
  .thank-nav { display:flex; position:static; flex-direction:row; background:none; border:0; padding:0; }
  .thank-nav a:first-child { display:none; }
}
