/* FixRight site-v2 — official brand (Deep Teal + Signal Teal + Cream) */
:root {
  /* Brand tokens — see /workspace/fixright-brand-colors.md */
  --color-primary: #0B3D4A;
  --color-primary-deep-teal: #0B3D4A;
  --color-primary-navy: #0B3D4A; /* retired alias → Deep Teal */
  --color-cta: #1A9C8A;
  --color-cta-signal: #1A9C8A;
  --color-cta-signal-hover: #158A7A;
  --color-cta-amber: #1A9C8A; /* retired alias → Signal Teal */
  --color-cta-amber-hover: #158A7A; /* retired alias */
  --color-accent: #1A9C8A;
  --color-accent-teal: #1A9C8A;
  --color-ink: #0B3D4A;
  --color-paper: #F6F4EE;
  --color-cream: #F6F4EE;
  --color-white: #FFFFFF;
  --color-border: #E8E4DC;
  --color-slate: #5A6F74;
  --color-danger: #B42318;

  /* Legacy aliases → brand (nav, buttons, badges, links, /nv/) */
  --navy: var(--color-primary-deep-teal);
  --navy-deep: #072A33;
  --navy-mid: #0F5260;
  --teal: var(--color-accent-teal);
  --teal-bright: #2BB5A2;
  --teal-soft: #E3F5F2;
  --teal-muted: #9DCFC7;
  --sand: var(--color-paper);
  --sand-2: #EEEBE3;
  --ink: var(--color-ink);
  --muted: var(--color-slate);
  --line: var(--color-border);
  --white: var(--color-white);
  --warn: #B45309;
  --warn-bg: #FFF8F0;
  --success: var(--color-accent-teal);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(11, 61, 74, 0.14);
  --shadow-sm: 0 4px 16px rgba(11, 61, 74, 0.08);
  --max: 1120px;
  --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Poppins", system-ui, -apple-system, sans-serif;
  --focus: 0 0 0 3px rgba(26, 156, 138, 0.45);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--color-paper);
  line-height: 1.55;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 4px;
}

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only,
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--color-cta-signal); color: var(--color-white); font-weight: 600;
  padding: .9rem 1.35rem; border-radius: 999px; border: none; cursor: pointer;
  font-size: 1rem; font-family: inherit; text-decoration: none;
  transition: transform .15s, background .15s, box-shadow .15s;
  line-height: 1.2;
}
.btn:hover { background: var(--color-cta-signal-hover); color: var(--color-white); text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { box-shadow: var(--focus); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-soft); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-deep); }
.btn-lg { padding: 1.05rem 1.6rem; font-size: 1.05rem; }
.btn-sm { padding: .65rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0; gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; line-height: 0;
  text-decoration: none; flex-shrink: 0;
}
.logo img {
  height: 32px; width: auto; display: block;
}
.logo:hover { text-decoration: none; opacity: .92; }
.logo span { color: var(--teal); } /* leftover text logos only */

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--white); cursor: pointer;
  color: var(--navy); flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--teal); }
.nav-toggle svg { width: 22px; height: 22px; }

.nav-panel {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm); padding: 1rem 0 1.25rem;
}
.nav-panel.is-open { display: block; }
.nav-panel .wrap { display: flex; flex-direction: column; gap: .35rem; }
.nav-panel a {
  color: var(--ink); font-weight: 500; padding: .7rem .85rem;
  border-radius: var(--radius-sm); text-decoration: none;
}
.nav-panel a:hover, .nav-panel a[aria-current="page"] {
  background: var(--sand); color: var(--teal); text-decoration: none;
}
.nav-panel .nav-phone {
  margin-top: .5rem; padding: .85rem;
  font-weight: 600; color: var(--navy);
  border-top: 1px solid var(--line);
}

