/* ==========================================================================
   ADVOCATE HARSH DEV PANDEY — DESIGN SYSTEM
   Palette: Warm Parchment Dark — Deep Sepia + Antique Brass + Ivory
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* ---- Backgrounds (warm-tinted, not blue-black) ---- */
  --bg-base:     #100f0c;   /* very dark warm sepia */
  --bg-raised:   #191714;   /* card background      */
  --bg-elevated: #221f1b;   /* hover / input        */
  --bg-input:    #141210;   /* form fields          */

  /* ---- Borders ---- */
  --border-dim:    rgba(255,245,220,0.06);
  --border-subtle: rgba(255,245,220,0.1);
  --border-accent: rgba(196,160,100,0.28);

  /* ---- Brass accent (warm, refined) ---- */
  --brass:        #c4a064;
  --brass-dim:    #9a7b47;
  --brass-bg:     rgba(196,160,100,0.09);
  --brass-bg-md:  rgba(196,160,100,0.16);

  /* ---- Typography ---- */
  --text-primary:   #f0e8d8;   /* warm ivory — not pure white */
  --text-secondary: #9e9080;   /* warm muted                 */
  --text-tertiary:  #5e564b;   /* very dim                   */
  --text-accent:    #c4a064;

  /* ---- WhatsApp — muted teal ---- */
  --wa:      #1a7a5e;
  --wa-dark: #145f49;

  /* ---- Semantic ---- */
  --success: #4a9e6b;

  /* ---- Fonts ---- */
  --serif: 'EB Garamond', 'Georgia', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Spacing ---- */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  24px;
  --s6:  32px;
  --s7:  48px;
  --s8:  64px;
  --s9:  80px;
  --s10: 96px;

  /* ---- Radii ---- */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;

  /* ---- Transitions ---- */
  --t: 0.18s ease;
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
textarea, input, select, button { font-family: var(--sans); }
textarea { resize: vertical; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}
h4, h5, h6 { font-weight: 600; color: var(--text-primary); }
p { color: var(--text-secondary); line-height: 1.75; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--s5);
}

.section-pad { padding: var(--s10) 0; }
.surface { background: var(--bg-raised); }
.t-center { text-align: center; }
.t-accent { color: var(--text-accent); }

/* Section labelling */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: var(--s3);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--s4);
}
.section-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.rule-center {
  width: 28px; height: 1px;
  background: var(--brass); opacity: 0.5;
  margin: 0 auto var(--s4) auto;
}
.rule-left {
  width: 28px; height: 1px;
  background: var(--brass); opacity: 0.5;
  margin: 0 0 var(--s4) 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  transition: border-color var(--t);
}
.card:hover { border-color: var(--border-accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 11px 22px;
  min-height: 44px;           /* mobile touch target */
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; min-height: 36px; font-size: 0.82rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brass); color: #0e0b07; font-weight: 600; }
.btn-primary:hover { background: #d4b070; }

.btn-ghost  {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { border-color: var(--border-accent); color: var(--text-accent); }

.btn-outline {
  background: transparent;
  color: var(--brass);
  border: 1px solid var(--border-accent);
}
.btn-outline:hover { background: var(--brass-bg); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--s2);
}

.form-control {
  width: 100%;
  padding: 11px 13px;
  min-height: 44px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--brass);
}
.form-control::placeholder { color: var(--text-tertiary); }
select.form-control { cursor: pointer; }
select.form-control option { background: #1e1b16; color: var(--text-primary); }
textarea.form-control { min-height: 100px; }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: #0a0905;
  border-bottom: 1px solid var(--border-dim);
  padding: 7px 0;
  font-size: 0.77rem;
  color: var(--text-tertiary);
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
.strip-left, .strip-right {
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.strip-item.accent { color: var(--brass); font-weight: 500; }
.strip-item a:hover { color: var(--brass); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(16,15,12,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: var(--s4);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.nav-brand-icon {
  width: 32px; height: 32px;
  background: var(--brass-bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  line-height: 1.1;
}
.nav-brand-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-accent);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-tertiary);
  padding: 0 13px;
  height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-primary); border-bottom-color: var(--brass); }

.nav-bookings-btn {
  background: transparent; border: none;
  display: flex; align-items: center; gap: var(--s2);
  color: var(--text-tertiary);
  font-size: 0.83rem;
  cursor: pointer;
  padding: 0 13px;
  height: 58px;
  white-space: nowrap;
  transition: color var(--t);
}
.nav-bookings-btn:hover { color: var(--text-accent); }

.count-dot {
  background: var(--brass); color: #0e0b07;
  font-size: 0.62rem; font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  cursor: pointer;
  padding: 7px;
  min-height: 36px; min-width: 36px;
  align-items: center; justify-content: center;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-raised);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: var(--s4) 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  height: auto;
  padding: var(--s3) var(--s5);
  border-bottom: none;
  border-top: 1px solid var(--border-dim);
  font-size: 0.9rem;
}
.mobile-menu .nav-link:first-child { border-top: none; }

/* ============================================================
   HERO — FULL WIDTH WITH IMAGE BACKGROUND
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dim);
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/hero_bg.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.22) saturate(0.7);
  z-index: 0;
}
/* Subtle gradient to focus eyes on left */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(16,15,12,0.85) 0%,
    rgba(16,15,12,0.5) 55%,
    rgba(16,15,12,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: var(--s10) 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.hero-tag::before {
  content: '';
  display: block; width: 18px; height: 1px;
  background: var(--brass);
}

.hero-name-h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s3);
}

