/* =========================================================================
   FixRight Handyman Services — shared stylesheet
   Design tokens: 8px spacing scale, navy + cheerful red, pill buttons,
   rounded card panels, angled section dividers.
   ========================================================================= */

:root {
  /* Color */
  --navy-900: #14213a;
  --navy-800: #1b2a4a;
  --navy-700: #2e4370;
  --navy-600: #445a8c;
  --red-700: #b3341f;
  --red-600: #c0392b;
  --red-500: #d9432f;
  --red-bright: #e8573f;
  --cream: #fbf5ee;
  --cream-dark: #f3e9dc;
  --white: #ffffff;
  --ink: #1b2a4a;
  --ink-soft: #4c5566;
  --gray-600: #5b6472;
  --border: #e7ddd0;
  --border-dark: #2e4370;
  --focus: #ffb200;

  /* Spacing (8px base) */
  --sp-1: 0.5rem;   /* 8 */
  --sp-2: 1rem;     /* 16 */
  --sp-3: 1.5rem;   /* 24 */
  --sp-4: 2rem;     /* 32 */
  --sp-5: 3rem;     /* 48 */
  --sp-6: 4rem;     /* 64 */
  --sp-7: 6rem;     /* 96 */

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Type */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text-sm: 0.9rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.9rem;
  --text-3xl: 2.4rem;
  --text-4xl: 3rem;
  --text-5xl: 3.6rem;

  --shadow-card: 0 12px 30px -14px rgba(27, 42, 74, 0.28);
  --shadow-btn: 0 8px 18px -8px rgba(192, 57, 43, 0.55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul[class], ol[class] { list-style: none; padding: 0; margin: 0; }
img, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: var(--text-base);
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }

p { color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

/* Visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

.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;
}

.skip-link {
  position: absolute;
  left: var(--sp-2);
  top: -60px;
  background: var(--navy-800);
  color: var(--white);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: var(--sp-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--red-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -10px rgba(192, 57, 43, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-outline:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: var(--sp-2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
.logo-text span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  position: relative;
}

.nav-links {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.nav-link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-800);
  text-decoration: none;
  padding: 0.4rem 0.15rem;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover { color: var(--red-600); }
.nav-link[aria-current="page"] {
  color: var(--red-600);
  border-bottom-color: var(--red-600);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-800);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone svg { width: 22px; height: 22px; flex-shrink: 0; }
.header-phone:hover { color: var(--red-600); }

.nav-toggle {
  display: none;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger-box {
  position: relative;
  width: 20px;
  height: 15px;
  display: block;
}
.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.4px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger-line.line1 { top: 0; }
.hamburger-line.line2 { top: 6.5px; }
.hamburger-line.line3 { top: 13px; }
.nav-toggle[aria-expanded="true"] .line1 { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .line2 { opacity: 0; }
.nav-toggle[aria-expanded="true"] .line3 { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 24px -18px rgba(27,42,74,0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open .nav-links {
    max-height: 420px;
  }
  .nav-link {
    padding: var(--sp-2) var(--sp-3);
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-link[aria-current="page"] { border-left: 4px solid var(--red-600); }
  .nav-toggle { display: inline-flex; }
  .header-phone span.header-phone-text { display: none; }
}

@media (max-width: 480px) {
  .header-cta .btn-primary { display: none; }
}

@media (min-width: 861px) {
  .nav-links { display: flex !important; max-height: none; position: static; box-shadow: none; border: 0; background: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: var(--sp-7);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-5);
  align-items: center;
  padding-block: var(--sp-6) var(--sp-5);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 87, 63, 0.18);
  border: 1px solid rgba(232, 87, 63, 0.5);
  color: #ffcabe;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-2);
}
.hero h1 {
  color: var(--white);
  font-size: var(--text-5xl);
  margin-bottom: var(--sp-2);
}
.hero-sub {
  color: #cfd8ec;
  font-size: var(--text-lg);
  max-width: 46ch;
  margin-bottom: var(--sp-4);
}
.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.hero-art {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: var(--text-3xl); }
  .hero-art { max-width: 380px; margin-inline: auto; }
}

/* ---------- Stats / trust bar ---------- */
.stats-bar {
  margin-top: calc(-1 * var(--sp-6));
  position: relative;
  z-index: 5;
}
.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: var(--sp-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  text-align: center;
}
.stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--red-600);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
@media (max-width: 720px) {
  .stats-card { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sections ---------- */
.section {
  padding-block: var(--sp-7);
}
.section-cream { background: var(--cream); }
.section-navy {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.section-navy h2, .section-navy p { color: var(--white); }
.section-navy .section-eyebrow { color: #ffcabe; }

.section-head {
  max-width: 60ch;
  margin-bottom: var(--sp-5);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--red-600);
  margin-bottom: var(--sp-1);
}
.section-head p { margin-top: var(--sp-2); font-size: var(--text-lg); }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: var(--sp-3);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px -16px rgba(27,42,74,0.32);
}

.icon-badge {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.icon-badge svg { width: 38px; height: 38px; }

.service-card h3 { margin-bottom: var(--sp-1); }
.service-card p { font-size: var(--text-sm); }
.service-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: var(--sp-2);
  font-weight: 700;
  color: var(--red-600);
  text-decoration: none;
  font-size: 0.92rem;
}
.service-card a.card-link:hover { text-decoration: underline; }

/* Why choose us */
.why-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.why-item .check {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item .check svg { width: 18px; height: 18px; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.why-item p { font-size: var(--text-sm); }

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: var(--sp-4);
  position: relative;
}
.testimonial .quote-mark {
  width: 36px;
  height: 28px;
  color: var(--red-600);
  opacity: 0.8;
  margin-bottom: var(--sp-1);
}
.testimonial p.quote {
  color: var(--ink);
  font-size: var(--text-base);
  font-style: italic;
}
.testimonial .stars {
  display: flex;
  gap: 2px;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-1);
}
.testimonial .stars svg { width: 16px; height: 16px; color: var(--red-bright); }
.testimonial-name {
  font-weight: 800;
  color: var(--navy-800);
  font-size: 0.95rem;
}
.testimonial-loc {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--red-700), var(--red-500));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: var(--sp-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #ffe3dc; font-size: var(--text-lg); margin-top: var(--sp-1); margin-bottom: var(--sp-3); }
.cta-banner .btn-outline { background: var(--white); color: var(--red-700); border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

/* Service area teaser chips */
.area-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-top: var(--sp-3);
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--navy-800);
  transition: background 0.15s ease, color 0.15s ease;
}
.area-chip:hover { background: var(--navy-800); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #cfd8ec;
  padding-block: var(--sp-6) var(--sp-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--sp-2);
  text-decoration: none;
}
.footer-logo .logo-mark { width: 38px; height: 38px; }
.footer-logo strong { color: var(--white); font-size: 1.1rem; font-weight: 800; }
.site-footer address { font-style: normal; font-size: 0.95rem; line-height: 1.8; }
.site-footer a { text-decoration: none; color: #cfd8ec; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: var(--sp-2);
}
.footer-nav-list, .footer-hours-list { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.95rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-1);
  padding-top: var(--sp-3);
  font-size: 0.85rem;
  color: #9aa8c4;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-block: var(--sp-6) var(--sp-6);
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: #cfd8ec; max-width: 60ch; margin: var(--sp-2) auto 0; font-size: var(--text-lg); }
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: #9aa8c4;
  margin-bottom: var(--sp-2);
}
.page-hero .breadcrumb a { color: #cfd8ec; text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ---------- Services page ---------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 780px) { .services-list { grid-template-columns: 1fr; } }
.service-detail {
  display: flex;
  gap: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
}
.service-detail .icon-badge { flex-shrink: 0; }
.service-detail h2 { font-size: var(--text-lg); margin-bottom: var(--sp-1); }
.service-detail p { font-size: var(--text-sm); }

/* ---------- About page ---------- */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-2); }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--sp-3); }
.value-card .icon-badge { margin-inline: auto; }