.nav-desktop { display: none; gap: 1.35rem; align-items: center; }
.nav-desktop a {
  color: var(--ink); font-weight: 500; font-size: .95rem; text-decoration: none;
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--teal); }
.nav-actions { display: flex; gap: .55rem; align-items: center; }
.phone-pill {
  display: none; font-weight: 600; color: var(--navy); font-size: .95rem;
  text-decoration: none; white-space: nowrap;
}
.phone-pill:hover { color: var(--teal); text-decoration: none; }

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .nav-panel { display: none !important; }
  .nav-desktop { display: flex; }
  .phone-pill { display: inline; }
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(42,157,143,.20), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(224,138,46,.12), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 48%, var(--navy-mid) 100%);
  color: var(--white); padding: 3.25rem 0 4rem; position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .75rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  letter-spacing: .02em; margin-bottom: 1.15rem; color: var(--teal-muted);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(42,157,143,.35);
}
.hero h1 {
  font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1rem;
}
.hero .lede {
  font-size: 1.1rem; opacity: .9; max-width: 34rem; margin-bottom: 1.75rem;
  color: rgba(255,255,255,.88);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.hero-meta strong { color: var(--white); font-weight: 600; }

.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 1.5rem; backdrop-filter: blur(8px);
}
.hero-card h2 {
  font-family: var(--display); font-size: 1.25rem; margin-bottom: .85rem;
  font-weight: 600;
}
.hero-card ol { counter-reset: step; display: grid; gap: .85rem; }
.hero-card li {
  display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; align-items: start;
  font-size: .95rem; color: rgba(255,255,255,.88);
}
.hero-card li::before {
  counter-increment: step; content: counter(step);
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.hero-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4/3;
  background:
    linear-gradient(160deg, rgba(11,31,58,.40), rgba(42,157,143,.22)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=900&q=80") center/cover;
}

/* Page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(42,157,143,.16), transparent 50%),
    linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: var(--white); padding: 2.75rem 0 3rem;
}
.page-hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.6rem); letter-spacing: -0.02em;
  line-height: 1.18; margin-bottom: .75rem;
}
.page-hero .lede {
  font-size: 1.08rem; color: rgba(255,255,255,.88); max-width: 38rem;
}

/* Sections */
section { padding: 3.5rem 0; }
.section-sand { background: var(--sand); }
.section-navy {
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.1rem); letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: .55rem; line-height: 1.2;
}
.section-navy .section-head h2 { color: var(--white); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-head p { color: rgba(255,255,255,.8); }
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--teal);
  margin-bottom: .5rem;
}
.section-navy .kicker { color: var(--teal-bright); }

/* Cards / grids */
.grid-3 {
  display: grid; gap: 1.25rem;
}
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid-2 {
  display: grid; gap: 1.25rem;
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.card h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: .5rem;
}
.card p { color: var(--muted); font-size: .98rem; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700;
}
.step-num {
  font-family: var(--display); font-size: 2rem; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: .65rem;
}

/* Trust strip */
.trust-strip {
  display: grid; gap: 1rem; padding: 1.5rem 0;
}
@media (min-width: 640px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); text-align: center; }
}
.trust-item {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .92rem; color: var(--muted);
}
@media (min-width: 640px) {
  .trust-item { flex-direction: column; align-items: center; gap: .4rem; }
}
.trust-item strong { color: var(--navy); display: block; font-size: .98rem; }

/* Dual CTA band */
.cta-band {
  display: grid; gap: 1.25rem;
}
@media (min-width: 720px) {
  .cta-band { grid-template-columns: 1fr 1fr; }
}
.cta-tile {
  border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--line);
  background: var(--white); display: flex; flex-direction: column; gap: .85rem;
}
.cta-tile h3 {
  font-family: var(--display); font-size: 1.35rem; color: var(--navy);
}
.cta-tile p { color: var(--muted); flex: 1; }
.cta-tile.accent {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-color: transparent; color: var(--white);
}
.cta-tile.accent h3 { color: var(--white); }
.cta-tile.accent p { color: rgba(255,255,255,.82); }