.hero-title-prefix {
  font-family: 'Cinzel', var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.1;
}

.hero-title-name {
  font-family: 'Cinzel', 'Playfair Display', var(--serif);
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.08;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: var(--brass);
  line-height: 1.35;
  margin-bottom: var(--s5);
}
.hero-subtitle em {
  font-style: italic;
  color: var(--text-primary);
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--s6);
}

/* Advocate info strip */
.advocate-info-strip {
  padding: var(--s3) 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: var(--s6);
}
.adv-meta { font-size: 0.8rem; color: var(--text-tertiary); line-height: 1.6; }
.adv-meta span { color: var(--brass); }

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--s5);
  margin-bottom: var(--s7);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brass);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  display: block;
}
.stat-sep {
  width: 1px; height: 36px;
  background: var(--border-subtle);
}

/* CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: rgba(255,245,220,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  text-decoration: none;
}
.phone-pill:hover { border-color: var(--border-accent); }
.phone-pill-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  display: block;
}
.phone-pill-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  overflow: hidden;
}

.about-img-col {
  position: relative;
  min-height: 440px;
}
.about-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.55);
}
.about-img-caption {
  position: absolute;
  bottom: var(--s5); left: var(--s5); right: var(--s5);
  background: rgba(10,9,7,0.88);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.about-img-caption i { color: var(--brass); flex-shrink: 0; }

.about-text-col {
  padding: var(--s8) var(--s7);
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--s6);
}

/* Credentials table */
.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--s6);
}
.cred {
  background: var(--bg-elevated);
  padding: 12px 14px;
}
.cred-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}
.cred-val {
  font-size: 0.87rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================================
   COURT BANNER
   ============================================================ */
.court-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.court-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(45%) brightness(0.38);
}
.court-banner-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--s5);
  background: linear-gradient(to top, rgba(16,15,12,0.6) 0%, transparent 60%);
}
.court-banner-body h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: var(--s2); }
.court-banner-body p  { font-size: 0.88rem; color: var(--text-secondary); max-width: 480px; }

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.filter-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: var(--s7);
  justify-content: center;
}
.filter-chip {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill);
  color: var(--text-tertiary);
  font-size: 0.8rem; font-weight: 500;
  padding: 7px 16px;
  min-height: 36px;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--sans);
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--border-accent);
  color: var(--text-accent);
  background: var(--brass-bg);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  overflow: hidden;
}
.practice-tile {
  background: var(--bg-raised);
  padding: var(--s7) var(--s5);
  display: flex;
  flex-direction: column;
  transition: background var(--t);
}
.practice-tile:hover { background: var(--bg-elevated); }

.tile-head {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s4);
}
.tile-icon {
  width: 34px; height: 34px;
  background: var(--brass-bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
}
.tile-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-tertiary);
}
.tile-h  { font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.tile-p  { font-size: 0.83rem; color: var(--text-secondary); margin-bottom: var(--s4); flex-grow: 1; line-height: 1.65; }
.tile-feats { margin-bottom: var(--s4); display: flex; flex-direction: column; gap: 4px; }
.tile-feats li {
  font-size: 0.78rem; color: var(--text-tertiary);
  display: flex; align-items: center; gap: 6px;
}
.tile-feats i { color: var(--brass); width: 12px; flex-shrink: 0; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 10px; bottom: 10px; left: 7px;
  width: 1px;
  background: var(--border-subtle);
}

.tl-item {
  position: relative;
  padding-left: 34px;
  padding-bottom: var(--s5);
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute; left: 3px; top: 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--text-tertiary);
}
.tl-dot.current { border-color: var(--brass); background: var(--brass); }

.tl-card { padding: var(--s5) var(--s5); }