.team-card { text-align: center; }
.avatar { width: 96px; height: 96px; margin: 0 auto var(--sp-2); }
.team-role { color: var(--red-600); font-weight: 700; font-size: 0.9rem; margin-bottom: var(--sp-1); }
.team-bio { font-size: var(--text-sm); }

.cert-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
@media (max-width: 780px) { .cert-list { grid-template-columns: 1fr; } }
.cert-card {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
}
.cert-card .icon-badge { width: 48px; height: 48px; flex-shrink: 0; margin: 0; }
.cert-card .icon-badge svg { width: 28px; height: 28px; }
.cert-card h3 { font-size: 1rem; }
.cert-card p { font-size: 0.88rem; }

/* ---------- Service areas page ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .areas-grid { grid-template-columns: 1fr; } }
.area-tile {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  font-weight: 700;
  color: var(--navy-800);
}
.area-tile svg { width: 20px; height: 20px; color: var(--red-600); flex-shrink: 0; }

.area-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (max-width: 780px) { .area-feature-grid { grid-template-columns: 1fr; } }
.area-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.area-feature h3 { color: var(--red-600); margin-bottom: var(--sp-1); }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-5);
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--sp-4);
}
.form-row { margin-bottom: var(--sp-3); }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}
.form-row .required { color: var(--red-600); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: var(--text-base);
  background: var(--cream);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--navy-700);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
@media (max-width: 520px) { .form-two { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: var(--sp-2); }

.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.info-row { display: flex; gap: var(--sp-2); align-items: flex-start; margin-bottom: var(--sp-2); }
.info-row:last-child { margin-bottom: 0; }
.info-row .icon-badge { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
.info-row .icon-badge svg { width: 24px; height: 24px; }
.info-row a { font-weight: 700; color: var(--navy-800); text-decoration: none; }
.info-row a:hover { color: var(--red-600); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table th {
  text-align: left;
  color: var(--white);
  background: var(--navy-800);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hours-table th:first-child { border-top-left-radius: var(--radius-sm); }
.hours-table th:last-child { border-top-right-radius: var(--radius-sm); }
.hours-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr:nth-child(even) td { background: var(--cream); }

@media print, (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* =========================================================================
   Booking / Estimate / Portal / Payment additions (SPEC-ADDONS)
   Appended — rules above this line are untouched.
   ========================================================================= */