/* Services teaser */
.service-row {
  display: grid; gap: 1rem;
}
@media (min-width: 640px) {
  .service-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.service-pill {
  border-radius: var(--radius); padding: 1.35rem; border: 1px solid var(--line);
  background: var(--white);
}
.service-pill.live {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--white), var(--teal-soft));
}
.service-pill .badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .25rem .55rem; border-radius: 999px; margin-bottom: .65rem;
}
.badge-live { background: var(--teal); color: var(--white); }
.service-pill h3 {
  font-family: var(--display); font-size: 1.15rem; color: var(--navy);
  margin-bottom: .35rem;
}
.service-pill p { font-size: .92rem; color: var(--muted); }

/* Forms */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow);
}
.form-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 560px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-weight: 600; font-size: .9rem; color: var(--navy);
}
.field .hint { font-size: .82rem; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; padding: .75rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink);
  transition: border-color .15s;
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: #b0c4c0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: var(--focus);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: .88rem; color: var(--muted); margin-top: .75rem;
}
.callout {
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
  background: var(--teal-soft); border: 1px solid var(--teal-muted);
  margin: 1.5rem 0;
}
.callout strong { color: var(--navy); }
.callout-warn {
  background: var(--warn-bg); border-color: #fcd34d;
}
.disclaimer {
  font-size: .88rem; color: var(--muted); line-height: 1.5;
  padding: 1rem 1.15rem; background: var(--sand); border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}

/* FAQ */
.faq { display: grid; gap: .65rem; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); padding: 0;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy);
  padding: 1rem 1.15rem; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.25rem; color: var(--teal); font-weight: 400;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding: 0 1.15rem 1.15rem; color: var(--muted); font-size: .98rem;
}

/* Tables */
.rate-table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.rate-table th, .rate-table td {
  text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line);
}
.rate-table th {
  background: var(--navy); color: var(--white); font-weight: 600;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .04em;
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-table td:last-child { font-weight: 600; color: var(--navy); white-space: nowrap; }
@media (max-width: 560px) {
  .rate-table { font-size: .85rem; }
  .rate-table th, .rate-table td { padding: .7rem .65rem; }
}

/* Split layout */
.split {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split.form-heavy { grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); }
}

/* Pros benefits list */
.check-list { display: grid; gap: .75rem; }
.check-list li {
  display: flex; gap: .65rem;
  align-items: flex-start; color: var(--ink);
  line-height: 1.5;
}
.check-list li::before {
  content: "✓"; color: var(--teal); font-weight: 700; font-size: 1.05rem;
  flex: 0 0 auto; line-height: 1.45;
}
.split.form-heavy > aside {
  min-width: 0; /* prevent grid blowout */
}
.split.form-heavy > aside p,
.split.form-heavy > aside .disclaimer {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* Photo strip */
.photo-strip {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9;
  background:
    linear-gradient(160deg, rgba(7,47,57,.4), rgba(13,148,136,.3)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.78);
  padding: 3rem 0 2rem; font-size: .92rem;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .logo { display: inline-flex; margin-bottom: .65rem; }
.footer-brand .logo img { height: 30px; }
.footer-brand p { max-width: 22rem; line-height: 1.55; }
.site-footer h4 {
  color: var(--white); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .85rem;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--teal-bright); text-decoration: underline; }
.footer-links { display: grid; gap: .45rem; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.35rem;
  display: grid; gap: .85rem;
}
.footer-legal p { font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.6); max-width: 52rem; }
.footer-copy { font-size: .85rem; color: rgba(255,255,255,.55); }

/* Utilities */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.stack-sm { display: flex; flex-wrap: wrap; gap: .65rem; }