.tl-meta {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 6px; margin-bottom: 4px;
}
.tl-date {
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-accent); letter-spacing: 0.02em;
}
.tl-badge {
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 2px 8px; border-radius: var(--r-pill);
  background: var(--brass-bg); color: var(--brass);
  border: 1px solid var(--border-accent);
}
.tl-role { font-size: 1rem; margin-bottom: 2px; }
.tl-org  { font-size: 0.82rem; color: var(--text-tertiary); margin-bottom: var(--s3); }
.tl-bullets { }
.tl-bullets li {
  font-size: 0.84rem; color: var(--text-secondary);
  padding-left: 14px; position: relative;
  margin-bottom: 5px; line-height: 1.65;
}
.tl-bullets li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--text-tertiary);
}

/* ============================================================
   BOOKING ENGINE
   ============================================================ */
.booking-wrap { padding: var(--s7) var(--s6); }

@media (max-width: 600px) {
  .booking-wrap { padding: var(--s5) var(--s4); }
}

/* Stepper */
.stepper {
  display: flex; align-items: center;
  max-width: 480px; margin: 0 auto var(--s7) auto;
}
.step-node {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  opacity: 0.35; transition: opacity var(--t);
}
.step-node.active { opacity: 1; }
.step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--text-tertiary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.77rem; font-weight: 600;
  color: var(--text-tertiary);
}
.step-node.active .step-circle {
  border-color: var(--brass); background: var(--brass);
  color: #0e0b07;
}
.step-lbl {
  font-size: 0.68rem; color: var(--text-tertiary);
  white-space: nowrap;
}
.step-bar {
  flex: 1; height: 1px;
  background: var(--border-subtle);
  margin: 0 8px 18px;
}

/* Steps */
.booking-step { display: none; }
.booking-step.active { display: block; }
.step-h {
  font-size: 1.05rem;
  margin-bottom: var(--s5);
  display: flex; align-items: center; gap: 8px;
  color: var(--text-primary);
}

/* Mode cards */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.mode-option { position: relative; cursor: pointer; }
.mode-option input { position: absolute; opacity: 0; pointer-events: none; }
.mode-card {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--s4);
  text-align: center;
  transition: all var(--t);
  height: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.mode-card i    { color: var(--brass); margin-bottom: 8px; }
.mode-card h4   { font-size: 0.88rem; margin-bottom: 4px; }
.mode-card p    { font-size: 0.74rem; color: var(--text-tertiary); margin-bottom: 8px; flex-grow: 1; }
.mode-chip {
  display: inline-block; font-size: 0.62rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--brass-bg); color: var(--brass);
  padding: 2px 8px; border-radius: var(--r-pill);
}
.mode-option input:checked + .mode-card {
  border-color: var(--brass); background: var(--brass-bg-md);
}

/* Date & slot */
.dt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  margin-bottom: var(--s5);
}
.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.slot-btn {
  background: var(--bg-input); border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm); color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 10px; min-height: 40px;
  cursor: pointer; transition: all var(--t);
}
.slot-btn:hover { border-color: var(--border-accent); color: var(--text-primary); }
.slot-btn.active { background: var(--brass); color: #0e0b07; border-color: var(--brass); font-weight: 600; }
.avail-note { font-size: 0.76rem; color: var(--text-tertiary); margin-top: 8px; }

/* Form rows */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-group { margin-bottom: var(--s4); }

/* Summary box */
.summary-box {
  background: var(--bg-input);
  border: 1px dashed var(--border-accent);
  border-radius: var(--r-md);
  padding: var(--s4);
  margin: var(--s5) 0;
}
.summary-box-title {
  font-size: 0.8rem; color: var(--text-accent);
  margin-bottom: 8px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.summary-box p {
  font-size: 0.82rem; margin-bottom: 4px;
  color: var(--text-tertiary);
}
.summary-box strong { color: var(--text-primary); }

.step-nav {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: var(--s5);
  flex-wrap: wrap; gap: var(--s3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 700px; margin: 0 auto;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 1px;
}
.faq-item { background: var(--bg-raised); overflow: hidden; }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  text-align: left; cursor: pointer; min-height: 54px;
  font-family: var(--serif); font-size: 0.97rem;
  color: var(--text-primary); line-height: 1.4;
  transition: background var(--t);
}
.faq-q:hover { background: var(--bg-elevated); }
.faq-arrow { color: var(--brass); flex-shrink: 0; transition: transform var(--t); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.28s ease, padding 0.18s ease;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 20px 16px; }
.faq-a p { font-size: 0.87rem; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0905;
  border-top: 1px solid var(--border-dim);
  padding: var(--s8) 0 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: var(--s7);
  margin-bottom: var(--s8);
}
.footer-about {
  font-size: 0.84rem; color: var(--text-tertiary);
  line-height: 1.8; margin: var(--s4) 0;
}
.footer-enroll {
  font-size: 0.78rem; color: var(--text-accent);
  display: flex; align-items: center; gap: 5px;
}
.footer-col-title {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: var(--s4);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.86rem; color: var(--text-secondary); transition: color var(--t); }
.footer-links a:hover { color: var(--text-accent); }

.f-contacts { display: flex; flex-direction: column; gap: 12px; }
.f-contact  { display: flex; align-items: center; gap: 10px; }
.f-contact > i { color: var(--brass); flex-shrink: 0; width: 16px; }
.f-detail   { display: flex; flex-direction: column; }
.f-lbl { font-size: 0.65rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.07em; }
.f-val { font-size: 0.86rem; color: var(--text-secondary); transition: color var(--t); }
.f-val:hover { color: var(--text-accent); }

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: var(--s5) 0;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: var(--s4);
  font-size: 0.74rem; color: var(--text-tertiary); line-height: 1.7;
}
.footer-disclaimer { max-width: 620px; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: var(--s4);
}
.modal-backdrop.open { display: flex; }

.modal-box {
  position: relative; width: 100%; max-width: 460px;
  background: var(--bg-raised);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  padding: var(--s6);
  max-height: 90vh; overflow-y: auto;
}
.modal-box.wide { max-width: 640px; }

.modal-x {
  position: absolute; top: 13px; right: 16px;
  background: transparent; border: none;
  color: var(--text-tertiary); font-size: 1.3rem;
  cursor: pointer; line-height: 1; padding: 4px;
  min-height: 32px; min-width: 32px;
  display: flex; align-items: center; justify-content: center;
}
.modal-x:hover { color: var(--text-primary); }

.modal-title { font-size: 1.4rem; margin-bottom: 4px; }
.modal-sub { font-size: 0.84rem; color: var(--text-tertiary); margin-bottom: var(--s5); }

.receipt-table {
  background: var(--bg-input);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  overflow: hidden; margin: var(--s4) 0;
}
.r-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 9px 13px;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.84rem; gap: 12px;
}
.r-row:last-child { border-bottom: none; }
.r-lbl { color: var(--text-tertiary); flex-shrink: 0; }
.r-val { color: var(--text-primary); font-weight: 500; text-align: right; }
.r-ref { color: var(--text-accent); font-family: monospace; }

