:root {
  --ink: #020509;
  --ink-2: #071018;
  --panel: rgba(7, 14, 21, .86);
  --silver: #f4f1ea;
  --silver-2: #b8c2ca;
  --blue: #009cff;
  --blue-2: #00d9ff;
  --blue-dark: #003f70;
  --gold: #d9a23a;
  --gold-2: #f0c767;
  --line: rgba(255,255,255,.13);
  --text: #f7f5f0;
  --muted: #aeb9c2;
  --shadow-blue: 0 0 42px rgba(0,156,255,.25);
  --shadow-gold: 0 0 34px rgba(217,162,58,.18);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 108, 181, .14), transparent 32rem),
    radial-gradient(circle at 80% 36%, rgba(217,162,58,.08), transparent 30rem),
    linear-gradient(180deg, #010306 0%, #06101a 46%, #020509 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 72%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }

#ocean-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: .34;
}

.ambient-glow { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: -2; }
.ambient-glow--one { width: 420px; height: 420px; background: rgba(0,156,255,.08); top: 10%; left: -180px; animation: drift 15s ease-in-out infinite alternate; }
.ambient-glow--two { width: 360px; height: 360px; background: rgba(217,162,58,.06); bottom: 5%; right: -140px; animation: drift 19s ease-in-out infinite alternate-reverse; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.92), rgba(2,5,9,.73));
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-logo { width: min(390px, 52vw); filter: drop-shadow(0 0 20px rgba(0,156,255,.11)); }
.header-actions { display: flex; gap: 10px; }
.header-link {
  text-decoration: none; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; font-size: .78rem;
  border: 1px solid rgba(217,162,58,.5); color: var(--gold-2); padding: 10px 15px; border-radius: 999px;
  transition: .22s ease;
}
.header-link:hover { background: rgba(217,162,58,.12); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.header-link--blue { color: #bcecff; border-color: rgba(0,156,255,.55); }
.header-link--blue:hover { background: rgba(0,156,255,.12); box-shadow: var(--shadow-blue); }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 28% 48%, rgba(0,156,255,.16), transparent 24rem),
    radial-gradient(circle at 77% 52%, rgba(217,162,58,.08), transparent 26rem);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 42px; padding: 72px 0 100px; }
