/* =========================================================
   TOPNOTCH DETAILLAB — PRODUCTION STYLE.CSS
   Mobile-first correction and visual polish pass.
========================================================= */

:root {
  --bg: #060607;
  --bg-soft: #0b0b0d;
  --panel: #111114;
  --panel-raised: #17171b;
  --text: #f7f7f8;
  --muted: #b8b8be;
  --muted-soft: #8d8d95;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --red: #d9142b;
  --red-bright: #ff3048;
  --red-dark: #740811;
  --red-deep: #3d050a;
  --gold: #c8a363;
  --gold-soft: rgba(200, 163, 99, 0.16);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  --shadow-strong: 0 28px 84px rgba(0, 0, 0, 0.5);
  --overlay-opacity: 0.76;
  --overlay-blur: 14px;
  --radius: 24px;
  --radius-small: 16px;
  --max-width: 1180px;
  --header-height: 78px;
  --sticky-actions-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 4%, rgba(217, 20, 43, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(61, 5, 10, 0.45), transparent 24rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 96%);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: rgba(217, 20, 43, 0.8);
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-dark {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 20, 43, 0.1), transparent 38rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005)),
    var(--bg-soft);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  z-index: 10000;
  padding: 11px 15px;
  border-radius: 12px;
  color: #050505;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red-bright), #fff);
  box-shadow: 0 0 14px rgba(217, 20, 43, 0.45);
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217, 20, 43, 0.11), transparent 68%);
  transition: opacity 0.2s ease;
}

.announcement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  min-height: 40px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  font-size: 0.82rem;
}

.announcement p {
  margin: 0;
  line-height: 1.35;
}