/* Author-stylesheet [hidden] always wins over any explicit `display` a
   component class might set (grids, flex, etc.), so a plain `hidden`
   attribute reliably hides progressive-disclosure panels everywhere. */
[hidden] { display: none !important; }

/* Keep the nav collapsed into the hamburger up to a wider breakpoint now
   that there are 7 links, so nothing overflows the header on tablet/small
   desktop widths. */
@media (max-width: 1100px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 24px -18px rgba(27,42,74,0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open .nav-links {
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-link {
    padding: var(--sp-2) var(--sp-3);
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-link[aria-current="page"] { border-left: 4px solid var(--red-600); }
  .nav-toggle { display: inline-flex; }
  .header-phone span.header-phone-text { display: none; }
}
@media (min-width: 1101px) {
  .nav-links { gap: var(--sp-2); }
  .nav-link { font-size: 0.93rem; }
}
@media (max-width: 480px) {
  .header-cta .btn-primary {
    display: inline-flex;
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* Demo note */
.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--cream-dark);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
}
.demo-note svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--red-600); }
.demo-note-wrap { display: flex; justify-content: center; margin-top: var(--sp-4); }

.form-error-text {
  color: var(--red-700);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: var(--sp-2);
}

/* Intro copy blocks reused on booking/estimate/portal */
.flow-intro { max-width: 70ch; }
.flow-intro p { margin-top: var(--sp-2); }
.how-it-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-top: var(--sp-4); }
@media (max-width: 780px) { .how-it-works { grid-template-columns: 1fr; } }
.how-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-3); }
.how-step .step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--radius-full); background: var(--red-600); color: #fff; font-weight: 800; margin-bottom: var(--sp-1); }
.faq-list { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--sp-3); }
.faq-item summary { font-weight: 700; color: var(--navy-800); cursor: pointer; }
.faq-item p { margin-top: var(--sp-1); font-size: var(--text-sm); }

/* ---------- Booking calendar ---------- */
.booking-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-5); align-items: start; }
@media (max-width: 940px) { .booking-layout { grid-template-columns: 1fr; } }

.calendar-card, .slots-card, .booking-form-card, .confirm-panel, .estimate-panel, .payment-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--sp-4);
}