.hero-art { position: relative; min-width: 0; }
.hero-logo { width: 100%; position: relative; z-index: 2; filter: drop-shadow(0 22px 44px rgba(0,0,0,.55)); animation: floatLogo 6s ease-in-out infinite; }
.logo-orbit {
  position: absolute; width: 82%; aspect-ratio: 1; top: 7%; left: 9%; border-radius: 50%; z-index: 1;
  border: 1px solid rgba(217,162,58,.19); box-shadow: inset 0 0 60px rgba(0,156,255,.09), 0 0 90px rgba(0,156,255,.09);
  animation: pulseOrbit 4s ease-in-out infinite;
}
.logo-orbit::before, .logo-orbit::after {
  content: ""; position: absolute; inset: -4%; border-radius: inherit; border: 1px dashed rgba(0,156,255,.12);
  animation: spin 32s linear infinite;
}
.logo-orbit::after { inset: 8%; border-color: rgba(217,162,58,.12); animation-direction: reverse; animation-duration: 24s; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: .78rem; margin-bottom: 14px; }
.trident-mark { color: var(--blue); font-size: 1.25em; text-shadow: 0 0 16px rgba(0,156,255,.7); }
h1, h2, h3 { margin-top: 0; }
h1 {
  margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 5.8rem); line-height: .92; letter-spacing: -.045em;
  text-shadow: 0 10px 30px rgba(0,0,0,.4);
}
h1 span, h2 span { color: var(--gold-2); text-shadow: 0 0 28px rgba(217,162,58,.17); }
.hero-lede { color: #d5dde4; max-width: 640px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; margin: 0 0 24px; }
.service-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 28px; }
.service-pills span { padding: 9px 13px; border: 1px solid rgba(0,156,255,.4); background: rgba(0,93,155,.12); color: #ccefff; border-radius: 999px; font-size: .8rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-actions .btn { width: 225px; }
.btn {
  border: 0; border-radius: 12px; min-height: 58px; padding: 12px 22px; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; text-decoration: none; text-transform: uppercase; letter-spacing: .075em; font-weight: 950; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { min-width: 225px; color: #071018; background: linear-gradient(135deg, #f5d982, var(--gold), #fff1bd); box-shadow: 0 10px 34px rgba(217,162,58,.22); flex-direction: column; gap: 0; }
.btn-primary:hover { box-shadow: 0 14px 48px rgba(217,162,58,.35); }
.btn-kicker { font-size: .66rem; opacity: .75; }
.btn-primary strong { font-size: 1.05rem; letter-spacing: .04em; }
.btn-secondary { color: white; border: 1px solid rgba(0,156,255,.65); background: linear-gradient(180deg, rgba(0,156,255,.18), rgba(0,69,115,.2)); box-shadow: inset 0 0 20px rgba(0,156,255,.08); }
.btn-secondary:hover { background: rgba(0,156,255,.23); box-shadow: var(--shadow-blue); }
.trust-line { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #8293a0; font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.trust-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.wave-divider { position: absolute; inset-inline: 0; bottom: 0; height: 78px; overflow: hidden; opacity: .75; }
.wave-divider span { position: absolute; width: 140%; height: 65px; left: -20%; border-top: 1px solid rgba(0,156,255,.34); border-radius: 50%; animation: wave 9s linear infinite; }
.wave-divider span:nth-child(2) { bottom: -20px; border-color: rgba(217,162,58,.2); animation-duration: 12s; animation-direction: reverse; }
.wave-divider span:nth-child(3) { bottom: -35px; border-color: rgba(0,217,255,.15); animation-duration: 15s; }

.battle-section { padding: 110px 0; position: relative; }
.section-heading { max-width: 790px; margin-bottom: 46px; }
.section-heading h2, .request-copy h2, .service-area-panel h2 { font-family: Georgia, "Times New Roman", serif; text-transform: uppercase; letter-spacing: -.03em; line-height: 1; font-size: clamp(2.35rem, 4.8vw, 4.8rem); margin-bottom: 22px; }
.section-heading p, .request-copy > p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; max-width: 760px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.problem-card {
  min-height: 255px; padding: 26px 22px; border-radius: 16px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); background: linear-gradient(180deg, rgba(10,21,31,.95), rgba(3,9,15,.9));
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 22px 50px rgba(0,0,0,.22); transition: transform .25s ease, border-color .25s ease;
}
.problem-card::after { content: ""; position: absolute; inset: auto -20% -55% -20%; height: 160px; background: radial-gradient(ellipse, rgba(0,156,255,.18), transparent 67%); transition: .25s ease; }
.problem-card:hover { transform: translateY(-7px); border-color: rgba(0,156,255,.38); }
.problem-card:hover::after { transform: translateY(-12px); }
.problem-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(217,162,58,.38); color: var(--gold-2); border-radius: 50%; font: 900 .8rem/1 ui-monospace, monospace; margin-bottom: 30px; box-shadow: var(--shadow-gold); }
.problem-card h3 { text-transform: uppercase; font-size: 1.03rem; letter-spacing: .05em; margin-bottom: 12px; }
.problem-card p { color: #98a7b3; line-height: 1.65; font-size: .92rem; margin: 0; }

.request-section { padding: 110px 0 120px; position: relative; }
.request-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 65% 55%, rgba(0,156,255,.08), transparent 32rem), linear-gradient(180deg, transparent, rgba(0,0,0,.2)); }
.request-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.request-copy h2 { margin-bottom: 24px; }
.direct-contact { margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.direct-label { color: #8395a3; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: .72rem; }
.direct-contact a { width: fit-content; color: #dff5ff; font-weight: 900; text-decoration-color: rgba(0,156,255,.45); text-underline-offset: 4px; }
.form-shell { position: relative; padding: 1px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(217,162,58,.7), rgba(255,255,255,.2), rgba(0,156,255,.8), rgba(255,255,255,.13)); box-shadow: 0 30px 80px rgba(0,0,0,.42), 0 0 50px rgba(0,156,255,.08); }
.form-shell::before { content: ""; position: absolute; inset: -2px; border-radius: inherit; background: linear-gradient(100deg, transparent, rgba(0,156,255,.18), transparent); filter: blur(22px); z-index: -1; }
.lead-form { background: linear-gradient(180deg, rgba(8,17,26,.985), rgba(3,8,13,.985)); border-radius: calc(var(--radius) - 1px); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 16px; }
.lead-form label > span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #c5d0d7; font-weight: 900; }
.lead-form input, .lead-form textarea { width: 100%; color: #fff; background: #02070c; border: 1px solid #24313b; border-radius: 10px; padding: 14px 15px; outline: none; transition: border-color .2s, box-shadow .2s; }
.lead-form textarea { resize: vertical; min-height: 135px; }
.lead-form input:focus, .lead-form textarea:focus { border-color: rgba(0,156,255,.72); box-shadow: 0 0 0 3px rgba(0,156,255,.1), 0 0 30px rgba(0,156,255,.08); }
.btn-submit { width: 100%; justify-content: space-between; color: #061018; background: linear-gradient(90deg, var(--blue), #67dcff); margin-top: 4px; box-shadow: 0 10px 34px rgba(0,156,255,.2); }
.btn-submit:hover { box-shadow: 0 15px 50px rgba(0,156,255,.34); }
.form-note { color: #697b88; text-align: center; font-size: .75rem; margin: 13px 0 0; }
.form-status { min-height: 1.2em; margin-top: 10px; text-align: center; color: #ffca72; font-size: .82rem; }
.hp-field { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.service-area-section { padding: 0 0 110px; }
.service-area-panel { border-top: 1px solid rgba(217,162,58,.36); border-bottom: 1px solid rgba(0,156,255,.34); padding: 35px 0; display: grid; grid-template-columns: 1fr .9fr; gap: 50px; align-items: center; }
.service-area-panel h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin: 0; }
.service-area-panel p { color: #a6b4be; line-height: 1.9; margin: 0; }

/* Keep both service-area columns vertically centered and center the owner content horizontally. */
.service-area-left,
.owner-story { align-self: center; }
.owner-story {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.owner-headshot {
  width: min(375px, 100%);
  object-fit: cover;
  border-radius: 4%;
  margin: 0 auto 18px;
}
.owner-quote {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.owner-quote p { margin: 0 0 6px; }
.owner-quote cite { display: block; }

.site-footer { border-top: 1px solid rgba(255,255,255,.09); background: #010306; }
.footer-inner { min-height: 190px; display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 35px; align-items: center; }
.footer-logo { width: min(390px, 100%); }
.footer-copy { display: grid; gap: 7px; text-transform: uppercase; }
.footer-copy strong { color: var(--gold-2); letter-spacing: .08em; }
.footer-copy span { color: #71818d; font-size: .76rem; letter-spacing: .11em; }
.footer-links { justify-self: end; display: grid; gap: 12px; justify-items: end; }
.footer-links a { text-decoration: none; color: #cbd7de; font-size: .9rem; }
.facebook-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; }
.facebook-link svg { width: 28px; height: 28px; fill: var(--blue); filter: drop-shadow(0 0 10px rgba(0,156,255,.4)); }
.footer-bar { border-top: 1px solid rgba(217,162,58,.18); text-align: center; padding: 13px 20px; font-weight: 950; letter-spacing: .13em; font-size: .78rem; color: #d4d8db; background: linear-gradient(90deg, rgba(217,162,58,.09), transparent 20%, transparent 80%, rgba(217,162,58,.09)); }
.footer-bar span { color: var(--blue); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes floatLogo { 0%,100% { transform: translateY(0) rotate(-.15deg); } 50% { transform: translateY(-10px) rotate(.15deg); } }
@keyframes pulseOrbit { 0%,100% { transform: scale(.985); opacity: .65; } 50% { transform: scale(1.02); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes wave { 0% { transform: translateX(-2%) rotate(-1deg); } 50% { transform: translateX(2%) rotate(1deg); } 100% { transform: translateX(-2%) rotate(-1deg); } }
@keyframes drift { to { transform: translate(50px, -35px) scale(1.1); } }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 35px; gap: 12px; }
  .hero-art { max-width: 620px; margin-inline: auto; }
  .hero-copy { text-align: center; max-width: 760px; margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .service-pills, .hero-actions, .trust-line { justify-content: center; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .request-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-area-panel { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 35px 0; }
  .footer-logo { grid-column: 1 / -1; width: min(420px, 85%); }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 26px, 1180px); }
  .header-inner { min-height: 72px; }
  .header-logo { width: 62vw; }
  .header-link { padding: 8px 10px; font-size: .68rem; }
  .hero-grid { padding-bottom: 88px; }
  .hero-art { margin-inline: -7px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.3rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .trust-line { display: none; }
  .battle-section, .request-section { padding: 80px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 210px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 23px 18px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { grid-column: auto; margin-inline: auto; }
  .footer-links { justify-self: center; justify-items: center; }
  .footer-bar { font-size: .64rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  #ocean-particles { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Lead magnet */
.guide-body { background: radial-gradient(circle at 50% 0%, rgba(0,156,255,.12), transparent 34rem), #020509; }
.guide-header { border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.8); }
.guide-header .header-inner { min-height: 82px; }
.guide-main { padding: 70px 0 110px; }
.guide-hero { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: center; margin-bottom: 70px; }
.guide-logo { filter: drop-shadow(0 20px 40px rgba(0,0,0,.45)); }
.guide-kicker { color: var(--gold-2); text-transform: uppercase; letter-spacing: .17em; font-weight: 950; font-size: .76rem; }
.guide-title { font-family: Georgia, "Times New Roman", serif; text-transform: uppercase; font-size: clamp(3rem, 6vw, 5.8rem); line-height: .92; letter-spacing: -.05em; margin: 12px 0 20px; }
.guide-title span { color: var(--blue-2); }
.guide-intro { color: #b9c5cd; font-size: 1.08rem; line-height: 1.75; max-width: 760px; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.guide-actions .btn { min-height: 54px; }
.guide-issue-list { display: grid; gap: 22px; counter-reset: issue; }
.guide-issue { position: relative; padding: 34px; border-radius: 18px; border: 1px solid rgba(255,255,255,.11); background: linear-gradient(180deg, rgba(10,20,30,.96), rgba(3,8,13,.96)); box-shadow: 0 22px 60px rgba(0,0,0,.28); overflow: hidden; }
.guide-issue::after { content: ""; position: absolute; inset: 0 0 auto auto; width: 190px; height: 190px; background: radial-gradient(circle, rgba(0,156,255,.08), transparent 68%); pointer-events: none; }
.guide-issue-top { display: grid; grid-template-columns: 72px 1fr; gap: 22px; align-items: start; }
.guide-num { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(217,162,58,.48); color: var(--gold-2); font-weight: 950; box-shadow: var(--shadow-gold); }
.guide-issue h2 { font-family: Georgia, "Times New Roman", serif; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.8rem); margin: 0 0 8px; }
.guide-issue .risk { color: #aebbc4; line-height: 1.7; margin: 0; max-width: 920px; }
.guide-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.guide-box { padding: 20px; border-radius: 12px; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.08); }
.guide-box h3 { color: var(--blue-2); text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; margin-bottom: 10px; }
.guide-box ul { margin: 0; padding-left: 18px; color: #bec8cf; line-height: 1.7; }
.guide-cta { margin-top: 56px; padding: 36px; border: 1px solid rgba(217,162,58,.32); background: linear-gradient(135deg, rgba(217,162,58,.08), rgba(0,156,255,.07)); border-radius: 18px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.guide-cta h2 { font-family: Georgia, "Times New Roman", serif; text-transform: uppercase; font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 10px; }
.guide-cta p { color: #a9b7c0; margin: 0; line-height: 1.7; }
.guide-sources { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.guide-sources h3 { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; color: #8899a6; }
.guide-sources-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.guide-sources a { color: #88d7ff; font-size: .82rem; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .guide-hero { grid-template-columns: 1fr; text-align: center; }
  .guide-logo { max-width: 520px; margin-inline: auto; }
  .guide-intro { margin-inline: auto; }
  .guide-actions { justify-content: center; }
  .guide-steps { grid-template-columns: 1fr; }
  .guide-cta { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .guide-main { padding-top: 40px; }
  .guide-issue { padding: 24px 18px; }
  .guide-issue-top { grid-template-columns: 1fr; }
  .guide-num { width: 52px; height: 52px; }
}


/* ===== Triton Floor Care V2 ===== */
.site-header,
.guide-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.site-header .header-inner,
.guide-header .header-inner {
  transition: min-height .22s ease, padding .22s ease;
}
.site-header .header-logo,
.guide-header .header-logo {
  transition: width .22s ease, transform .22s ease, filter .22s ease;
  transform-origin: left center;
}
.site-header.is-scrolled,
.guide-header.is-scrolled {
  background: rgba(1, 5, 9, .95);
  border-bottom-color: rgba(0,156,255,.22);
  box-shadow: 0 12px 34px rgba(0,0,0,.42);
}
.site-header.is-scrolled .header-inner,
.guide-header.is-scrolled .header-inner { min-height: 64px; }
.site-header.is-scrolled .header-logo,
.guide-header.is-scrolled .header-logo { width: min(152px, 22vw); }

/* Reduce empty vertical runway while preserving the cinematic layout. */
.hero { min-height: 660px; }
.hero-grid { padding: 44px 0 64px; }
.battle-section { padding: 68px 0; }
.section-heading { margin-bottom: 30px; }
.request-section { padding: 70px 0 76px; }
.request-grid { gap: 48px; }
.service-area-section { padding: 0 0 62px; }
.footer-inner { min-height: 142px; }
.guide-main { padding: 48px 0 72px; }
.guide-hero { margin-bottom: 44px; }
.guide-cta { margin-top: 36px; }
.guide-sources { margin-top: 28px; }

/* Complimentary guide pitch */
.guide-unlock {
  width: 100%;
  max-width: 610px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -8px 0 24px;
  padding: 12px 15px;
  color: #dcebf5;
  text-align: left;
  border: 1px solid rgba(217,162,58,.34);
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(217,162,58,.08), rgba(0,156,255,.08));
  box-shadow: inset 0 1px rgba(255,255,255,.04);
  transition: .2s ease;
}
.guide-unlock:hover { transform: translateY(-2px); border-color: rgba(0,156,255,.48); box-shadow: var(--shadow-blue); }
.guide-unlock strong { color: var(--gold-2); text-transform: uppercase; letter-spacing: .05em; }
.guide-unlock-icon { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-2); border: 1px solid rgba(217,162,58,.45); font-size: 1.2rem; }


/* Required-field indicator */
.required-mark {
  color: #ff3b3b;
  font-weight: 950;
  margin-left: 3px;
  text-shadow: 0 0 8px rgba(255,59,59,.45);
}

/* High-visibility complimentary guide callout */
.guide-highlight {
  display: inline-block;
  padding: .13em .42em;
  border: 1px solid rgba(0,217,255,.78);
  border-radius: 6px;
  color: #ffffff !important;
  background: linear-gradient(100deg, rgba(0,156,255,.68), rgba(0,217,255,.26));
  box-shadow: 0 0 18px rgba(0,156,255,.32), inset 0 1px rgba(255,255,255,.18);
  text-shadow: 0 0 10px rgba(184,240,255,.72);
}
.guide-unlock .guide-highlight {
  font-weight: 950;
  letter-spacing: .01em;
}

/* Service-area links */
.service-area-links { display: flex; flex-wrap: wrap; gap: 5px 8px; align-items: center; }
.service-area-links a { color: #b9c8d2; text-decoration: none; border-bottom: 1px solid rgba(0,156,255,.28); transition: color .18s ease, border-color .18s ease; }
.service-area-links a:hover { color: #fff; border-bottom-color: var(--blue); }
.service-area-links span { color: var(--gold); }

/* Footer contact icons */
.footer-links { display: flex; align-items: center; gap: 16px; }
.email-icon-link { display: inline-flex; align-items: center; justify-content: center; }
.email-icon-link svg { width: 31px; height: 31px; fill: var(--gold-2); filter: drop-shadow(0 0 10px rgba(217,162,58,.34)); transition: .2s ease; }
.email-icon-link:hover svg { transform: translateY(-2px) scale(1.06); fill: #ffe6a2; }

@media (max-width: 960px) {
  .hero-grid { padding-top: 28px; padding-bottom: 58px; }
  .request-grid { gap: 32px; }
  .guide-unlock { margin-inline: auto; }
}
@media (max-width: 640px) {
  .site-header.is-scrolled .header-logo,
  .guide-header.is-scrolled .header-logo { width: 27vw; }
  .battle-section, .request-section { padding: 54px 0; }
  .hero-grid { padding-bottom: 60px; }
  .service-area-section { padding-bottom: 48px; }
  .footer-inner { min-height: auto; }
  .footer-links { justify-content: center; }
  .guide-main { padding: 34px 0 54px; }
}


/* ==========================================================
   Global Pricing Navigation
   ========================================================== */
.pricing-nav { position: relative; z-index: 90; outline: none; }
.pricing-trigger { display: flex; align-items: center; gap: 7px; cursor: default; user-select: none; }
.pricing-caret { font-size: .8em; color: var(--gold-2); transition: transform .2s ease; }
.pricing-nav:hover .pricing-caret,
.pricing-nav:focus-within .pricing-caret { transform: rotate(180deg); }
.pricing-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  display: none;
  padding: 7px;
  border: 1px solid rgba(0,156,255,.42);
  border-radius: 10px;
  background: rgba(3,11,18,.98);
  box-shadow: 0 18px 45px rgba(0,0,0,.45), 0 0 25px rgba(0,156,255,.12);
  overflow: hidden;
}
.pricing-nav:hover .pricing-menu,
.pricing-nav:focus-within .pricing-menu { display: grid; }
.pricing-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
  color: #eaf6ff;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .18s ease;
}
.pricing-menu a:first-child { color: var(--gold-2); }
.pricing-menu a:hover { background: rgba(0,156,255,.13); color: #fff; }

/* ==========================================================
   Residential / Commercial Pricing Pages
   ========================================================== */
.pricing-page-body { background: #02070c; }
.pricing-main { position: relative; z-index: 2; }
.pricing-hero { padding: 102px 0 16px; min-height: 560px; display: flex; align-items: center; }
.pricing-hero-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: center; }
.pricing-hero-art { display: grid; place-items: center; }
.pricing-hero-logo { width: min(420px, 100%); filter: drop-shadow(0 0 34px rgba(0,156,255,.18)); }
.pricing-hero-copy h1,
.pricing-section-heading h2,
.pricing-intro-card h2,
.info-panel h2,
.pricing-booking-inner h2,
.coming-soon-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .98;
}
.pricing-hero-copy h1 { font-size: clamp(3.25rem, 6vw, 6.5rem); margin: 16px 0 24px; }
.pricing-hero-copy h1 span,
.coming-soon-card h1 span { color: var(--blue); text-shadow: 0 0 25px rgba(0,156,255,.25); }
.pricing-hero-copy > p { max-width: 780px; color: #b4c3cd; font-size: 1.12rem; line-height: 1.75; }
.pricing-hero-services { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.pricing-hero-services span { padding: 8px 12px; border: 1px solid rgba(217,162,58,.32); border-radius: 999px; color: #d8e5ec; background: rgba(255,255,255,.025); font-size: .76rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.pricing-contact-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pricing-contact-row .btn { min-width: 220px; text-align: center; }
.pricing-intro-section { padding: 11px 0; }
.pricing-intro-card { padding: 35px 38px; border: 1px solid rgba(0,156,255,.28); border-left: 4px solid var(--gold); border-radius: 16px; background: linear-gradient(135deg, rgba(0,156,255,.065), rgba(217,162,58,.035)); }
.pricing-intro-card h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin: 12px 0 17px; }
.pricing-intro-card p { max-width: 1000px; color: #bdcbd4; line-height: 1.8; font-size: 1.04rem; }
.pricing-section { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.055); }
.pricing-section--alternate { background: linear-gradient(180deg, rgba(0,156,255,.035), rgba(0,0,0,0)); }
.pricing-section--disclaimer { background: linear-gradient(180deg, rgba(217,162,58,.032), rgba(0,0,0,0)); }
.pricing-section-heading { margin-bottom: 12px; }
.pricing-section-heading h2 { font-size: clamp(2.65rem, 5vw, 5rem); margin: 10px 0 12px; }
.pricing-section-heading p { color: #aebdc7; font-size: 1.05rem; line-height: 1.7; max-width: 880px; }
.pricing-card-grid { display: grid; gap: 20px; align-items: stretch; }
.pricing-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1020px; }
.pricing-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 28px; border: 1px solid rgba(0,156,255,.24); border-radius: 16px; background: linear-gradient(160deg, rgba(9,26,39,.96), rgba(3,10,16,.98)); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.pricing-card--recommended { border-color: rgba(217,162,58,.52); box-shadow: 0 0 28px rgba(217,162,58,.08), 0 18px 40px rgba(0,0,0,.2); }
.recommended-badge { position: absolute; top: 14px; right: 14px; padding: 5px 9px; border-radius: 999px; background: var(--gold); color: #06101a; font-weight: 950; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card-kicker { color: var(--gold-2); font-weight: 900; letter-spacing: .065em; text-transform: uppercase; font-size: .83rem; padding-right: 90px; }
.pricing-card h3 { color: #eef8ff; font-size: 1.2rem; line-height: 1.35; margin: 9px 0 15px; }
.pricing-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; color: #fff; font-size: 2.65rem; line-height: 1; font-weight: 950; margin: 5px 0 20px; }
.pricing-price small { display: block; width: 100%; color: #8eb5cb; font-size: .78rem; line-height: 1.2; letter-spacing: .06em; text-transform: uppercase; }
.pricing-card .pricing-price small:not(:first-child) { display: inline; width: auto; font-size: .75rem; }
.pricing-card ul, .pricing-feature-card ul, .condition-card ul, .check-list { margin: 0; padding-left: 20px; color: #b9c8d2; line-height: 1.62; }
.pricing-card li + li, .pricing-feature-card li + li, .condition-card li + li { margin-top: 7px; }
.card-note { margin-top: auto; padding-top: 18px; color: #d8e4eb; line-height: 1.6; font-weight: 700; }
.pricing-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.pricing-detail-grid > div { padding: 17px 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.025); }
.pricing-detail-grid strong { display: block; color: var(--gold-2); font-size: 1rem; }
.pricing-detail-grid span { display: block; margin-top: 4px; color: #96a9b5; font-size: .86rem; }
.combo-mention { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; padding: 18px 20px; border: 1px solid rgba(0,156,255,.23); border-radius: 11px; background: rgba(0,156,255,.055); }
.combo-mention > span { color: var(--gold-2); font-size: 1.4rem; line-height: 1; }
.combo-mention p { margin: 0; color: #c8d5dd; line-height: 1.65; }
.scope-note { margin-top: 20px; padding: 16px 18px; border-left: 4px solid var(--blue); background: rgba(0,156,255,.07); color: #c9d8e1; line-height: 1.65; }
.pricing-feature-card { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 20px; padding: 25px 27px; border: 1px solid rgba(217,162,58,.32); border-radius: 14px; background: linear-gradient(120deg, rgba(217,162,58,.06), rgba(0,156,255,.035)); }
.pricing-feature-card--primary { margin-top: 0; }
.pricing-feature-card h3 { margin: 8px 0; font-size: 1.35rem; }
.pricing-feature-card p { color: #aebdc7; line-height: 1.6; }
.pricing-feature-card .pricing-price { flex: 0 0 auto; min-width: 165px; justify-content: flex-end; text-align: right; }
.pricing-subhead { margin: 34px 0 5px; color: #fff; font-size: 1.7rem; }
.pricing-subcopy { color: #9fb0bb; margin-bottom: 20px; }
.upholstery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.upholstery-item { display: flex; flex-direction: column; min-height: 180px; padding: 20px; border: 1px solid rgba(255,255,255,.085); border-radius: 12px; background: rgba(255,255,255,.025); }
.upholstery-item h4 { margin: 0 0 9px; color: #f0f8fc; font-size: 1rem; line-height: 1.35; }
.upholstery-item p { color: #93a7b3; line-height: 1.5; margin: 0 0 15px; }
.upholstery-item strong { margin-top: auto; color: var(--gold-2); font-size: 1.1rem; }
.upholstery-item small { display: block; margin-top: 6px; color: #7f96a5; }
.pricing-table-wrap { overflow-x: auto; border: 1px solid rgba(0,156,255,.22); border-radius: 14px; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.pricing-table th { padding: 15px 18px; background: rgba(0,156,255,.13); color: #fff; text-align: left; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.pricing-table th:last-child, .pricing-table td:last-child { text-align: right; }
.pricing-table td { padding: 17px 18px; color: #d1dce3; border-top: 1px solid rgba(255,255,255,.07); }
.pricing-table td:last-child { color: var(--gold-2); font-weight: 900; }
.two-column-info { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-panel { padding: 30px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.022); }
.info-panel h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); margin: 10px 0 17px; }
.info-panel p { color: #b3c2cc; line-height: 1.7; }
.check-list { columns: 2; column-gap: 28px; margin-top: 18px; }
.service-city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 18px; margin-top: 20px; color: #c7d4dc; }
.service-city-grid span { border-bottom: 1px solid rgba(0,156,255,.13); padding-bottom: 6px; }
.condition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.condition-card { padding: 26px; border-radius: 14px; border: 1px solid rgba(0,156,255,.22); background: rgba(4,16,25,.82); }
.condition-card h3 { color: var(--gold-2); margin: 0 0 17px; font-size: 1.3rem; }
.disclaimer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.disclaimer-card { padding: 24px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(255,255,255,.025); }
.disclaimer-card--wide { grid-column: 1 / -1; }
.disclaimer-card h3 { margin: 0 0 10px; color: var(--gold-2); font-size: 1.08rem; text-transform: uppercase; letter-spacing: .055em; }
.disclaimer-card p { margin: 0; color: #b4c3cd; line-height: 1.74; }
.pricing-booking-cta { padding: 13px 0 16px; }
.pricing-booking-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 34px 36px; border: 1px solid rgba(217,162,58,.38); border-radius: 16px; background: linear-gradient(110deg, rgba(217,162,58,.075), rgba(0,156,255,.055)); }
.pricing-booking-inner h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin: 9px 0 10px; }
.pricing-booking-inner p { color: #aebdc7; }
.coming-soon-main { min-height: calc(100vh - 350px); display: grid; align-items: center; position: relative; z-index: 2; }
.coming-soon-section { padding: 26px 0 20px; }
.coming-soon-card { max-width: 920px; margin: 0 auto; padding: 55px; text-align: center; border: 1px solid rgba(0,156,255,.27); border-radius: 20px; background: linear-gradient(150deg, rgba(7,23,35,.92), rgba(2,8,13,.96)); box-shadow: 0 25px 60px rgba(0,0,0,.28); }
.coming-soon-logo { width: min(310px, 70%); margin: 0 auto 25px; }
.coming-soon-card h1 { font-size: clamp(4rem, 9vw, 8rem); margin: 15px 0 22px; }
.coming-soon-card p { max-width: 720px; margin: 0 auto; color: #b6c4cd; font-size: 1.08rem; line-height: 1.8; }
.coming-soon-card .pricing-contact-row { justify-content: center; }

@media (max-width: 1040px) {
  .pricing-card-grid--3 { grid-template-columns: 1fr 1fr; }
  .pricing-card-grid--3 .pricing-card:last-child { grid-column: 1 / -1; }
  .upholstery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .header-inner { flex-wrap: wrap; justify-content: center; padding: 9px 0; }
  .header-logo { width: min(330px, 70vw); }
  .header-actions { width: 100%; justify-content: center; }
  .pricing-menu { left: 50%; right: auto; }
  .pricing-hero { padding-top: 132px; }
  .pricing-hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .pricing-hero-logo { width: min(300px, 64vw); }
  .pricing-hero-copy > p { margin-inline: auto; }
  .pricing-hero-services, .pricing-contact-row { justify-content: center; }
  .two-column-info, .condition-grid, .disclaimer-grid { grid-template-columns: 1fr; }
  .disclaimer-card--wide { grid-column: auto; }
  .pricing-booking-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 650px) {
  .header-actions { gap: 7px; }
  .header-link { padding: 8px 9px; font-size: .64rem; }
  .pricing-menu { min-width: 165px; }
  .pricing-hero { padding: 132px 0 12px; min-height: auto; }
  .pricing-section { padding: 12px 0; }
  .pricing-card-grid--3, .pricing-card-grid--2, .upholstery-grid { grid-template-columns: 1fr; }
  .pricing-card-grid--3 .pricing-card:last-child { grid-column: auto; }
  .pricing-detail-grid { grid-template-columns: 1fr 1fr; }
  .pricing-feature-card { flex-direction: column; align-items: flex-start; }
  .pricing-feature-card .pricing-price { justify-content: flex-start; text-align: left; }
  .check-list { columns: 1; }
  .service-city-grid { grid-template-columns: 1fr; }
  .pricing-contact-row .btn { width: 100%; min-width: 0; }
  .coming-soon-card { padding: 34px 22px; }
}


/* ==========================================================
   Residential Pricing: compact section spacing + centered copy
   ========================================================== */
.pricing-page-body .pricing-main section,
.pricing-page-body .pricing-main .pricing-card,
.pricing-page-body .pricing-main .pricing-feature-card,
.pricing-page-body .pricing-main .upholstery-item,
.pricing-page-body .pricing-main .info-panel,
.pricing-page-body .pricing-main .condition-card,
.pricing-page-body .pricing-main .disclaimer-card,
.pricing-page-body .pricing-main .scope-note,
.pricing-page-body .pricing-main .combo-mention,
.pricing-page-body .pricing-main .pricing-detail-grid > div { text-align: center; }

.pricing-page-body .pricing-main .pricing-section-heading p,
.pricing-page-body .pricing-main .pricing-intro-card p,
.pricing-page-body .pricing-main .info-panel p,
.pricing-page-body .pricing-main .disclaimer-card p,
.pricing-page-body .pricing-main .pricing-subcopy,
.pricing-page-body .pricing-main .card-note { margin-left: auto; margin-right: auto; }

.pricing-page-body .pricing-main .pricing-card ul,
.pricing-page-body .pricing-main .pricing-feature-card ul,
.pricing-page-body .pricing-main .condition-card ul,
.pricing-page-body .pricing-main .check-list {
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}

.pricing-page-body .pricing-main .pricing-feature-card { justify-content: center; }
.pricing-page-body .pricing-main .pricing-feature-card .pricing-price { justify-content: center; text-align: center; }
.pricing-page-body .pricing-main .combo-mention { justify-content: center; align-items: center; }
.pricing-page-body .pricing-main .pricing-contact-row,
.pricing-page-body .pricing-main .pricing-hero-services { justify-content: center; }
.pricing-page-body .pricing-main .pricing-hero-copy > p { margin-left: auto; margin-right: auto; }
.pricing-page-body .pricing-main .pricing-card-kicker { padding-right: 0; }
.pricing-page-body .pricing-main .pricing-table th,
.pricing-page-body .pricing-main .pricing-table td,
.pricing-page-body .pricing-main .pricing-table th:last-child,
.pricing-page-body .pricing-main .pricing-table td:last-child { text-align: center; }
.pricing-page-body .pricing-main .service-city-grid { text-align: center; }

.pricing-download-prompt {
  margin-top: 18px !important;
  color: #ffffff !important;
  font-size: 1.08rem !important;
  line-height: 1.45 !important;
}
.pricing-download-btn { margin-top: 8px; min-width: 300px; text-align: center; }

@media (max-width: 650px) {
  .pricing-download-btn { width: 100%; min-width: 0; }
}


/* ==========================================================
   Navigation logo + mobile portrait refinements
   ========================================================== */
.header-logo-link {
  display: block;
  flex: 0 1 auto;
  line-height: 0;
  text-decoration: none;
}
.header-logo-link .header-logo { display: block; }

/* Keep the Request button's text optically centered even with the icon present. */
.guide-unlock {
  position: relative;
  justify-content: center;
  text-align: center !important;
}
.guide-unlock > span:last-child {
  width: 100%;
  text-align: center;
}
.guide-unlock .guide-unlock-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 650px) {
  /* Header/nav must fit comfortably in portrait widths. */
  .header-inner {
    gap: 8px;
    padding-inline: 0;
  }
  .header-logo-link {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .header-logo-link .header-logo,
  .header-logo { width: min(300px, 78vw); }
  .header-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .header-link {
    padding: 8px 9px;
    font-size: .62rem;
    letter-spacing: .075em;
    white-space: nowrap;
  }

  /* Residential hero: prevent large display type from overflowing portrait screens. */
  .pricing-hero {
    padding-top: 18px;
  }
  .pricing-hero-grid {
    gap: 16px;
  }
  .pricing-hero-logo {
    width: min(245px, 62vw);
  }
  .pricing-hero-copy,
  .pricing-intro-card,
  .pricing-section-heading,
  .pricing-card,
  .pricing-feature-card,
  .info-panel,
  .condition-card,
  .disclaimer-card,
  .coming-soon-card {
    min-width: 0;
    max-width: 100%;
  }
  .pricing-hero-copy h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.05rem);
    line-height: 1.01;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
    word-break: normal;
    margin: 10px 0 14px;
  }
  .pricing-hero-copy > p {
    font-size: 1rem;
    line-height: 1.58;
  }
  .pricing-hero-services {
    margin-top: 17px;
    gap: 7px;
  }
  .pricing-hero-services span {
    font-size: .68rem;
    line-height: 1.3;
    padding: 7px 9px;
    white-space: normal;
  }
  .pricing-contact-row {
    margin-top: 18px;
  }
  .pricing-contact-row .btn,
  .pricing-download-btn {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .pricing-intro-card {
    padding: 23px 17px;
  }
  .pricing-intro-card h2 {
    font-size: clamp(1.8rem, 8.7vw, 2.55rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }
  .pricing-section-heading h2 {
    font-size: clamp(2rem, 9.5vw, 2.9rem);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }
  .info-panel h2,
  .pricing-booking-inner h2 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .pricing-card {
    padding: 22px 18px;
  }
  .pricing-card-kicker,
  .pricing-card h3,
  .pricing-subhead,
  .upholstery-item h4,
  .condition-card h3,
  .disclaimer-card h3 {
    overflow-wrap: anywhere;
  }
  .pricing-price {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }
  .pricing-detail-grid {
    grid-template-columns: 1fr;
  }
  .pricing-feature-card {
    padding: 22px 18px;
    align-items: center;
  }
  .pricing-feature-card .pricing-price {
    justify-content: center;
    text-align: center;
    min-width: 0;
  }
  .upholstery-item {
    min-height: 0;
  }
  .pricing-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-booking-inner {
    padding: 25px 18px;
  }
  .coming-soon-card h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  /* Keep Request button copy centered without the icon crowding narrow screens. */
  .guide-unlock {
    padding-left: 50px;
    padding-right: 15px;
  }
  .guide-unlock .guide-unlock-icon {
    left: 11px;
  }
}

@media (max-width: 430px) {
  :root { --shell: min(100% - 22px, 1180px); }
  .header-link {
    padding: 7px 8px;
    font-size: .59rem;
  }
  .pricing-menu { min-width: 150px; }
  .pricing-hero-copy h1 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }
  .eyebrow {
    font-size: .68rem;
    letter-spacing: .12em;
    line-height: 1.45;
  }
  .btn {
    min-height: 54px;
    padding: 11px 14px;
    letter-spacing: .055em;
  }
  .guide-unlock {
    font-size: .91rem;
    line-height: 1.35;
  }
}
