/* =========================================================
   Ryland's Mobile Detailing — Stylesheet
   Theme: purple + white, hexagon texture
   ========================================================= */

:root {
  --bg: #ffffff;          /* page background */
  --bg-2: #f5f2fb;        /* tinted panel background */
  --bg-3: #ffffff;        /* raised card */
  --purple: #8b2fe2;      /* brand purple */
  --purple-bright: #7c3aed;  /* accent that holds up on white */
  --purple-deep: #5b18a3;
  --purple-glow: rgba(139, 47, 226, 0.45);
  --chrome: #14101c;      /* primary text */
  --silver: #4a4458;      /* secondary text */
  --muted: #736c85;       /* tertiary text */
  --line: rgba(139, 47, 226, 0.28);
  --line-soft: rgba(16, 13, 24, 0.10);
  --card-shadow: 0 12px 34px -24px rgba(16, 13, 24, 0.65);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--silver);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--chrome);
  line-height: 1.08;
  margin: 0 0 0.4em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }
a { color: var(--purple-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.grad {
  background: linear-gradient(100deg, var(--purple-bright), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--purple-bright);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.75rem; font-weight: 700; color: var(--purple-bright);
  margin: 0 0 0.9em;
}
.ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.85em 1.7em; border-radius: 999px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  border: 1.5px solid transparent; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(100deg, var(--purple-deep), var(--purple));
  color: #fff; box-shadow: 0 8px 24px -8px var(--purple-glow);
}
.btn-primary:hover { box-shadow: 0 12px 30px -8px var(--purple-glow); color: #fff; }
.btn-outline { background: transparent; color: var(--chrome); border-color: var(--line); }
.btn-outline:hover { border-color: var(--purple); background: rgba(139,47,226,0.08); color: var(--purple-deep); }
.btn-block { width: 100%; }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }
.btn:active { transform: translateY(0) scale(0.98); }

/* ---------- Hex background texture ---------- */
.hex-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(700px 380px at 85% -10%, rgba(139,47,226,0.10), transparent 60%),
    radial-gradient(600px 400px at 5% 110%, rgba(139,47,226,0.07), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cpath fill='none' stroke='%238b2fe2' stroke-opacity='0.14' stroke-width='1' d='M28 0l24 14v28L28 56 4 42V14zM28 56l24 14v28M28 56L4 70v28'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat;
}

/* ---------- Top call bar ---------- */
.topbar { background: linear-gradient(90deg, var(--purple-deep), var(--purple)); color: #fff; font-size: 0.85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: center; min-height: 38px; gap: 16px; text-align: center; }
.topbar-note { color: rgba(255,255,255,0.9); letter-spacing: 0.02em; }

/* ---------- Header / Nav ---------- */
.site-header {
  --sms-w: 330px;
  position: sticky; top: 0; z-index: 50;
  background: #fff; backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,13,24,0.10);
  box-shadow: 0 1px 16px rgba(8,7,12,0.10);
}
.nav-inner { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand:hover { text-decoration: none; }
.logo-word {
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: 1.5rem; letter-spacing: 0.02em;
  background: linear-gradient(180deg, #191122 10%, var(--purple) 65%, var(--purple-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-sub { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.42em; font-size: 0.56rem; color: #6f6880; margin-top: 3px; }

.nav-center { display: flex; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 0.5em 0.9em;
  color: #352f42; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.04em; font-weight: 500; font-size: 0.92rem; border-radius: 8px;
}
.nav-links a:hover { text-decoration: none; color: var(--purple-deep); background: rgba(139,47,226,0.10); }
.nav-book { flex-shrink: 0; }

/* Full-height SMS block anchored to the right edge of the header */
.nav-sms {
  flex-shrink: 0; align-self: stretch; margin-bottom: -1px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 clamp(18px, 2.4vw, 30px);
  background: linear-gradient(100deg, var(--purple-deep), var(--purple));
  color: #fff; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-sms { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease; }
.past-hero .nav-sms { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-sms:hover { text-decoration: none; color: #fff; background: linear-gradient(100deg, var(--purple), var(--purple-bright)); }
.nav-sms strong { font-weight: 700; }
.nav-sms .ico { width: 19px; height: 19px; }
@media (min-width: 1180px) {
  .nav-sms { position: absolute; top: 0; right: 0; bottom: -1px; width: var(--sms-w); }
  .nav-inner { padding-right: calc(var(--sms-w) + 24px); }
}
@media (max-width: 1179px) {
  .nav-links a { padding: 0.5em 0.6em; font-size: 0.85rem; }
  .nav-sms { font-size: 0.88rem; padding: 0 16px; gap: 8px; }
  .nav-inner { padding-right: 0; }
}
@media (max-width: 1060px) {
  .nav-sms .sms-label { display: none; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span:not(.sr-only) { width: 24px; height: 2px; background: #2a2333; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: #fff; padding: clamp(28px, 4vw, 56px) 0; text-align: left; min-height: calc(100svh - 110px); display: flex; align-items: center; }
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: none;
  margin: 0; padding: 0 24px 0 clamp(20px, 4vw, 64px);
  display: flex; flex-direction: column; align-items: flex-start;
}


/* Background video + low-lit overlay */
.hero-video {
  position: absolute; top: 0; right: 0; bottom: 0; left: auto;
  width: 82%; height: 100%; object-fit: cover; object-position: center; z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 38%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 38%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.72) 34%, rgba(255,255,255,0.34) 55%, rgba(255,255,255,0) 72%);
}
.hero h1 { color: #000; font-size: clamp(1.9rem, min(6vw, 7svh), 3.8rem); max-width: 19ch; margin: 0 0 0.28em; }
.hero-sub { font-size: clamp(1rem, min(2.2vw, 2.4svh), 1.3rem); color: #14101c; max-width: 46ch; margin: 0 0 2.4rem; }
.hero h1 .grad { background: linear-gradient(100deg, var(--purple-deep), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .pstars { color: var(--purple-deep); }
.hero .btn-outline { color: #14101c; border-color: rgba(16,13,24,0.28); background: rgba(255,255,255,0.55); }
.hero .btn-outline:hover { color: #fff; background: var(--purple); border-color: var(--purple); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 12px; margin: 0 0 0.7rem; }
.hero-reply {
  display: inline-flex; align-items: center; gap: 7px; margin: 0 0 0.85rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.82rem; color: var(--purple-deep);
}
.hero-reply .ico { width: 15px; height: 15px; stroke-width: 2.2; }
.hero-fine { margin: 0; font-size: 0.82rem; color: #322c40; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 10px 24px; text-align: center; line-height: 1.1; }
.trust-cell { display: flex; align-items: baseline; justify-content: center; gap: 7px; flex-wrap: wrap; }
.trust-cell-link { text-decoration: none; transition: opacity 0.2s ease; }
.trust-cell-link:hover { opacity: 0.72; }
.trust-cell strong { font-family: var(--font-head); font-size: 0.98rem; color: var(--purple-bright); letter-spacing: 0.04em; }
.trust-cell span { font-size: 0.7rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.07em; }

/* ---------- Section basics ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 52px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-sub { color: var(--silver); font-size: 1.08rem; }

/* ---------- The problem ---------- */
.problem { background: var(--bg); }
.problem-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.problem-card {
  background: var(--bg-3); border: 1px solid var(--line-soft); border-left: 3px solid var(--purple);
  border-radius: var(--radius-sm); padding: 24px 22px; box-shadow: var(--card-shadow);
}
.problem-card h3 { font-size: 1.06rem; margin-bottom: 0.35em; }
.problem-card p { color: var(--silver); font-size: 0.94rem; margin: 0; }
.problem-close {
  text-align: center; margin: 34px 0 0; color: var(--chrome); font-size: 1.02rem;
}
.problem-close a { font-weight: 600; }
@media (max-width: 960px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .problem-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.how { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { list-style: none; counter-reset: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 22px 26px; box-shadow: var(--card-shadow); }
.step-num {
  position: absolute; top: -16px; left: 22px;
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(100deg, var(--purple-deep), var(--purple)); color: #fff;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  box-shadow: 0 8px 20px -10px var(--purple-glow);
}
.step h3 { font-size: 1.06rem; margin: 6px 0 0.35em; }
.step p { color: var(--silver); font-size: 0.94rem; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  position: relative; background: var(--bg-3); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--card-shadow); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--purple); box-shadow: 0 20px 50px -24px var(--purple-glow); }
.svc-card.featured { border-color: var(--purple); box-shadow: 0 0 0 1px var(--purple), 0 24px 60px -28px var(--purple-glow); }
.svc-badge {
  position: absolute; top: -12px; left: 26px;
  background: linear-gradient(100deg, var(--purple), var(--purple-bright)); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
}
.svc-badge.alt { background: transparent; color: var(--purple-bright); border: 1px solid var(--purple); }
.svc-ico { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: rgba(139,47,226,0.12); margin-bottom: 18px; }
.svc-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--purple-bright); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 0.2em; }
.svc-price { font-family: var(--font-head); color: var(--silver); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; margin-bottom: 1em; }
.svc-price strong { color: var(--chrome); font-size: 1.6rem; }
.svc-price .per { font-size: 0.95rem; color: var(--silver); margin-left: 2px; }
.svc-list { list-style: none; margin: 0 0 1.6em; padding: 0; }
.svc-list li { position: relative; padding-left: 1.6em; margin-bottom: 0.5em; color: var(--silver); font-size: 0.95rem; }
.svc-list li::before { content: "◈"; position: absolute; left: 0; color: var(--purple-bright); font-size: 0.8em; top: 0.2em; }

.addons { margin-top: 40px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; text-align: center; }
.addons h3 { font-size: 1.3rem; }
.addon-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 1em 0 1.2em; padding: 0; }
.addon-list li { background: #fff; border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem; color: var(--silver); }
.addons-note { color: var(--muted); font-size: 0.9rem; margin: 0; }

.chip { display: inline-block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--purple-bright); background: rgba(139,47,226,0.16); border-radius: 999px; padding: 2px 9px; margin-left: 6px; vertical-align: middle; }


/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: linear-gradient(90deg, var(--purple-deep), var(--purple)); padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; color: #fff; font-size: 1rem; padding-right: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 26px; margin: 0; box-shadow: var(--card-shadow); }
.review-card.is-placeholder { border-style: dashed; }
.stars { color: var(--purple-bright); letter-spacing: 0.15em; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 1em; color: var(--chrome); font-size: 1.02rem; font-style: italic; }
.review-card figcaption { color: var(--silver); font-weight: 600; font-size: 0.9rem; }
.reviews-cta { text-align: center; margin: 32px 0 0; color: var(--silver); }

/* ---------- Service area ---------- */
.area { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.area-copy p { color: var(--silver); font-size: 1.08rem; }
.area-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.area-list li { background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); border-left: 3px solid var(--purple); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--chrome); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 4px 24px; box-shadow: var(--card-shadow); }
.faq-item summary { cursor: pointer; list-style: none; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.05rem; color: var(--chrome); padding: 18px 34px 18px 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--purple-bright); }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: var(--silver); margin: 0 0 18px; }

/* ---------- Book / Contact ---------- */
.book { position: relative; isolation: isolate; overflow: hidden; background: radial-gradient(900px 500px at 50% 120%, #f1e7ff, var(--bg) 70%); }
.book-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.book-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.book-copy p { color: var(--silver); font-size: 1.08rem; }
.book-contacts { list-style: none; margin: 1.4em 0 0; padding: 0; display: grid; gap: 14px; }
.book-contacts a, .book-contacts span { display: inline-flex; align-items: center; gap: 12px; color: var(--chrome); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.05rem; }
.book-contacts a:hover { text-decoration: none; color: var(--purple-bright); }
.book-contacts .ico { width: 22px; height: 22px; color: var(--purple-bright); }

.biz-facts {
  margin: 1.6em 0 0; padding: 20px 22px; display: grid; grid-template-columns: auto 1fr; gap: 8px 20px;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--purple); border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
}
.biz-facts dt {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.74rem; color: var(--muted); padding-top: 2px; white-space: nowrap;
}
.biz-facts dd { margin: 0; font-size: 0.93rem; color: var(--chrome); }
@media (max-width: 520px) {
  .biz-facts { grid-template-columns: 1fr; gap: 2px; padding: 18px; }
  .biz-facts dd { margin-bottom: 10px; }
  .biz-facts dd:last-child { margin-bottom: 0; }
}

.book-form { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; box-shadow: 0 30px 70px -34px rgba(16,13,24,0.45); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--silver); text-transform: uppercase; letter-spacing: 0.06em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  background: #fff; border: 1.5px solid rgba(16,13,24,0.18); border-radius: 10px; color: var(--chrome);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,47,226,0.2); }
.book-form .btn { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; text-align: center; font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding: 56px 24px 40px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 14px 0 0; max-width: 34ch; }
.footer-brand .logo-word { font-size: 1.4rem; }
.footer-tag { color: var(--purple-bright) !important; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem !important; font-weight: 600; }
.footer-col h4 { font-size: 0.95rem; color: var(--chrome); margin-bottom: 14px; letter-spacing: 0.08em; }
.footer-col a, .footer-col span { display: block; color: var(--silver); font-size: 0.92rem; margin-bottom: 9px; }
.footer-col a:hover { color: var(--purple-bright); text-decoration: none; }
.footer-book { margin-top: 8px; }
.footer-col a.btn, .footer-col a.btn:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom .container { padding-top: 20px; padding-bottom: 20px; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -18px rgba(16,13,24,0.6); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 12px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.mb-call { background: #fff; color: var(--chrome); border: 1.5px solid var(--line); }
.mb-call:hover, .mb-call:active { text-decoration: none; color: var(--purple-deep); }
.mb-text { background: linear-gradient(100deg, var(--purple-deep), var(--purple)); color: #fff; flex: 1.4; }
.mb-text:hover, .mb-text:active { text-decoration: none; color: #fff; }
.mobile-bar { transform: translateY(110%); transition: transform 0.28s ease; }
.past-hero .mobile-bar { transform: none; }

/* ---------- Focus + reduced motion ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--purple-bright); outline-offset: 2px; border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .service-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .area-inner, .book-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-center { position: absolute; top: 72px; left: 0; right: 0; display: none; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; background: #fff; border-bottom: 1px solid rgba(16,13,24,0.10); padding: 12px 24px 20px; box-shadow: 0 20px 40px -20px rgba(8,7,12,0.45); }
  .nav-center.open { display: block; }
  .nav-toggle { display: flex; order: 3; }
  .nav-book, .nav-sms { display: none; }
  .topbar-note { font-size: 0.78rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 620px) {
  .service-grid, .review-grid, .trust-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .book-form { grid-template-columns: 1fr; padding: 24px; }
  .trust-grid { gap: 24px; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease-out, transform 0.55s ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Priced add-on cards ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin: 1.4em 0 1.2em; text-align: left; }
.addon-card { position: relative; background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 24px 22px; box-shadow: var(--card-shadow); }
.addon-card.promo { border-color: var(--purple); box-shadow: 0 0 0 1px var(--purple), 0 16px 40px -24px var(--purple-glow); }
.addon-flag { position: absolute; top: -11px; right: 16px; background: linear-gradient(100deg, var(--purple), var(--purple-bright)); color: #fff; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 999px; }
.addon-card h4 { font-size: 1.12rem; margin-bottom: 4px; }
.addon-price { font-family: var(--font-head); margin: 0 0 8px; }
.addon-price strong { color: var(--chrome); font-size: 1.5rem; }
.addon-price s { color: var(--muted); font-size: 1rem; margin-right: 6px; }
.addon-desc { color: var(--silver); font-size: 0.9rem; margin: 0; }

/* ---------- Showcase / image section ---------- */
.showcase { background: var(--bg); }
.showcase-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.showcase-photo {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; padding: 20px;
  border: 2px dashed var(--line); color: var(--muted);
  background:
    radial-gradient(420px 300px at 50% 30%, rgba(139,47,226,0.20), transparent 70%),
    repeating-linear-gradient(45deg, rgba(16,13,24,0.02) 0 16px, rgba(16,13,24,0.05) 16px 32px);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem; line-height: 1.7;
}
.showcase-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.showcase-copy p { color: var(--silver); font-size: 1.08rem; }

@media (max-width: 820px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .addon-grid { grid-template-columns: 1fr; }
}

/* Area chip link (Greater Orlando — Call) */
.area-list a { color: inherit; }
.area-list a:hover { color: var(--purple-bright); text-decoration: none; }

/* ---------- Conversion polish (proof cluster, savings, form microcopy) ---------- */
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px; margin: 0 0 1.9rem; padding: 0; }
.hero-proof li { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; color: #000; background: rgba(255,255,255,0.72); border: 1px solid rgba(16,13,24,0.16); border-radius: 999px; padding: 6px 14px; }
.pstars { color: var(--purple-bright); letter-spacing: 0.05em; }

.svc-save { color: var(--purple-bright); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.8rem; margin: -0.7em 0 1em; }

.opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.85em; }
.hint { color: var(--muted); font-size: 0.78rem; margin-top: 3px; display: block; }
.form-reassure { grid-column: 1 / -1; text-align: center; color: var(--silver); font-size: 0.85rem; margin: 4px 0 0; }
.field input[type="file"] {
  padding: 10px 12px; font-size: 0.9rem; background: #fff;
  border: 1.5px dashed rgba(16,13,24,0.24); border-radius: 10px; color: var(--silver); cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.78rem;
  padding: 7px 14px; margin-right: 12px; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--purple); color: #fff;
}

.book-guarantee { color: var(--purple-bright); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.92rem; margin: 0.4em 0 0; }

/* ---------- Membership section ---------- */
.membership { position: relative; isolation: isolate; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.membership-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: center; }
.membership-copy h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.membership-copy p { color: var(--silver); font-size: 1.1rem; }
.membership-perks { list-style: none; margin: 1.2em 0 0; padding: 0; display: grid; gap: 12px; }
.membership-perks li { position: relative; padding-left: 1.9em; color: var(--chrome); font-size: 1.02rem; }
.membership-perks li::before { content: "✓"; position: absolute; left: 0; color: var(--purple-bright); font-weight: 700; }

.membership-price { position: relative; background: #fff; border: 1px solid var(--purple); border-radius: var(--radius); padding: 36px 30px; text-align: center; box-shadow: 0 0 0 1px var(--purple), 0 24px 60px -28px var(--purple-glow); }
.mp-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(100deg, var(--purple), var(--purple-bright)); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.74rem; font-weight: 600; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.mp-amount { font-family: var(--font-head); color: var(--chrome); line-height: 1; margin: 6px 0 6px; }
.mp-amount strong { font-size: 3.2rem; }
.mp-amount span { color: var(--silver); font-size: 1.1rem; }
.mp-save { color: var(--purple-bright); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; margin: 0 0 1.2em; }
.mp-note { color: var(--muted); font-size: 0.82rem; margin: 0.9em 0 0; }

@media (max-width: 820px) {
  .membership-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Booking success message ---------- */
.book-success { background: #fff; border: 1px solid var(--purple); border-radius: var(--radius); padding: 40px 32px; text-align: center; box-shadow: 0 0 0 1px var(--purple), 0 24px 60px -28px var(--purple-glow); }
.book-success h3 { color: var(--chrome); font-size: 1.5rem; }
.book-success p { color: var(--silver); margin: 0; }

/* ---------- Work gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: 0 20px 50px -30px rgba(16,13,24,0.65); }
.gallery-item img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Secondary "or call" link ---------- */
.btn-call { display: inline-flex; align-items: center; gap: 8px; padding: 0.75em 0.4em; font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.03em; color: var(--silver); text-decoration: none; transition: color 0.2s ease; }
.btn-call span { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.btn-call .ico { width: 15px; height: 15px; stroke-width: 2.2; flex: none; }
.btn-call:hover { color: var(--purple-bright); }
.btn-call:hover span { border-bottom-color: var(--purple-bright); }
@media (max-width: 480px) { .btn-call { padding-left: 0; } }

/* ---------- Google reviews ---------- */
.reviews { background: var(--bg); }
.reviews-score { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-2); text-decoration: none; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.reviews-score:hover { border-color: var(--purple-bright); box-shadow: 0 10px 26px -18px var(--purple-glow); }
.reviews-score strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--chrome); line-height: 1; }
.reviews-score .pstars { font-size: 1rem; letter-spacing: 0.06em; }
.reviews-count { font-size: 0.82rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.06em; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.review-card { margin: 0; display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--card-shadow); }
.review-stars { color: var(--purple-bright); font-size: 0.95rem; letter-spacing: 0.08em; line-height: 1; }
.review-card blockquote { margin: 0; color: var(--chrome); font-size: 1rem; line-height: 1.6; }
.review-card figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 4px; }
.review-name { font-family: var(--font-head); font-size: 1rem; color: var(--chrome); letter-spacing: 0.02em; }
.review-meta { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.review-reply { border-left: 2px solid var(--line); padding-left: 14px; }
.review-reply strong { display: block; font-size: 0.72rem; color: var(--purple-bright); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.review-reply p { margin: 0; font-size: 0.88rem; line-height: 1.55; color: var(--silver); }

.reviews-foot { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: clamp(28px, 4vw, 40px); }
.reviews-link { font-family: var(--font-head); font-size: 0.95rem; color: var(--purple-bright); letter-spacing: 0.03em; border-bottom: 1px solid var(--line); padding-bottom: 2px; text-decoration: none; }
.reviews-link:hover { border-bottom-color: var(--purple-bright); }

@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-foot { flex-direction: column; gap: 18px; } }

/* ---------- Founder's promise ---------- */
.promise { position: relative; isolation: isolate; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.promise-photo-ph { aspect-ratio: 4 / 5; border-radius: var(--radius); display: grid; place-items: center; color: var(--muted); border: 2px dashed var(--line); background: rgba(139,47,226,0.05); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; }
.promise-photo img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 60px -32px rgba(16,13,24,0.6); }
.promise-quote { font-family: var(--font-head); text-transform: none; color: var(--chrome); font-size: clamp(1.2rem, 2.3vw, 1.65rem); line-height: 1.42; font-weight: 500; border-left: 3px solid var(--purple-bright); padding-left: 22px; margin: 0.3em 0 1.1em; }
.promise-sign { margin: 0 0 1.5em; }
.promise-sign strong { display: block; font-family: var(--font-head); color: var(--purple-bright); font-size: 1.35rem; }
.promise-sign span { display: block; color: var(--silver); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.promise-sign .promise-athlete { color: var(--purple-bright); font-weight: 600; margin-top: 3px; }
@media (max-width: 820px) { .promise-inner { grid-template-columns: 1fr; gap: 28px; } .promise-photo { max-width: 320px; } }

/* ---------- Keep hero content above the fold on short/small viewports ---------- */
@media (max-height: 760px), (max-width: 640px) {
  .hero { min-height: calc(100svh - 110px); padding: 20px 0; }
  .hero h1 { color: #000; font-size: clamp(1.6rem, min(6vw, 6svh), 2.6rem); margin-bottom: 0.25em; }
  .hero-sub { font-size: clamp(0.92rem, 1.8svh, 1.05rem); margin: 0 0 1.4rem; }
    .hero-actions { gap: 10px; margin: 0 0 0.5rem; }
  .hero-reply { font-size: 0.74rem; margin: 0 0 0.6rem; }
  .hero-actions .btn-lg { padding: 12px 20px; font-size: 0.95rem; }
  .hero-proof { gap: 6px; margin: 0 0 1.15rem; }
  .hero-proof li { font-size: 0.72rem; padding: 4px 10px; }
  .hero-fine { font-size: 0.72rem; }
}

/* Push the white fade further right on narrow screens so wrapped copy stays legible */
@media (max-width: 820px) {
  .hero::after { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.97) 45%, rgba(255,255,255,0.88) 68%, rgba(255,255,255,0.55) 85%, rgba(255,255,255,0.2) 100%); }
  .hero-video { width: 92%; }
}