.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-3); }
.calendar-head h2 { font-size: var(--text-lg); margin: 0; }
.cal-nav-btn { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--radius-sm); width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.cal-nav-btn svg { width: 18px; height: 18px; }
.cal-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.cal-dow-row, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.cal-dow-row { margin-bottom: 0.4rem; }
.cal-dow { text-align: center; font-size: 0.72rem; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cal-day.is-empty { border: none; background: transparent; }
.cal-day.is-unavailable { color: #b7bfcd; background: var(--cream); border-color: var(--border); text-decoration: line-through; cursor: not-allowed; }
.cal-day.is-available { cursor: pointer; background: var(--white); border-color: var(--navy-700); }
.cal-day.is-available:hover { background: var(--cream-dark); transform: translateY(-1px); }
.cal-day.is-today::after { content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--red-600); }
.cal-day.is-selected { background: var(--red-600); border-color: var(--red-600); color: #fff; }
.cal-day[disabled] { pointer-events: none; }

.cal-legend { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-3); font-size: 0.82rem; color: var(--ink-soft); }
.cal-legend span { display: inline-flex; align-items: center; gap: 0.35rem; }
.cal-legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.cal-legend .lg-avail { background: var(--white); border: 1.5px solid var(--navy-700); }
.cal-legend .lg-unavail { background: var(--cream); border: 1.5px solid var(--border); }
.cal-legend .lg-selected { background: var(--red-600); }

.slots-card { margin-top: var(--sp-3); }
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); margin-top: var(--sp-2); }
@media (max-width: 480px) { .slot-grid { grid-template-columns: 1fr; } }
.slot-btn {
  border: 1.5px solid var(--border);
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--navy-800);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.slot-btn small { font-weight: 600; color: var(--ink-soft); font-size: 0.78rem; }
.slot-btn:hover { border-color: var(--navy-700); }
.slot-btn.is-selected { background: var(--red-600); border-color: var(--red-600); color: #fff; }
.slot-btn.is-selected small { color: #ffe3dc; }

.job-scope-toggle { display: flex; gap: var(--sp-2); margin-top: var(--sp-2); flex-wrap: wrap; }
.job-scope-toggle label {
  flex: 1 1 200px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-2);
  cursor: pointer;
  background: var(--cream);
}
.job-scope-toggle input { margin-right: 0.5rem; }
.job-scope-toggle label:has(input:checked) { border-color: var(--red-600); background: #fdf1ee; color: var(--red-600); }

.selected-slot-banner {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-3);
  font-weight: 700;
  color: var(--navy-800);
}
.selected-slot-banner svg { width: 20px; height: 20px; color: var(--red-600); flex-shrink: 0; }

/* Confirmation */
.confirm-panel { text-align: center; max-width: 640px; margin-inline: auto; }
.confirm-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto var(--sp-3);
  border-radius: 50%;
  background: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-icon svg { width: 42px; height: 42px; }
.confirm-icon path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw-check 0.5s ease 0.15s forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.confirm-ref {
  display: inline-block;
  margin: var(--sp-2) 0 var(--sp-3);
  background: var(--cream-dark);
  border: 1px dashed var(--navy-700);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  font-size: var(--text-lg);
}
.confirm-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); text-align: left; margin: var(--sp-3) 0; }
@media (max-width: 520px) { .confirm-detail-grid { grid-template-columns: 1fr; } }
.confirm-detail-grid div { background: var(--cream); border-radius: var(--radius-sm); padding: var(--sp-2); }
.confirm-detail-grid dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: 700; }
.confirm-detail-grid dd { margin: 0; font-weight: 800; color: var(--navy-800); }
.confirm-steps { text-align: left; margin-top: var(--sp-4); }
.confirm-steps ol { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: var(--sp-2); }
.confirm-steps li { counter-increment: step; display: flex; gap: var(--sp-2); }
.confirm-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Estimate builder ---------- */
.estimate-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-5); align-items: start; }
@media (max-width: 980px) { .estimate-layout { grid-template-columns: 1fr; } }

.task-category { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: var(--sp-2); overflow: hidden; background: var(--white); }
.task-category summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: var(--navy-800);
  background: var(--cream);
}
.task-category summary::-webkit-details-marker { display: none; }
.task-category summary .chev { width: 18px; height: 18px; transition: transform 0.2s ease; flex-shrink: 0; }
.task-category[open] summary .chev { transform: rotate(180deg); }
.task-category-body { padding: var(--sp-2) var(--sp-3) var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-2); }