.announcement a {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(6, 6, 7, 0.86);
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .site-header {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(6, 6, 7, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(217, 20, 43, 0.18));
}

.brand span {
  display: grid;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand strong {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1.08rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button)[aria-current="page"] {
  color: #fff;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button)[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 48, 72, 0.78);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red) 56%, var(--red-dark));
  box-shadow: 0 14px 34px rgba(116, 8, 17, 0.3);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 38px rgba(116, 8, 17, 0.38);
}

.button:active,
.button.pressed {
  transform: translateY(0) scale(0.985);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-wide {
  width: 100%;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #ff6073;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1,
.section-heading h2,
.tool-copy h2,
.hero-grid h2,
.split h2,
.final-cta h2,
.page-hero h1,
.trust-item h2,
.service-card h3,
.recovery-panel h3,
.coming-soon h3,
.why-card h3,
.about-card h3,
.process-grid h3,
.selection-banner h2,
.builder-summary-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.tool-copy h2,
.split h2 {
  font-size: clamp(2.2rem, 8vw, 4.9rem);
}

.section-heading > p:last-child,
.tool-copy > p:last-child,
.split > div > p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.page-hero {
  position: relative;
  padding: 66px 0 42px;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  top: -22%;
  left: -16%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(217, 20, 43, 0.12), transparent 66%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 11vw, 6.4rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
}

.page-hero .hero-actions {
  margin-top: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 7ch;
  font-size: clamp(3.8rem, 16vw, 8.5rem);
  line-height: 0.84;
}

.hero h1 .hero-line {
  display: block;
}

.hero h1 .hero-accent {
  color: var(--red-bright);
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 3.8vw, 1.18rem);
}

.tagline {
  margin-top: 18px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-trust {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-trust li::before {
  color: var(--red-bright);
  font-weight: 950;
  content: "✓";
}

.hero-visual {
  min-width: 0;
  overflow: clip;
}

.logo-stage {
  position: relative;
  display: grid;
  min-height: 276px;
  place-items: center;
  overflow: clip;
}

.logo-stage::before {
  position: absolute;
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(217, 20, 43, 0.2), transparent 64%);
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: min(232px, 78%);
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.64));
  animation: floatLogo 8s ease-in-out infinite;
}

.stage-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.ring-one {
  width: 290px;
  height: 290px;
  border-top-color: rgba(255, 48, 72, 0.78);
  border-left-color: rgba(200, 163, 99, 0.22);
  animation: rotateRingOuter 28s linear infinite;
}

.ring-two {
  width: 222px;
  height: 222px;
  border-right-color: rgba(200, 163, 99, 0.32);
  border-bottom-color: rgba(217, 20, 43, 0.28);
  animation: rotateRingInner 21s linear infinite;
}

.stage-label {
  position: absolute;
  right: 12px;
  bottom: 8px;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(200, 163, 99, 0.28);
  border-radius: 999px;
  background: rgba(17, 17, 20, 0.85);
  color: #fff;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(34px);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-orb-one {
  top: 8%;
  right: -6%;
  width: 240px;
  height: 240px;
  background: rgba(217, 20, 43, 0.5);
}

.hero-orb-two {
  bottom: -4%;
  left: -10%;
  width: 180px;
  height: 180px;
  opacity: 0.05;
  background: rgba(255, 255, 255, 0.6);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

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

.trust-item {
  display: flex;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-item > span {
  color: var(--red-bright);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.trust-item h2 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.service-card.featured {
  border-color: rgba(217, 20, 43, 0.56);
  box-shadow: 0 0 0 1px rgba(217, 20, 43, 0.14), 0 24px 74px rgba(61, 5, 10, 0.34);
}

.service-card.featured::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(140deg, rgba(255, 48, 72, 0.7), rgba(200, 163, 99, 0.28), transparent 58%, rgba(255, 255, 255, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card.featured::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  transform: translateX(-140%);
}

.service-card.featured.visible::after {
  animation: premiumShine 1.1s ease-out 160ms 1 both;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badges span {
  padding: 6px 10px;
  border: 1px solid rgba(217, 20, 43, 0.24);
  border-radius: 999px;
  color: #ffd9dd;
  background: rgba(217, 20, 43, 0.1);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-top {
  min-width: 0;
}

.card-kicker {
  margin: 0;
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(2.1rem, 8vw, 2.7rem);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.price small {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price span {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
}

.service-summary {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--red-bright);
  font-weight: 900;
  content: "✓";
}

.package-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.service-card .button {
  width: 100%;
}

.text-link {
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: #fff;
}

.pricing-disclaimer,
.fine-print {
  color: var(--muted-soft) !important;
  font-size: 0.9rem !important;
}

.pricing-disclaimer {
  margin: 18px 0 0;
}

.recovery-panel {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(217, 20, 43, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 50%, rgba(217, 20, 43, 0.14), transparent 34%),
    linear-gradient(120deg, rgba(217, 20, 43, 0.08), rgba(255, 255, 255, 0.018));
}

.recovery-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.35rem);
}

.recovery-panel p {
  margin: 0 0 12px;
  color: var(--muted);
}

.comparison-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.table-hint {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #151517;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tbody td:not(:first-child) {
  font-weight: 700;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 26px;
}

.tool-copy {
  position: static;
}

.finder-card,
.booking-form,
.selection-banner,
.local-preview-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
}

label .label-note,
.field-hint,
.form-note,
.local-preview-note p,
.selection-required-note {
  color: var(--muted-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  background: #0b0b0d;
  font-size: 16px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #71717a;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: #101013;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 48, 72, 0.7);
  box-shadow: 0 0 0 4px rgba(217, 20, 43, 0.1);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.result-box {
  min-height: 72px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(217, 20, 43, 0.3);
  border-radius: 16px;
  background: rgba(217, 20, 43, 0.08);
}

.finder-action {
  display: none;
  margin-top: 14px;
}

.finder-action.visible {
  display: block;
}

.coming-soon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 50%, rgba(217, 20, 43, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.coming-soon img {
  width: 180px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.7));
}

.coming-soon > div {
  min-width: 0;
}

.coming-soon h3 {
  font-size: clamp(2rem, 8vw, 3.4rem);
  overflow-wrap: anywhere;
}

.coming-soon p,
.coming-soon .hero-actions,
.coming-soon .button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.coming-soon p,
.why-card p,
.about-card p,
.process-grid p,
details p,
.selection-banner p,
.booking-selection-price,
.booking-selection-items,
.booking-no-selection,
.photo-requirement,
.builder-items-list,
.builder-message {
  color: var(--muted);
}

.why-grid,
.about-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card,
.about-card,
.process-grid li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-card::before,
.about-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(217, 20, 43, 0.5), transparent);
}

.why-card,
.about-card {
  position: relative;
  overflow: hidden;
}

.why-card:hover,
.about-card:hover,
.process-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 20, 43, 0.34);
}

.why-card h3,
.about-card h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.process-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  border-top: 1px solid rgba(255, 48, 72, 0.58);
  background: linear-gradient(180deg, rgba(217, 20, 43, 0.08), transparent), var(--panel);
}

.process-grid li > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-bright);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps-five {
  grid-template-columns: 1fr;
}

.booking-form {
  max-width: 980px;
  margin-inline: auto;
}

.form-progress {
  height: 5px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.form-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), #fff);
  box-shadow: 0 0 12px rgba(217, 20, 43, 0.44);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.booking-location-section {
  grid-column: 1 / -1;
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.02);
}