/* Waitlist / limited trade badges */
.service-pill.wait {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.badge-wait {
  background: #64748b;
  color: #fff;
}

/* Legal stub pages */
.legal-doc {
  max-width: 48rem;
  padding-bottom: 3rem;
}
.legal-doc h1 { display: none; } /* page hero already has title */
.legal-doc h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.75rem 0 .75rem;
}
.legal-doc h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.25rem 0 .5rem;
}
.legal-doc p { color: var(--ink); line-height: 1.6; margin: .65rem 0; }
.legal-doc ul { margin: .5rem 0 1rem 1.1rem; }
.legal-doc li { margin: .35rem 0; line-height: 1.55; color: var(--ink); }
.legal-review-note {
  margin-top: 2.5rem;
  font-size: .8rem;
  color: var(--muted);
  border-top: 1px solid var(--border, #e2e8f0);
  padding-top: .85rem;
}

/* —— Account / Auth / Pro profile / Dashboard (demo-ready UX) —— */
.example-badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: .2rem .5rem; border-radius: 999px;
  background: #e2e8f0; color: #475569; vertical-align: middle;
}
.example-note {
  font-size: .88rem; color: var(--muted);
  background: var(--sand); border: 1px dashed var(--line);
  border-radius: var(--radius-sm); padding: .75rem 1rem; margin: 1rem 0;
}