.task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
}
.task-row-name { font-weight: 700; color: var(--navy-800); font-size: 0.95rem; }
.task-row-hrs { font-size: 0.82rem; color: var(--ink-soft); }
.task-add-btn {
  flex-shrink: 0;
  background: var(--red-600);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.task-add-btn:hover { background: var(--red-700); }

.honeydo-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); margin: var(--sp-2) 0; }
.honeydo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
}
.honeydo-item .hd-name { font-weight: 700; color: var(--navy-800); font-size: 0.92rem; }
.honeydo-item .hd-hrs { font-size: 0.8rem; color: var(--ink-soft); }
.honeydo-remove {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--red-600);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.honeydo-remove:hover { background: var(--red-600); color: #fff; border-color: var(--red-600); }
.honeydo-empty { text-align: center; color: var(--ink-soft); font-size: 0.9rem; padding: var(--sp-3) 0; }

.estimate-summary { position: sticky; top: calc(72px + var(--sp-2)); }
.estimate-total-hrs { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: var(--sp-1); }
.estimate-price-range { font-size: var(--text-3xl); font-weight: 800; color: var(--red-600); line-height: 1.1; }
.estimate-price-range span { font-size: var(--text-base); color: var(--ink-soft); font-weight: 600; }
.estimate-rate-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.25rem; }

.breakdown-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: var(--sp-3); }
.breakdown-table th { text-align: left; background: var(--navy-800); color: #fff; padding: 0.55rem 0.7rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.breakdown-table th:first-child { border-top-left-radius: var(--radius-sm); }
.breakdown-table th:last-child { border-top-right-radius: var(--radius-sm); text-align: right; }
.breakdown-table td { padding: 0.55rem 0.7rem; border-bottom: 1px solid var(--border); }
.breakdown-table td:last-child { text-align: right; font-weight: 700; }
.breakdown-table tr:nth-child(even) td { background: var(--cream); }
.breakdown-table tfoot td { font-weight: 800; color: var(--navy-800); border-top: 2px solid var(--navy-800); border-bottom: none; }

.estimate-disclaimer { font-size: 0.8rem; color: var(--ink-soft); margin-top: var(--sp-3); padding-top: var(--sp-2); border-top: 1px dashed var(--border); }
.estimate-cta-row { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-4); }

/* ---------- Deposit / invoice ---------- */
.invoice-summary-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--sp-3); margin: var(--sp-3) 0; }
.invoice-line { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 0.35rem 0; }
.invoice-line.total { border-top: 1px solid var(--border); margin-top: 0.35rem; padding-top: 0.6rem; font-weight: 800; color: var(--navy-800); }

/* ---------- Payment modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 33, 58, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
  z-index: 500;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 460px;
  width: 100%;
  padding: var(--sp-4);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal h2 { font-size: var(--text-lg); margin-bottom: var(--sp-1); }
.secure-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: var(--sp-3); }
.secure-badge svg { width: 16px; height: 16px; color: var(--navy-700); flex-shrink: 0; }

.card-form .form-row { margin-bottom: var(--sp-2); }
.card-input-wrap { position: relative; }
.card-input-wrap svg { position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%); width: 24px; height: 16px; }
.card-form .field-error { color: var(--red-700); font-size: 0.78rem; margin-top: 0.3rem; display: none; }
.card-form .form-row.has-error input { border-color: var(--red-700); }
.card-form .form-row.has-error .field-error { display: block; }

.pay-amount-display { text-align: center; margin-bottom: var(--sp-3); }
.pay-amount-display .amt { font-size: var(--text-3xl); font-weight: 800; color: var(--navy-800); }
.pay-amount-display .lbl { font-size: 0.85rem; color: var(--ink-soft); }

.pay-processing, .pay-success { text-align: center; padding: var(--sp-4) 0; }
.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--border);
  border-top-color: var(--red-600);
  margin: 0 auto var(--sp-3);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pay-success .confirm-icon { width: 64px; height: 64px; }
.pay-success .confirm-icon svg { width: 34px; height: 34px; }

@media (prefers-reduced-motion: reduce) {
  .spinner { animation-duration: 1.6s; }
}

/* ---------- Portal login ---------- */
.portal-login-wrap { display: flex; justify-content: center; padding-block: var(--sp-4); }
.login-card { max-width: 420px; width: 100%; }
.login-card .icon-badge { margin-inline: auto; }
.login-divider { display: flex; align-items: center; gap: var(--sp-2); margin: var(--sp-3) 0; font-size: 0.8rem; color: var(--ink-soft); }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ---------- Portal dashboard ---------- */
.portal-topbar { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.portal-welcome h2 { font-size: var(--text-2xl); }
.portal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (max-width: 900px) { .portal-grid { grid-template-columns: 1fr; } }
.portal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: var(--sp-4); }
.portal-card.span-2 { grid-column: 1 / -1; }
.portal-card h2 { font-size: var(--text-lg); margin-bottom: var(--sp-2); }