.booking-location-copy {
  margin-bottom: 18px;
}

.booking-location-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-location-copy p {
  margin: 0;
  color: var(--muted);
}

.booking-arrival-window {
  display: grid;
  gap: 8px;
}

.booking-arrival-window label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-location-grid {
  gap: 0 18px;
}

.service-location-grid .service-location-parking {
  grid-column: 1 / -1;
}

.service-location-grid .field-hint {
  margin: -8px 0 0;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-bottom: 20px;
}

.consent input {
  width: auto;
  min-height: auto;
  margin: 4px 0 0;
  accent-color: var(--red);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: #ff8996;
  font-weight: 700;
}

.form-status.info {
  color: #cfd4db;
}

.form-status.success {
  color: #9ee9bd;
}

.field-error {
  border-color: rgba(255, 48, 72, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(217, 20, 43, 0.12) !important;
}

.field-feedback {
  min-height: 18px;
  margin: -10px 0 16px;
  color: #ff8996;
  font-size: 0.88rem;
  font-weight: 600;
}

.field-feedback:empty {
  display: none;
}

.field-feedback.success {
  color: #9ee9bd;
}

.selection-banner {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px 22px;
  border-color: rgba(217, 20, 43, 0.36);
  background:
    radial-gradient(circle at 0 50%, rgba(217, 20, 43, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.025);
}

.selection-banner[hidden] {
  display: none;
}

.selection-banner-label {
  margin: 0;
  color: #ff7082;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selection-banner h2 {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
}

.selection-banner-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.selection-banner-actions,
.no-selection-actions {
  display: grid;
  gap: 10px;
}

.selection-banner-actions .button,
.no-selection-actions .button {
  width: 100%;
}

.booking-selection-summary {
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(217, 20, 43, 0.36);
  border-radius: var(--radius-small);
  background:
    radial-gradient(circle at 0 50%, rgba(217, 20, 43, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.025);
}

.booking-selection-summary h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.booking-selection-price {
  margin: 0 0 14px;
}

.booking-selection-price strong {
  color: #fff;
}

.booking-selection-details {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.booking-selection-details div {
  display: grid;
  gap: 4px;
}

.booking-selection-details span {
  color: var(--muted-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-selection-details strong {
  color: #fff;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.booking-selection-items {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
}

.booking-selection-items li {
  padding: 4px 0;
}

.booking-selection-items li::before {
  margin-right: 7px;
  color: var(--red-bright);
  content: "✓";
}

.booking-no-selection {
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.booking-no-selection h2 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.photo-requirement {
  display: none;
  padding: 20px;
  margin: 0 0 20px;
  border: 1px solid rgba(217, 20, 43, 0.38);
  border-radius: 16px;
  background: rgba(217, 20, 43, 0.08);
  font-size: 0.94rem;
}

.photo-requirement.visible {
  display: block;
}

.photo-requirement strong {
  display: block;
  color: #ff8897;
  margin-bottom: 6px;
}

.photo-requirement span {
  display: block;
}

.local-preview-note {
  margin-bottom: 20px;
  border-color: rgba(255, 255, 255, 0.12);
}

.local-preview-note h2 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 6vw, 2.4rem);
  text-transform: uppercase;
}

.builder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.builder-panel,
.builder-summary-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: var(--shadow);
}

.builder-panel {
  margin-bottom: 18px;
}

.builder-panel h3 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-service-list {
  display: grid;
  gap: 10px;
}

.builder-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.builder-item input[type="checkbox"],
.builder-item input[type="radio"] {
  width: auto;
  min-height: auto;
  margin: 6px 0 0;
  accent-color: var(--red);
  flex-shrink: 0;
}

.builder-item label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  margin: 0;
  cursor: pointer;
}

.builder-item-copy {
  display: grid;
  gap: 4px;
}

.builder-item-copy strong {
  color: #fff;
  font-size: 0.98rem;
}

.builder-item-copy small {
  color: var(--muted-soft);
  font-size: 0.85rem;
  line-height: 1.45;
}

.builder-item-price,
.builder-item-assessment {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.builder-item-price {
  color: #ff7b8b;
}

.builder-item-assessment {
  color: #ffd17d;
}

.builder-item.is-selected {
  border-color: rgba(217, 20, 43, 0.62);
  background: rgba(217, 20, 43, 0.08);
  box-shadow: inset 0 0 0 1px rgba(217, 20, 43, 0.12);
}

.builder-item.is-selected .builder-item-price {
  color: #fff;
}

.builder-item.is-disabled {
  opacity: 0.46;
  pointer-events: none;
}

.builder-item.assessment-selected {
  border-color: rgba(255, 209, 125, 0.4);
  background: rgba(255, 209, 125, 0.06);
}

.builder-sidebar {
  position: static;
}

.builder-summary-card h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.builder-total-wrap {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 16px 0 14px;
}

.builder-total-label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.builder-total-amount {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 9vw, 3.1rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  transition: transform 0.18s ease;
}

.builder-total-amount.bump {
  transform: scale(1.03);
}

.builder-breakdown {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.builder-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.builder-breakdown-row strong {
  color: #fff;
}

.builder-breakdown-row[hidden] {
  display: none;
}

.builder-items-list {
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 40px;
  font-size: 0.92rem;
}

.builder-items-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.builder-items-list li:last-child {
  border-bottom: 0;
}

.builder-message {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.builder-message.info {
  border: 1px solid rgba(217, 20, 43, 0.28);
  background: rgba(217, 20, 43, 0.06);
  color: #ff9eaa;
}

.builder-message.assessment {
  border: 1px solid rgba(255, 209, 125, 0.3);
  background: rgba(255, 209, 125, 0.06);
  color: #ffd17d;
}

.builder-message.recommend {
  border: 1px solid rgba(200, 163, 99, 0.24);
  background: rgba(200, 163, 99, 0.05);
  color: #f3dec0;
}

.bundle-recommendation {
  display: none;
}

.bundle-recommendation.visible {
  display: block;
}

.bundle-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.builder-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.material-selector {
  margin-bottom: 20px;
}

.faq-list {
  max-width: 920px;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 4px;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--red-bright);
  font-size: 1.4rem;
  content: "+";
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 780px;
  margin: 0 0 22px;
}

.final-cta {
  padding: 84px 0;
  border-block: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 5, 10, 0.34), transparent 38%),
    #09090b;
}

.final-cta h2 {
  font-size: clamp(3rem, 10vw, 5.8rem);
}

.final-cta p {
  max-width: 640px;
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 32px 0 calc(108px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.mobile-actions {
  position: fixed;
  inset: auto 10px calc(10px + env(safe-area-inset-bottom));
  z-index: 950;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(9, 9, 10, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.46);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .mobile-actions {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.mobile-actions a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-right: 1px solid var(--line);
  color: #fff;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-actions a:first-child,
.mobile-actions a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(255, 48, 72, 0.92), rgba(116, 8, 17, 0.95));
}

.mobile-actions a:last-child {
  border-right: 0;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(104px + env(safe-area-inset-bottom));
  z-index: 900;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 17, 20, 0.9);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .back-to-top {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.back-to-top:hover {
  border-color: var(--red-bright);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  transition-delay: var(--reveal-delay);
}

.reveal-eyebrow {
  transform: translateY(12px);
}

.reveal-title {
  transform: translate(-10px, 14px);
}

.reveal-copy {
  transform: translateY(14px);
}

.reveal-actions,
.reveal-trust {
  transform: translateY(12px);
}

.reveal-stage {
  transform: translateY(12px) scale(0.97);
}

.reveal-card {
  transform: translateY(16px) scale(0.99);
}

.reveal-cta {
  transform: translateY(12px) scale(0.99);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.45deg);
  }
}

@keyframes rotateRingOuter {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRingInner {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes drift {
  from {
    transform: translate(-10px, -8px);
  }
  to {
    transform: translate(12px, 10px);
  }
}

@keyframes premiumShine {
  0% {
    opacity: 0;
    transform: translateX(-140%);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(140%);
  }
}

@media (min-width: 581px) {
  .selection-banner-actions,
  .no-selection-actions,
  .bundle-actions,
  .builder-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .selection-banner-actions .button:last-child,
  .no-selection-actions .button:last-child,
  .bundle-actions .button:last-child,
  .builder-actions .button:last-child {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(var(--max-width), calc(100% - 48px));
  }

  .section {
    padding: 96px 0;
  }

  .hero {
    padding: 72px 0 92px;
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }

  .trust-item {
    padding-right: 24px;
  }

  .why-grid,
  .about-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recovery-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 104px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 56px;
    align-items: center;
  }

  .logo-stage {
    min-height: 510px;
  }

  .logo-stage img {
    width: min(410px, 86%);
  }

  .ring-one {
    width: 430px;
    height: 430px;
  }

  .ring-two {
    width: 330px;
    height: 330px;
  }

  .stage-label {
    right: 0;
    bottom: 12%;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust-item {
    padding: 30px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tool-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 44px;
  }

  .tool-copy {
    position: sticky;
    top: 116px;
  }

  .coming-soon {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }

  .coming-soon img {
    width: 200px;
  }

  .builder-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }

  .builder-sidebar {
    position: sticky;
    top: 116px;
  }

  .steps-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-grid.steps-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-actions {
    display: none;
  }

  .back-to-top {
    bottom: 22px;
    right: 22px;
  }

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


@media (min-width: 1280px) {
  .steps-five,
  .process-grid.steps-five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(46px + var(--header-height)) 12px auto;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 156px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 9, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav > a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav > a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.04);
  }

  .site-nav .button {
    margin-top: 8px;
    width: 100%;
  }
}


@media (max-width: 580px) {
  .page-hero h1,
  .section-heading h2,
  .tool-copy h2,
  .hero-grid h2,
  .split h2,
  .final-cta h2 {
    overflow-wrap: anywhere;
  }

  .ring-one {
    width: min(280px, calc(100% - 24px));
    height: min(280px, calc(100% - 24px));
  }

  .ring-two {
    width: min(212px, calc(100% - 72px));
    height: min(212px, calc(100% - 72px));
  }

  .announcement {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    font-size: 0.76rem;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .page-hero {
    padding-top: 56px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-card,
  .finder-card,
  .booking-form,
  .recovery-panel,
  .coming-soon,
  .builder-panel,
  .builder-summary-card,
  .selection-banner,
  .local-preview-note {
    padding: 22px;
  }

  .builder-item label {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .service-card:hover,
  .why-card:hover,
  .about-card:hover,
  .process-grid li:hover,
  .button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .stage-ring,
  .logo-stage img,
  .hero-orb {
    animation: none !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .scroll-progress,
  .cursor-glow,
  .mobile-actions,
  .back-to-top,
  .button,
  .hero-orb,
  .stage-ring {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  .section,
  .hero,
  .final-cta {
    padding: 28px 0;
    color: #111;
    background: #fff;
  }

  .service-card,
  .why-card,
  .booking-form,
  .coming-soon,
  .recovery-panel,
  .builder-panel,
  .builder-summary-card {
    border: 1px solid #ccc;
    color: #111;
    background: #fff;
    box-shadow: none;
  }
}

body.admin-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 20, 43, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(61, 5, 10, 0.34), transparent 24rem),
    var(--bg);
}

body.admin-detail-open {
  overflow: hidden;
}

body.admin-confirmation-open {
  overflow: hidden;
}

.admin-shell {
  padding-bottom: 56px;
}

.admin-page-hero {
  padding-bottom: 20px;
}

.admin-home-link {
  display: inline-flex;
  margin-top: 10px;
}

.admin-auth-wrap,
.admin-dashboard-wrap {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.admin-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: var(--shadow);
}

.admin-login-card {
  max-width: 560px;
}

.admin-card-header {
  margin-bottom: 18px;
}

.admin-card-header h2,
.admin-dashboard-header h2,
.admin-detail-header h2,
.admin-empty-state h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-card-header h2 {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 0.95;
}

.admin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #ff6073;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-kicker::before {
  width: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.admin-login-form,
.admin-detail-content,
.admin-detail-grid,
.admin-detail-actions,
.admin-action-buttons,
.admin-booking-list {
  min-width: 0;
}

.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field label {
  margin: 0;
}

.admin-field input,
.admin-field select {
  margin-bottom: 0;
}

.admin-status {
  min-height: 24px;
  margin: 0;
  color: #cfd4db;
  word-break: break-word;
}

.admin-status.is-info {
  color: #cfd4db;
}

.admin-status.is-success {
  color: #9ee9bd;
}

.admin-status.is-error {
  color: #ff8996;
}

.admin-dashboard {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.admin-dashboard-header {
  display: grid;
  gap: 16px;
}

.admin-dashboard-header h2 {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 0.94;
}

.admin-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-toolbar {
  display: grid;
  gap: 14px;
}

.admin-toolbar input,
.admin-toolbar select {
  margin-bottom: 0;
}

.admin-count-card {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 16px 18px;
  border: 1px solid rgba(217, 20, 43, 0.28);
  border-radius: 18px;
  background: rgba(217, 20, 43, 0.08);
}

.admin-count-card span {
  color: #ff9eaa;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-count-card strong {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  line-height: 0.94;
}

.admin-booking-list {
  display: grid;
  gap: 16px;
}

.admin-empty-state,
.admin-booking-card,
.admin-detail-section {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: var(--shadow);
}

.admin-empty-state {
  padding: 22px;
}

.admin-empty-state h3 {
  font-size: 1.8rem;
}

.admin-empty-state p {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-booking-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.admin-booking-card.is-new {
  border-color: rgba(217, 20, 43, 0.54);
  box-shadow: 0 0 0 1px rgba(217, 20, 43, 0.08), var(--shadow);
}

.admin-booking-card.is-active {
  border-color: rgba(255, 255, 255, 0.28);
}

.admin-booking-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-card-kicker,
.admin-detail-label,
.admin-summary-row span {
  display: inline-flex;
  color: var(--muted-soft);
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-booking-card h3 {
  margin: 6px 0 0;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-status-pill[data-status="new"] {
  border-color: rgba(217, 20, 43, 0.36);
  background: rgba(217, 20, 43, 0.12);
}

.admin-status-pill[data-status="confirmed"] {
  border-color: rgba(158, 233, 189, 0.32);
  background: rgba(158, 233, 189, 0.08);
}

.admin-status-pill[data-status="more_info_needed"] {
  border-color: rgba(255, 209, 125, 0.32);
  background: rgba(255, 209, 125, 0.08);
}

.admin-status-pill[data-status="declined"] {
  border-color: rgba(255, 137, 150, 0.32);
  background: rgba(255, 137, 150, 0.08);
}

.admin-status-pill[data-status="completed"] {
  border-color: rgba(200, 163, 99, 0.32);
  background: rgba(200, 163, 99, 0.08);
}

.admin-status-pill[data-status="cancelled"] {
  border-color: rgba(185, 185, 190, 0.28);
  background: rgba(185, 185, 190, 0.08);
}

.admin-summary-grid {
  display: grid;
  gap: 12px;
}

.admin-summary-row {
  display: grid;
  gap: 4px;
}

.admin-summary-row strong,
.admin-detail-value,
.admin-detail-link {
  min-width: 0;
  color: #fff;
  overflow-wrap: anywhere;
}

.admin-detail-value {
  margin: 0;
}

.admin-detail-pre {
  white-space: pre-wrap;
}

.admin-card-actions {
  display: grid;
  gap: 10px;
  align-items: center;
}

.admin-request-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 20, 43, 0.28);
  background: rgba(217, 20, 43, 0.12);
  color: #ffd9dd;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-view-button {
  width: 100%;
}

.admin-detail-panel {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  justify-content: flex-end;
}

.admin-detail-panel[hidden] {
  display: none;
}

.admin-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.admin-detail-sheet {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 680px);
  height: 100%;
  border-left: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: -24px 0 72px rgba(0, 0, 0, 0.52);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .admin-detail-sheet {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.admin-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-detail-header h2 {
  margin-top: 4px;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.admin-detail-close {
  flex-shrink: 0;
}

.admin-detail-content {
  display: grid;
  gap: 14px;
  overflow-y: auto;
  padding: 20px;
}

.admin-detail-hero {
  padding: 20px;
  border-color: rgba(217, 20, 43, 0.34);
  background:
    radial-gradient(circle at 0 50%, rgba(217, 20, 43, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.02);
}

.admin-detail-hero h3 {
  margin: 10px 0 6px;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.admin-detail-hero-meta {
  margin: 0;
  color: var(--muted);
}

.admin-detail-grid {
  display: grid;
  gap: 14px;
}

.admin-detail-section {
  padding: 18px;
}

.admin-detail-section h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-detail-row {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.admin-detail-row:last-child {
  margin-bottom: 0;
}

.admin-detail-link {
  text-decoration: none;
}

.admin-detail-link:hover {
  color: #ff9eaa;
}

.admin-detail-list-wrap {
  display: grid;
  gap: 8px;
}

.admin-detail-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.admin-detail-location-actions .button {
  width: auto;
}

.admin-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.admin-detail-actions {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(217, 20, 43, 0.26);
  border-radius: 22px;
  background: rgba(217, 20, 43, 0.06);
}

.admin-action-buttons {
  display: grid;
  gap: 10px;
}

.admin-action-buttons .button,
.admin-detail-actions .button {
  width: 100%;
}

.admin-detail-note {
  margin: 0;
  color: #f3dec0;
}

.admin-confirmation-panel {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.admin-confirmation-panel[hidden] {
  display: none;
}

.admin-confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity));
}

.admin-confirmation-sheet {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 760px);
  max-height: calc(100dvh - 24px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--bg-soft);
  box-shadow: var(--shadow-strong);
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .admin-confirmation-sheet {
    -webkit-backdrop-filter: blur(var(--overlay-blur));
    backdrop-filter: blur(var(--overlay-blur));
  }
}

.admin-confirmation-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-confirmation-header h2 {
  margin: 4px 0 0;
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.admin-confirmation-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-confirmation-close {
  flex-shrink: 0;
}

.admin-confirmation-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  overflow-y: auto;
  padding: 20px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.admin-confirmation-status {
  min-height: 24px;
}

.admin-confirmation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-confirmation-location,
.admin-confirmation-message {
  grid-column: 1 / -1;
}

.admin-confirmation-form .admin-field input,
.admin-confirmation-form .admin-field textarea {
  width: 100%;
  min-height: 50px;
}

.admin-confirmation-form .admin-field textarea {
  resize: vertical;
  min-height: 120px;
}

.admin-confirmation-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-confirmation-actions .button {
  width: 100%;
}

@media (min-width: 640px) {
  .admin-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-card-actions {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .admin-view-button {
    width: auto;
    justify-self: end;
  }

  .admin-confirmation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .admin-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) auto;
    align-items: end;
  }

  .admin-dashboard-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .admin-booking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .admin-auth-wrap,
  .admin-dashboard-wrap {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .admin-detail-sheet {
    width: 100%;
  }

  .admin-detail-header,
  .admin-detail-content {
    padding: 16px;
  }

  .admin-confirmation-panel {
    padding: 0;
    align-items: stretch;
  }

  .admin-confirmation-sheet {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }

  .admin-confirmation-header,
  .admin-confirmation-form {
    padding: 16px;
  }

  .admin-confirmation-grid,
  .admin-confirmation-actions {
    grid-template-columns: 1fr;
  }
}