.profile-header {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.avatar-ph {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-soft), var(--teal-muted));
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.75rem;
  flex-shrink: 0; border: 3px solid var(--white); box-shadow: var(--shadow-sm);
}
.avatar-ph.lg { width: 112px; height: 112px; font-size: 2.1rem; }
.profile-meta h1, .profile-meta h2 {
  font-family: var(--display); color: var(--navy); font-size: 1.55rem;
  margin-bottom: .25rem; letter-spacing: -0.02em;
}
.profile-meta .contact-line { color: var(--muted); font-size: .95rem; }
.profile-meta .contact-line a { color: var(--teal); }
.badge-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .65rem; }
.pill-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; padding: .3rem .65rem;
  border-radius: 999px; background: var(--teal-soft); color: var(--navy);
  border: 1px solid var(--teal-muted);
}
.pill-badge.ok { background: #d1fae5; border-color: #6ee7b7; color: var(--success); }
.pill-badge.warn { background: var(--warn-bg); border-color: #fcd34d; color: var(--warn); }

.tabs {
  display: flex; flex-wrap: wrap; gap: .35rem;
  border-bottom: 1px solid var(--line); margin: 1.75rem 0 1.25rem; padding-bottom: 0;
}
.tab-btn {
  appearance: none; background: transparent; border: none; cursor: pointer;
  font: inherit; font-weight: 600; font-size: .95rem; color: var(--muted);
  padding: .7rem 1rem; border-bottom: 2px solid transparent; margin-bottom: -1px;
  border-radius: 8px 8px 0 0;
}
.tab-btn:hover { color: var(--teal); background: var(--sand); }
.tab-btn[aria-selected="true"] {
  color: var(--teal); border-bottom-color: var(--teal); background: transparent;
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.addr-block {
  border: 2px solid var(--teal); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--white), var(--teal-soft));
  padding: 1.25rem 1.35rem; margin: 1.25rem 0;
}
.addr-block > legend, .addr-block-title {
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  color: var(--navy); margin-bottom: .35rem;
}
.addr-block-sub { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }

.google-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  width: 100%; padding: .85rem 1.2rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  font: inherit; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.google-btn:hover { border-color: #94a3b8; background: #f8fafc; text-decoration: none; }
.google-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.mfa-panel {
  display: grid; gap: 1.25rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; background: var(--white);
}
@media (min-width: 640px) {
  .mfa-panel { grid-template-columns: 160px 1fr; align-items: start; }
}
.qr-ph {
  width: 148px; height: 148px; border-radius: 12px;
  background:
    repeating-linear-gradient(0deg, #0f172a 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, #0f172a 0 4px, transparent 4px 8px),
    #f1f5f9;
  background-size: 100% 100%, 100% 100%, auto;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.qr-ph::after {
  content: "QR"; font-family: var(--display); font-weight: 700;
  font-size: 1.5rem; color: var(--navy); background: rgba(255,255,255,.92);
  padding: .35rem .7rem; border-radius: 8px; z-index: 1;
}
.backup-codes {
  display: grid; grid-template-columns: 1fr 1fr; gap: .45rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .85rem; background: var(--sand); padding: .85rem;
  border-radius: var(--radius-sm); border: 1px dashed var(--line);
}
.backup-codes span {
  background: var(--white); padding: .35rem .5rem; border-radius: 6px;
  text-align: center; border: 1px solid var(--line);
}

.job-card {
  display: grid; gap: 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem; background: var(--white);
}
@media (min-width: 560px) {
  .job-card { grid-template-columns: 96px 1fr auto; align-items: start; }
}
.job-photo-ph {
  width: 96px; height: 72px; border-radius: 8px;
  background: linear-gradient(135deg, #cbd5e1, #e2e8f0);
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-size: .75rem; font-weight: 600;
}
.warranty-ok { color: var(--success); font-weight: 600; font-size: .88rem; }
.warranty-closed { color: var(--muted); font-weight: 600; font-size: .88rem; }

.gallery-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #94a3b8, #cbd5e1);
  display: flex; align-items: flex-end; padding: .65rem;
  color: var(--white); font-size: .8rem; font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.35);
  border: 1px solid var(--line);
}
.gallery-item:nth-child(2) { background: linear-gradient(145deg, #0d9488, #5eead4); }
.gallery-item:nth-child(3) { background: linear-gradient(145deg, #0b3d4a, #14b8a6); }
.gallery-item:nth-child(4) { background: linear-gradient(145deg, #64748b, #94a3b8); }
.gallery-item:nth-child(5) { background: linear-gradient(160deg, #1e3a5f, #0d9488); }
.gallery-item:nth-child(6) { background: linear-gradient(145deg, #475569, #99f6e4); }

.metrics-row {
  display: grid; gap: .85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .metrics-row { grid-template-columns: repeat(4, 1fr); }
}
.metric-tile {
  background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem; text-align: center;
}
.metric-tile strong {
  display: block; font-family: var(--display); font-size: 1.5rem;
  color: var(--navy); line-height: 1.2;
}
.metric-tile span { font-size: .8rem; color: var(--muted); }

.dash-grid {
  display: grid; gap: 1.15rem;
}
@media (min-width: 720px) {
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
}
.dash-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem; box-shadow: var(--shadow-sm);
}
.dash-card h3 {
  font-family: var(--display); font-size: 1.15rem; color: var(--navy);
  margin-bottom: .5rem;
}
.upload-ph {
  border: 2px dashed var(--line); border-radius: var(--radius-sm);
  padding: 1.5rem; text-align: center; color: var(--muted);
  background: var(--sand); font-size: .92rem;
}
.earnings-stub {
  font-family: var(--display); font-size: 2rem; color: var(--navy);
  font-weight: 700;
}
.settings-list { display: grid; gap: .85rem; }
.settings-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.settings-row:last-child { border-bottom: none; }
.toggle-fake {
  width: 44px; height: 26px; border-radius: 999px; background: var(--teal);
  position: relative; flex-shrink: 0;
}
.toggle-fake::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: white; top: 3px; right: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-fake.off { background: #94a3b8; }
.toggle-fake.off::after { right: auto; left: 3px; }

.auth-shell { max-width: 440px; margin: 0 auto; }
.auth-divider {
  display: flex; align-items: center; gap: .75rem;
  color: var(--muted); font-size: .85rem; margin: 1.15rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.nav-link-quiet {
  font-weight: 500; font-size: .9rem; color: var(--ink); text-decoration: none;
  padding: .4rem .55rem;
}
.nav-link-quiet:hover { color: var(--teal); text-decoration: none; }
@media (min-width: 920px) {
  .nav-actions .nav-link-quiet { display: inline; }
}
.pro-hero-photo {
  width: 100%; max-width: 280px; aspect-ratio: 1; border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(7,47,57,.25), rgba(13,148,136,.35)),
    #94a3b8;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9); font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow);
}
.cred-list { display: grid; gap: .55rem; }
.cred-list li {
  padding: .65rem .85rem; background: var(--sand); border-radius: var(--radius-sm);
  border: 1px solid var(--line); font-size: .95rem; color: var(--ink);
}

/* —— Usability: intent search, pro cards, wizard, auth, payouts —— */
.intent-search {
  margin-top: 1.35rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.intent-search-label {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: .55rem;
}
.intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: stretch;
}
.intent-input-wrap {
  position: relative;
  flex: 1 1 240px;
  min-width: 0;
}
.intent-input-wrap input {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.15rem;
  font-size: 1.05rem;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
.intent-geo {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.14);
  color: #fff;
  border-radius: 999px;
  padding: .65rem 1rem;
  font-size: .88rem;
  white-space: nowrap;
}
.intent-geo select {
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
}
.intent-geo select option { color: var(--ink); }
.suggest-list {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 20;
  max-height: 260px;
  overflow: auto;
  display: none;
}
.suggest-list.is-open { display: block; }
.suggest-list button {
  display: block; width: 100%; text-align: left;
  border: none; background: transparent; padding: .75rem 1rem;
  font: inherit; color: var(--ink); cursor: pointer;
}
.suggest-list button:hover,
.suggest-list button[aria-selected="true"] { background: var(--teal-soft); color: var(--navy); }
.suggest-list .suggest-meta { color: var(--muted); font-size: .82rem; margin-left: .35rem; }
.quick-chips {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .75rem;
}
.chip {
  display: inline-flex; align-items: center;
  padding: .4rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.16); color: #fff;
  font-size: .82rem; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
}
.chip:hover { background: rgba(255,255,255,.28); text-decoration: none; }
.chip-dark {
  background: var(--sand); color: var(--navy); border-color: var(--line);
}
.chip-dark:hover { background: var(--teal-soft); border-color: var(--teal); color: var(--teal); }

.pro-card-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pro-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .pro-card-grid { grid-template-columns: repeat(3, 1fr); }
}
.pro-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.pro-card-photo {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #94a3b8, #cbd5e1);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: .75rem; color: #fff; font-weight: 600; font-size: .85rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.35);
}
.pro-card-photo.p1 { background: linear-gradient(160deg, rgba(7,47,57,.35), rgba(13,148,136,.4)), #64748b; }
.pro-card-photo.p2 { background: linear-gradient(160deg, rgba(7,47,57,.35), rgba(180,83,9,.35)), #475569; }
.pro-card-photo.p3 { background: linear-gradient(160deg, rgba(7,47,57,.4), rgba(4,120,87,.35)), #334155; }
.pro-card-photo.p4 { background: linear-gradient(160deg, rgba(13,148,136,.45), rgba(7,47,57,.35)), #0f766e; }
.pro-card-body { padding: 1.1rem 1.15rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .55rem; }
.pro-card-body h3 {
  font-family: var(--display); font-size: 1.15rem; color: var(--navy); margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .78rem; font-weight: 700; padding: .28rem .55rem;
  border-radius: 999px; width: fit-content;
}
.trust-badge.licensed { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.trust-badge.handyman { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.pro-card-meta { font-size: .9rem; color: var(--muted); }
.pro-card-meta strong { color: var(--ink); }
.stars { color: #b45309; letter-spacing: .05em; font-size: .95rem; }
.price-band {
  font-weight: 700; color: var(--navy); font-size: .95rem;
  background: var(--sand); border-radius: var(--radius-sm);
  padding: .55rem .75rem; border: 1px solid var(--line);
}
.pro-card-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .35rem; }
.search-toolbar {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: end;
  margin-bottom: 1.25rem;
}
.search-toolbar .field { flex: 1 1 160px; margin: 0; }
.search-toolbar label { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: .35rem; }
.search-toolbar select, .search-toolbar input {
  width: 100%; padding: .7rem .85rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font: inherit; background: var(--white);
}
.license-first-note {
  background: var(--teal-soft); border: 1px solid #99f6e4;
  border-radius: var(--radius-sm); padding: .85rem 1rem;
  font-size: .92rem; color: var(--navy); margin-bottom: 1.15rem;
}

.wizard-steps {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem;
}
.wizard-step-pill {
  flex: 1 1 120px; text-align: center; padding: .65rem .5rem;
  border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--white);
}
.wizard-step-pill.is-active { border-color: var(--teal); color: var(--navy); background: var(--teal-soft); }
.wizard-step-pill.is-done { border-color: #a7f3d0; color: var(--success); }
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; }
.wizard-nav { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.15rem; }
.zip-chip-grid { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .5rem; }
.zip-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .7rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--sand); font-size: .85rem; cursor: pointer; user-select: none;
}
.zip-chip input { accent-color: var(--teal); }
.zip-chip:has(input:checked) { background: var(--teal-soft); border-color: var(--teal); color: var(--navy); font-weight: 600; }
.keep-85 {
  background: linear-gradient(135deg, #ecfdf5, #ccfbf1);
  border: 1px solid #a7f3d0; border-radius: var(--radius);
  padding: 1rem 1.15rem; margin: 1rem 0;
}
.keep-85 strong { color: var(--success); font-size: 1.05rem; }

.auth-tabs { display: flex; gap: .35rem; margin-bottom: 1rem; flex-wrap: wrap; }
.auth-tab {
  flex: 1 1 100px; border: 1.5px solid var(--line); background: var(--sand);
  border-radius: 999px; padding: .55rem .75rem; font: inherit; font-weight: 600;
  font-size: .88rem; cursor: pointer; color: var(--muted);
}
.auth-tab.is-active { background: var(--teal-soft); border-color: var(--teal); color: var(--navy); }
.auth-panel { display: none; }
.auth-panel.is-active { display: block; }
.otp-boxes {
  display: flex; gap: .45rem; justify-content: space-between; margin: .75rem 0;
}
.otp-boxes input {
  width: 100%; max-width: 48px; aspect-ratio: 1; text-align: center;
  font-size: 1.25rem; font-weight: 700; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: inherit;
}
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  width: 100%; padding: .85rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white);
  font: inherit; font-weight: 600; color: var(--ink); text-decoration: none;
  margin-top: .55rem; cursor: pointer;
}
.social-btn:hover { border-color: var(--teal); background: var(--sand); text-decoration: none; }
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.apple-btn { background: #111; color: #fff; border-color: #111; }
.apple-btn:hover { background: #000; color: #fff; border-color: #000; }

.offer-services {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 1.25rem; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: var(--sand); margin: 1.25rem 0;
}
.offer-services h3 { font-family: var(--display); font-size: 1.15rem; color: var(--navy); margin: 0 0 .25rem; }
.offer-services p { margin: 0; color: var(--muted); font-size: .92rem; }
.toggle-switch {
  position: relative; width: 52px; height: 30px; flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: #94a3b8; border-radius: 999px; cursor: pointer;
  transition: .2s;
}
.toggle-slider::before {
  content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; top: 4px; left: 4px; transition: .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--teal); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.book-steps {
  display: grid; gap: .75rem; margin-bottom: 1.25rem;
}
@media (min-width: 720px) { .book-steps { grid-template-columns: repeat(3, 1fr); } }
.book-step {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1rem;
}
.book-step strong { display: block; color: var(--navy); margin-bottom: .25rem; }
.book-step span { font-size: .88rem; color: var(--muted); }

.dispute-ledger {
  display: grid; gap: 1rem; margin: 1.25rem 0;
}
.ticket-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem; background: var(--white); box-shadow: var(--shadow-sm);
}
.ticket-card h3 { font-family: var(--display); color: var(--navy); font-size: 1.1rem; margin-bottom: .35rem; }
.ticket-status {
  display: inline-flex; font-size: .78rem; font-weight: 700; padding: .25rem .55rem;
  border-radius: 999px; background: #fffbeb; color: var(--warn); border: 1px solid #fde68a;
}
.ticket-status.open { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.ticket-status.resolved { background: #ecfdf5; color: var(--success); border-color: #a7f3d0; }

.payout-box {
  background: var(--sand); border-radius: var(--radius-sm); padding: 1rem;
  border: 1px solid var(--line); margin-top: .75rem;
}
.payout-row {
  display: flex; justify-content: space-between; gap: .75rem; flex-wrap: wrap;
  padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .95rem;
}
.payout-row:last-child { border-bottom: none; font-weight: 700; color: var(--navy); }
.payout-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .85rem; }


/* Location typeahead + chips */
.loc-typeahead { position: relative; }
.loc-typeahead input {
  width: 100%;
}
.loc-chips {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .55rem; min-height: 0;
}
.loc-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .7rem; border-radius: 999px;
  background: var(--teal-soft); border: 1.5px solid var(--teal);
  color: var(--navy); font-size: .85rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.loc-chip span { font-weight: 700; opacity: .7; }
.loc-suggest { z-index: 30; }

.avail-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .35rem; }
.avail-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .8rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--sand); font-size: .88rem; cursor: pointer;
}
.avail-toggle:has(input:checked) {
  background: var(--teal-soft); border-color: var(--teal); color: var(--navy); font-weight: 600;
}

.after-hours-policy {
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.45;
}
.after-hours-policy strong { color: var(--navy); }


/* Go-live: veteran-owned chip in footer */
.footer-veteran {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}
.footer-legal .footer-veteran {
  color: rgba(255, 255, 255, 0.78);
}


/* —— Preview / demote fake product until backend live —— */
.preview-banner {
  background: #fff7ed;
  border-bottom: 1px solid #fdba74;
  color: #9a3412;
  padding: .75rem 1.25rem;
  font-size: .92rem;
  line-height: 1.45;
  text-align: center;
}
.preview-banner a { color: #c2410c; font-weight: 600; text-decoration: underline; }
.preview-banner strong { color: #7c2d12; }

/* —— Nevada SEO: video placeholder + local caption —— */
.nv-video {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
}
@media (min-width: 800px) {
  .nv-video { grid-template-columns: 1.4fr 1fr; align-items: start; }
}
.nv-video-frame {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b3d4a;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
}
.nv-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45, 212, 191, .28), transparent 55%),
    linear-gradient(145deg, #0b3d4a 0%, #0f5c6e 55%, #164e63 100%);
  color: #fff;
}
.nv-video-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  padding: .3rem .65rem;
  border-radius: 999px;
}
.nv-video-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(11, 61, 74, .45);
  display: grid;
  place-items: center;
  cursor: default;
  margin-top: .35rem;
}
.nv-video-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.nv-video-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: .35rem 0 0;
  color: #fff;
}
.nv-video-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.nv-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.nv-video-caption {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.nv-video-hook {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}


/* Brand link chips (/nv/ secondary communities, etc.) */
a.chip, a.chip-dark, a.btn-outline-dark {
  cursor: pointer;
}
a.btn-outline-dark.btn-sm {
  text-decoration: none;
}
a.btn-outline-dark.btn-sm:hover {
  text-decoration: none;
}


/* —— Problem photos (booking) —— */
.problem-photos-field .photo-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 7.5rem;
  padding: 1.25rem 1rem;
  border: 2px dashed rgba(11, 61, 74, .28);
  border-radius: var(--radius-sm, 12px);
  background: var(--sand, #f6f4ee);
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition: border-color .15s ease, background .15s ease;
}
.problem-photos-field .photo-drop:hover,
.problem-photos-field .photo-drop:focus-within {
  border-color: var(--teal, #1A9C8A);
  background: #fff;
}
.problem-photos-field .photo-drop-title {
  font-weight: 600;
  color: var(--navy, #0B3D4A);
  font-size: 1rem;
}
.problem-photos-field .photo-drop-sub {
  font-size: .85rem;
}
.problem-photos-field .photo-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.problem-photos-field .photo-drop {
  position: relative;
}
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: .65rem;
  margin-top: .85rem;
}
.photo-preview-grid:empty { display: none; }
.photo-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line, #e2e8f0);
  background: #e2e8f0;
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-preview .photo-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .2rem .35rem;
  font-size: .65rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.photo-preview .photo-remove {
  position: absolute;
  top: .25rem;
  right: .25rem;
  width: 1.4rem;
  height: 1.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
}
.problem-photos-field .form-note[data-photo-msg]:not([hidden]) {
  color: #b45309;
}