.modal-actions { display: flex; flex-direction: column; gap: 8px; }

/* Booking list items */
.bk-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  padding: var(--s4);
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: var(--s4); flex-wrap: wrap;
  margin-bottom: 8px;
}
.bk-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.bk-item p  { font-size: 0.78rem; color: var(--text-tertiary); line-height: 1.6; }
.bk-actions { display: flex; gap: 6px; flex-shrink: 0; align-items: flex-start; }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */

/* Tablet — ≤ 900px */
@media (max-width: 900px) {
  .section-pad { padding: var(--s8) 0; }

  /* Nav */
  .nav-links, .nav-bookings-btn { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { max-width: 100%; padding: var(--s8) 0; }
  .hero-bg { filter: brightness(0.15) saturate(0.5); }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { min-height: 280px; }
  .about-text-col { padding: var(--s6) var(--s5); }

  /* Practice */
  .practice-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile — ≤ 600px */
@media (max-width: 600px) {
  :root { --s10: 60px; --s9: 48px; --s8: 40px; }

  .container { padding: 0 var(--s4); }
  .section-pad { padding: var(--s8) 0; }

  /* Nav */
  .nav-inner { height: 52px; }
  .nav-brand-sub { display: none; }
  .nav-actions .btn-ghost { display: none; }

  /* Hero */
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats { gap: var(--s4); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; }
  .phone-pill { width: 100%; justify-content: flex-start; }

  /* About */
  .about-text-col { padding: var(--s5) var(--s4); }
  .creds { grid-template-columns: 1fr; }

  /* Court banner */
  .court-banner { height: 200px; }
  .court-banner-body h2 { font-size: 1.3rem; }

  /* Practice areas */
  .practice-grid { grid-template-columns: 1fr; }
  .practice-tile { padding: var(--s5) var(--s4); }

  /* Booking */
  .booking-wrap { padding: var(--s4); }
  .mode-grid { grid-template-columns: 1fr; gap: var(--s3); }
  .mode-card { flex-direction: row; text-align: left; gap: var(--s3); padding: var(--s3); }
  .mode-card i { margin-bottom: 0; flex-shrink: 0; }
  .dt-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .form-row { grid-template-columns: 1fr; }
  .step-nav { flex-direction: column-reverse; gap: var(--s2); }
  .step-nav .btn { width: 100%; }
  .stepper { max-width: 100%; }
  .step-lbl { font-size: 0.6rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .footer-bottom { flex-direction: column; gap: var(--s3); }

  /* Top strip */
  .top-strip { display: none; }

  /* Modals */
  .modal-box { padding: var(--s5); }
}