.appt-row { display: flex; gap: var(--sp-2); align-items: flex-start; padding: var(--sp-2) 0; border-bottom: 1px solid var(--border); }
.appt-row:last-child { border-bottom: none; }
.appt-date-badge { flex-shrink: 0; width: 56px; text-align: center; background: var(--cream); border-radius: var(--radius-sm); padding: 0.4rem; }
.appt-date-badge .m { display: block; font-size: 0.65rem; text-transform: uppercase; font-weight: 800; color: var(--red-600); }
.appt-date-badge .d { display: block; font-size: 1.2rem; font-weight: 800; color: var(--navy-800); }
.appt-info h3 { font-size: 0.98rem; margin-bottom: 0.15rem; }
.appt-info p { font-size: 0.85rem; margin: 0; }

.history-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.history-table th { text-align: left; padding: 0.5rem 0.6rem; background: var(--navy-800); color: #fff; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.history-table th:first-child { border-top-left-radius: var(--radius-sm); }
.history-table th:last-child { border-top-right-radius: var(--radius-sm); }
.history-table td { padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--border); }
.history-table tr:nth-child(even) td { background: var(--cream); }

.status-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: var(--radius-full); }
.status-badge.is-complete { background: #e4f4e8; color: #1f7a3d; }
.status-badge.is-scheduled { background: #fdf1ee; color: var(--red-700); }

.invoice-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--sp-3); margin-bottom: var(--sp-2); }
.invoice-card:last-child { margin-bottom: 0; }
.invoice-card-head { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.invoice-card-head h3 { font-size: 1rem; margin: 0; }
.badge-paid, .badge-due { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: var(--radius-full); }
.badge-paid { background: #e4f4e8; color: #1f7a3d; }
.badge-due { background: #fdf1ee; color: var(--red-700); }
.invoice-total-row { display: flex; justify-content: space-between; font-weight: 800; color: var(--navy-800); padding-top: 0.4rem; border-top: 1px solid var(--border); margin-bottom: var(--sp-2); }

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
}
.checklist-item-btn { display: flex; align-items: center; gap: var(--sp-2); background: none; border: none; text-align: left; flex: 1; font: inherit; color: inherit; }
.checklist-check { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--navy-700); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.checklist-check svg { width: 14px; height: 14px; opacity: 0; transition: opacity 0.15s ease; }
.checklist-item.is-done .checklist-check { background: var(--red-600); border-color: var(--red-600); }
.checklist-item.is-done .checklist-check svg { opacity: 1; }
.checklist-item.is-done .checklist-label { text-decoration: line-through; color: var(--ink-soft); }
.checklist-label { font-weight: 700; font-size: 0.92rem; color: var(--navy-800); }
.status-pill { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.55rem; border-radius: var(--radius-full); flex-shrink: 0; }
.status-pill.is-done { background: #e4f4e8; color: #1f7a3d; }
.status-pill.is-pending { background: #fdf1ee; color: var(--red-700); }

.account-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); font-size: 0.9rem; }
@media (max-width: 480px) { .account-detail-grid { grid-template-columns: 1fr; } }
.account-detail-grid dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); font-weight: 700; }
.account-detail-grid dd { margin: 0 0 var(--sp-2); font-weight: 700; color: var(--navy-800); }

.logout-link { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); text-decoration: underline; background: none; border: none; }
