/* ═══════════════════════════════════════════════════════════════
   Nadia Moynihan, Esq. — Main Stylesheet
   Vanilla CSS conversion from Next.js + Tailwind v4
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables (Brand Tokens) ─────────────────────────────── */
:root {
  --color-brand-black: #1A1A1A;
  --color-brand-gold: #C9A44A;
  --color-brand-gold-light: #E5C77F;
  --color-brand-gold-dark: #B08E3A;
  --color-brand-white: #FFFFFF;
  --color-brand-ivory: #FAF8F5;
  --color-brand-gold-bg: #F5EDD0;
  --color-brand-accent: #C9A44A;
  --color-brand-gray-50: #F9FAFB;
  --color-brand-gray-100: #F3F4F6;
  --color-brand-gray-200: #E5E7EB;
  --color-brand-gray-300: #D1D5DB;
  --color-brand-gray-500: #6B7280;
  --color-brand-gray-600: #4B5563;
  --color-brand-gray-700: #374151;
  --color-brand-gray-900: #111827;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --max-w: 80rem; /* 1280px */
}

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

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

body {
  background: var(--color-brand-white);
  color: var(--color-brand-black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font: inherit;
}

address {
  font-style: normal;
}

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-brand-black);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.gold-line {
  height: 4px;
  width: 4rem;
  background: var(--color-brand-gold);
  border: none;
}

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Focus ─────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-brand-gold);
  outline-offset: 2px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

/* ── Selection ─────────────────────────────────────────────────── */
::selection {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-white);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--color-brand-gold);
  color: var(--color-brand-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--color-brand-gold);
  transition: all 200ms var(--ease-out);
  cursor: pointer;
}
.btn-primary:hover {
  background-color: var(--color-brand-gold-dark);
  border-color: var(--color-brand-gold-dark);
  box-shadow: 0 8px 24px -8px rgba(201, 164, 74, 0.5);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: var(--color-brand-gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--color-brand-gold);
  transition: all 200ms var(--ease-out);
  cursor: pointer;
}
.btn-outline:hover {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-white);
}
.btn-outline:active {
  transform: scale(0.97);
}

.btn-gold-nav {
  background-color: var(--color-brand-gold);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-black);
  transition: background-color 200ms ease;
}
.btn-gold-nav:hover {
  background-color: var(--color-brand-gold-dark);
}

/* ── Section Utilities ─────────────────────────────────────────── */
.section-padding {
  padding: 4.5rem 1.5rem;
}

.section-dark {
  background-color: var(--color-brand-black);
  color: var(--color-brand-white);
}
.section-dark .section-heading {
  color: var(--color-brand-white);
}
.section-dark .eyebrow {
  color: var(--color-brand-gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-brand-black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a,
.desktop-nav > .dropdown-trigger {
  display: flex;
  align-items: center;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  transition: color 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav > .dropdown-trigger:hover {
  color: var(--color-brand-gold);
}

.dropdown-trigger {
  gap: 0.25rem;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 2.5rem;
  transition: color 200ms ease;
}
.dropdown-trigger:hover { color: var(--color-brand-gold); }

.dropdown-chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 200ms ease;
}
.dropdown-trigger[aria-expanded="true"] .dropdown-chevron {
  transform: rotate(180deg);
}

/* Desktop right section */
.header-right {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brand-gold);
  transition: color 200ms ease;
}
.header-phone:hover {
  color: var(--color-brand-gold-light);
}
.header-phone svg {
  width: 1rem;
  height: 1rem;
}

/* Hamburger */
.hamburger {
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ── Practice Areas Mega Menu ──────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.mega-menu {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  top: 48px;
  max-width: 56rem;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: var(--color-brand-black);
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.5);
  max-height: 80vh;
  overflow-y: auto;
  z-index: 60;
}
.mega-menu.is-open { display: block; }

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.mega-menu-group h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-brand-gold);
  margin-bottom: 0.5rem;
  transition: color 200ms ease;
}
.mega-menu-group h4 a:hover { color: var(--color-brand-gold-light); }

.mega-menu-group ul { padding: 0; }

.mega-menu-group li a {
  display: block;
  padding: 0.125rem 0;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  transition: color 200ms ease;
}
.mega-menu-group li a:hover { color: var(--color-brand-gold); }

/* Areas dropdown */
.areas-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 14rem;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: var(--color-brand-black);
  padding: 0.5rem 0;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.5);
  z-index: 60;
}
.areas-dropdown.is-open { display: block; }

.areas-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: white;
  transition: background-color 200ms ease, color 200ms ease;
}
.areas-dropdown a:hover {
  background-color: rgba(255,255,255,0.05);
  color: var(--color-brand-gold);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════════════════════════ */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  z-index: 40;
  flex-direction: column;
  background-color: var(--color-brand-black);
}
.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

.mobile-drawer-scroll > li > a,
.mobile-drawer-scroll > li > button {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  width: 100%;
  text-align: left;
  transition: color 200ms ease;
}
.mobile-drawer-scroll > li > a:hover,
.mobile-drawer-scroll > li > button:hover {
  color: var(--color-brand-gold);
}

.mobile-drawer-scroll button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  border-left: 1px solid rgba(201,164,74,0.3);
  padding-left: 1rem;
}
.mobile-submenu.is-open { display: block; }

.mobile-submenu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  transition: color 200ms ease;
}
.mobile-submenu a:hover { color: var(--color-brand-gold); }

.mobile-drawer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
}
.mobile-drawer-bottom .btn-gold-nav {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.8), rgba(0,0,0,0.65), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 88vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1rem;
}

.hero-text { max-width: 48rem; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: white;
}
.hero h1 span {
  display: block;
  color: var(--color-brand-gold-light);
}

.hero-divider {
  margin-top: 2rem;
  height: 4px;
  width: 5rem;
  background: var(--color-brand-gold);
  border: none;
}

.hero-subtitle {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.hero-trust-bar {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  padding: 0.875rem 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem 1rem;
}
.hero-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(201,164,74,0.15);
  color: var(--color-brand-gold);
  flex-shrink: 0;
}
.hero-trust-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.hero-trust-text {
  display: flex;
  flex-direction: column;
}
.hero-trust-number {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-trust-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.hero-trust-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.15);
  display: none;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Cycling Badges ────────────────────────────────────────────── */
.cycling-badges {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cycling-badges-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-brand-gold-light);
}

.badge-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(201,164,74,0.4);
  background-color: rgba(255,255,255,0.05);
  color: white;
  transition: all 500ms ease-out;
  backdrop-filter: blur(4px);
}

.badge-pill.is-active {
  border-color: var(--color-brand-gold);
  background-color: rgba(201,164,74,0.95);
  color: var(--color-brand-black);
  box-shadow: 0 0 24px rgba(201,164,74,0.45);
}

.badge-pill:not(.is-active):hover {
  border-color: var(--color-brand-gold);
  background-color: rgba(201,164,74,0.15);
}

/* ═══════════════════════════════════════════════════════════════
   INSTITUTIONAL LOGO BAR
   ═══════════════════════════════════════════════════════════════ */
.logo-bar {
  border-bottom: 1px solid var(--color-brand-gray-200);
  background-color: var(--color-brand-ivory);
}

.logo-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1rem 2.5rem;
  text-align: center;
}

.logo-bar-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-brand-gold);
  margin-bottom: 1.75rem;
}

.logo-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.logo-bar-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bar-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  background: white;
  padding: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--color-brand-gray-200);
  transition: all 300ms var(--ease-out);
}
.logo-bar-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: rgba(201,164,74,0.6);
}

.logo-bar-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.6) brightness(0.95);
  transition: filter 500ms ease;
}
.logo-bar-tile:hover img {
  filter: saturate(1) brightness(1);
}

/* ═══════════════════════════════════════════════════════════════
   CREDENTIALS / STATS
   ═══════════════════════════════════════════════════════════════ */
.credentials {
  border-top: 1px solid var(--color-brand-gray-200);
  border-bottom: 1px solid var(--color-brand-gray-200);
  background: white;
}

.credentials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--color-brand-gray-200);
}

.credential-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: white;
  padding: 2rem;
}

.credential-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand-gold);
  font-variant-numeric: tabular-nums;
}

.credential-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-black);
}

.credential-sub {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-brand-gray-500);
}

/* ═══════════════════════════════════════════════════════════════
   PRACTICE AREAS GRID
   ═══════════════════════════════════════════════════════════════ */
.practice-areas {
  background: var(--color-brand-gray-50);
}

.practice-areas-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-areas-subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brand-gray-700);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-gold);
  transition: all 200ms ease;
  align-self: flex-start;
}
.view-all-link:hover {
  color: var(--color-brand-gold-dark);
}
.view-all-link:hover svg {
  transform: translateX(4px);
}
.view-all-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 200ms ease;
}

.practice-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.practice-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.1);
  transition: all 300ms var(--ease-out);
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.2);
}

.practice-card a {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
.practice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}
.practice-card:hover .practice-card-image img {
  transform: scale(1.05);
}
.practice-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  top: 33%;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
}

.practice-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.practice-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-black);
}

.practice-card-body p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-brand-gray-500);
}

.practice-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-gold);
  transition: gap 200ms ease;
}
.practice-card:hover .practice-card-link { gap: 0.625rem; }
.practice-card-link svg {
  width: 1rem;
  height: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SNIPPET
   ═══════════════════════════════════════════════════════════════ */
.about-snippet {
  background: white;
}

.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 1.5rem;
  width: 4px;
  height: calc(100% - 3rem);
  background: var(--color-brand-gold);
  display: none;
}

.about-image-wrap img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.2);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-brand-black);
}

.about-text p {
  margin-top: 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brand-gray-700);
}

.about-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   BAR ADMISSIONS / CREDENTIAL CARDS
   ═══════════════════════════════════════════════════════════════ */
.bar-admissions {
  background: var(--color-brand-ivory);
}

.bar-header {
  display: grid;
  gap: 2.5rem;
}

.bar-header h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-brand-black);
}

.bar-header-right {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brand-gray-700);
}

.bar-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

.bar-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-brand-gray-200);
  background: white;
  transition: all 300ms var(--ease-out);
}
.bar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,164,74,0.5);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.15);
}

.bar-card-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-brand-gray-50), white);
}

.bar-card-logo::before {
  content: '';
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(201,164,74,0.1);
  filter: blur(2rem);
}

.bar-card-logo img {
  position: relative;
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  transition: transform 500ms var(--ease-out);
}
.bar-card:hover .bar-card-logo img {
  transform: scale(1.05);
}

.bar-card-jurisdiction {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(201,164,74,0.7);
  background: rgba(255,255,255,0.85);
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand-gold-dark);
  backdrop-filter: blur(4px);
}

.bar-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.bar-card-issuer {
  font-size: 0.656rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.4;
  color: var(--color-brand-gold);
}

.bar-card-title {
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-brand-black);
}

.bar-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-brand-gray-200);
}
.bar-card-footer svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-brand-gold);
}
.bar-card-footer span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-gray-500);
}

.bar-footnote {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand-gray-500);
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
  padding: 3rem 1rem 3rem;
  background: var(--color-brand-gray-50);
}

.reviews-header {
  max-width: var(--max-w);
  margin: 0 auto 2rem;
  text-align: center;
}

.reviews-counter {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-brand-black);
}

.reviews-counter-label {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-black);
}

.reviews-tagline {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--color-brand-gray-600);
}

.reviews-badges {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: white;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.review-badge svg { flex-shrink: 0; }
.review-badge span {
  font-size: 0.875rem;
  font-weight: 600;
}
.review-badge-google span { color: var(--color-brand-gold); }
.review-badge-sg span { color: #2563eb; }

.reviews-track {
  overflow: hidden;
  width: 100%;
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.1);
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}
.review-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-brand-gold);
  fill: var(--color-brand-gold);
}

.review-text {
  flex: 1;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-brand-gray-700);
}

.review-text .highlight-name {
  font-weight: 600;
  color: var(--color-brand-gold);
}

.review-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brand-black);
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-brand-gray-500);
  margin-bottom: 0.75rem;
}

.review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.review-source-badge.google {
  background: #fefce8;
  color: var(--color-brand-gold);
}
.review-source-badge.singapore {
  background: #eff6ff;
  color: #2563eb;
}
.review-source-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   AREAS SERVED
   ═══════════════════════════════════════════════════════════════ */
.areas-served {
  background: var(--color-brand-gold-bg);
}

.areas-served-inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.areas-served-subtitle {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  color: var(--color-brand-gray-700);
}

.areas-pills {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.area-pill {
  border-radius: 9999px;
  border: 1px solid var(--color-brand-gold);
  background: white;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-black);
  transition: all 200ms ease;
}
.area-pill:hover {
  background: var(--color-brand-gold);
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  background: white;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-brand-gray-200);
}

.faq-item {
  border-bottom: 1px solid var(--color-brand-gray-200);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question span {
  padding-right: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-black);
}

.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-brand-gold);
  transition: transform 200ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-brand-gray-500);
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA (Dark Section)
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  background: var(--color-brand-black);
  color: white;
}

.final-cta-glow-1,
.final-cta-glow-2 {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(201,164,74,0.1);
  filter: blur(3rem);
  pointer-events: none;
}
.final-cta-glow-1 { right: -8rem; top: -8rem; }
.final-cta-glow-2 { left: -8rem; bottom: -8rem; }

.final-cta-content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-brand-gold-light);
}

.final-cta h2 {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: white;
}

.final-cta-body {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.final-cta-buttons {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  transition: all 200ms ease;
}
.btn-cta-call:hover {
  border-color: var(--color-brand-gold);
  background: var(--color-brand-gold);
  color: var(--color-brand-black);
}
.btn-cta-call svg { width: 1rem; height: 1rem; }

.final-cta-address {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--color-brand-gray-50);
}

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-brand-black);
}

.contact-info > p {
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--color-brand-gray-500);
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-detail svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-brand-gold);
}
.contact-detail-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-black);
}
.contact-detail-value {
  font-size: 0.875rem;
  color: var(--color-brand-gray-500);
}
.contact-detail-value a {
  color: var(--color-brand-gold);
  transition: color 200ms ease;
}
.contact-detail-value a:hover { color: var(--color-brand-gold-dark); }

/* Form card */
.contact-form-card {
  border-radius: 1rem;
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-black);
}
.form-group label .required { color: #ef4444; }

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--color-brand-gray-300);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-brand-black);
  background: white;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-input:focus {
  border-color: var(--color-brand-gold);
  box-shadow: 0 0 0 3px rgba(201,164,74,0.3);
}

textarea.form-input { resize: vertical; }

.sms-consent {
  border-radius: 0.5rem;
  border: 1px solid var(--color-brand-gray-200);
  background: var(--color-brand-gray-50);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.sms-consent label {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-brand-gray-700);
}

.sms-consent input[type="checkbox"] {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-brand-gold);
}

.form-legal {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--color-brand-gray-500);
  margin-bottom: 1rem;
}
.form-legal a {
  font-weight: 500;
  color: var(--color-brand-gold);
  text-underline-offset: 2px;
}
.form-legal a:hover { text-decoration: underline; }

.form-submit {
  width: 100%;
  border-radius: 0.5rem;
  background: var(--color-brand-gold);
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.form-submit:hover { background: var(--color-brand-gold-dark); }
.form-submit:focus-visible {
  outline: 2px solid var(--color-brand-gold);
  outline-offset: 2px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: white;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(201,164,74,0.15);
}
.form-success-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-brand-gold);
}

.form-success h3 {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-black);
}
.form-success p {
  margin-top: 0.5rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--color-brand-gray-500);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: #111111;
  color: white;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: 5rem 1rem;
}

.footer-brand p.footer-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.25;
  color: white;
}

.footer-brand p.footer-desc {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-brand img {
  width: 100px;
  height: auto;
}

.footer-address {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-address a {
  color: var(--color-brand-gold);
  transition: color 200ms ease;
}
.footer-address a:hover { color: var(--color-brand-gold-light); }

.footer-social {
  margin-top: 1.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 200ms ease;
}
.footer-social a:hover { color: var(--color-brand-gold); }
.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-brand-gold);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--color-brand-gold); }

.footer-cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

/* Footer map */
.footer-map {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 1rem;
}
.footer-map-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-map iframe {
  border-radius: 0.5rem;
  border: 0;
  width: 100%;
  height: 250px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* RBR credit */
.foot__credit {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.foot__credit a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}
.foot__credit a:hover { color: rgba(255,255,255,0.85); }
.foot__credit img {
  height: 26px;
  width: auto;
  display: block;
  filter: opacity(0.95) contrast(1.08) saturate(1.05);
  transition: filter 420ms ease, transform 420ms ease;
}
.foot__credit a:hover img {
  filter: opacity(1) contrast(1.1) saturate(1.15) drop-shadow(0 2px 8px rgba(220,170,90,0.45));
  transform: translateY(-1px);
}
.foot__credit strong {
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   POPUP / CONSULTATION MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-backdrop,
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
}
.modal-backdrop.is-open,
.modal.is-open {
  display: flex;
  animation: modalBackdropIn 160ms var(--ease-out);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 30rem;
  overflow: hidden;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 25px 70px -15px rgba(0,0,0,0.3);
  animation: modalCardIn 200ms var(--ease-out);
}

.modal-accent { height: 4px; background: var(--color-brand-gold); }

.modal-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  transition: background-color 200ms ease, color 200ms ease;
}
.modal-close:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.modal-close svg { width: 1.25rem; height: 1.25rem; }

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-brand-black) 0%, #2a2a2a 100%);
  text-align: center;
}
.modal-header img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
}
.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.modal-header p {
  margin-top: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brand-gold);
}

.modal-form {
  padding: 1.5rem 1.5rem 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.modal-form .form-group {
  margin-bottom: 1rem;
}
.modal-form .form-group label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-gray-700);
  margin-bottom: 0.375rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--color-brand-gray-300);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-brand-black);
  background: var(--color-brand-gray-50);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: var(--color-brand-gray-400);
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--color-brand-gold);
  box-shadow: 0 0 0 3px rgba(201,164,74,0.2);
  background: #fff;
}
.modal-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.modal-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.modal-form .form-submit {
  width: 100%;
  border-radius: 0.5rem;
  background: var(--color-brand-gold);
  padding: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-black);
  cursor: pointer;
  transition: background-color 200ms ease, transform 160ms ease-out;
}
.modal-form .form-submit:hover {
  background: #b8933f;
}
.modal-form .form-submit:active {
  transform: scale(0.98);
}

.modal-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  color: var(--color-brand-gray-500);
}
.modal-form .form-footer svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-brand-gold);
  flex-shrink: 0;
}

@keyframes modalBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalCardIn {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY CTAs
   ═══════════════════════════════════════════════════════════════ */

/* Mobile bottom bar */
.sticky-mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  gap: 0.5rem;
  border-top: 1px solid rgba(201,164,74,0.4);
  background: rgba(26,26,26,0.95);
  padding: 0.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}

.sticky-mobile-cta a,
.sticky-mobile-cta button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 0.25rem;
  background: var(--color-brand-gold);
  padding: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-black);
  transition: background-color 200ms ease;
}
.sticky-mobile-cta a:hover,
.sticky-mobile-cta button:hover {
  background: var(--color-brand-gold-dark);
}
.sticky-mobile-cta svg { width: 1rem; height: 1rem; }

/* Desktop right rail */
.sticky-desktop-cta {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 40;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 0.25rem;
}

.sticky-desktop-cta a,
.sticky-desktop-cta button {
  border-radius: 0.25rem 0 0 0.25rem;
  background: var(--color-brand-gold);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-black);
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
  transition: background-color 200ms ease;
}
.sticky-desktop-cta a:hover,
.sticky-desktop-cta button:hover {
  background: var(--color-brand-gold-dark);
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMBS (inner pages)
   ═══════════════════════════════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-brand-gray-500);
  margin-bottom: 1.5rem;
}
.breadcrumbs a {
  color: var(--color-brand-gold);
  transition: color 200ms ease;
}
.breadcrumbs a:hover { color: var(--color-brand-gold-dark); }
.breadcrumbs .separator { color: var(--color-brand-gray-300); }

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 6rem 1rem 4rem;
  background: var(--color-brand-black);
  color: white;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
}

.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-brand-gray-700);
}
.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-black);
}
.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-black);
}
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; }
.prose a {
  color: var(--color-brand-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--color-brand-gold-dark); }
.prose strong { color: var(--color-brand-black); }

/* ═══════════════════════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════════════════════ */
.thank-you-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 4rem 1rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════ */
.not-found-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 4rem 1rem;
  text-align: center;
}
.not-found-wrap h1 {
  font-size: 5rem;
  color: var(--color-brand-gold);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE CLEARANCE
   ═══════════════════════════════════════════════════════════════ */
body { padding-bottom: 64px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .header-inner { padding: 0.5rem 2rem; }
  .section-padding { padding: 6rem 2rem; }

  .hero h1 { font-size: 3rem; }
  .hero-content { padding: 5rem 2rem; }

  .credential-card { padding: 2rem 2.5rem; }

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

  .about-text h2 { font-size: 2.25rem; }
  .about-buttons { flex-direction: row; align-items: center; }

  .bar-header h2 { font-size: 2.25rem; }
  .bar-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-badges { flex-direction: row; }
  .reviews-counter { font-size: 3rem; }

  .final-cta h2 { font-size: 2.25rem; }
  .final-cta-buttons { flex-direction: row; }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .modal-form .form-row { grid-template-columns: 1fr 1fr; }

  .hero-trust-bar { flex-wrap: nowrap; padding: 1rem 1.25rem; gap: 0; justify-content: flex-start; }
  .hero-trust-divider { display: block; }
  .hero-trust-item { padding: 0.25rem 1.25rem; }
  .hero-buttons { flex-direction: row; }
  .cycling-badges { flex-direction: row; align-items: center; gap: 1.75rem; }

  .logo-bar-grid { grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
  .logo-bar-tile {
    width: 4.5rem;
    height: 4.5rem;
  }

  .page-hero h1 { font-size: 2.5rem; }

  .modal-backdrop {
    align-items: center;
    padding: 1rem 2rem;
  }
  .modal-header { padding: 2rem 2rem 1.5rem; }
  .modal-header h2 { font-size: 1.625rem; }
  .modal-form { padding: 1.75rem 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .section-padding { padding: 7rem 2rem; }
  .header-inner { padding: 0.5rem 2rem; }
  .container { padding: 0 2rem; }

  .desktop-nav { display: flex; }
  .header-right { display: flex; }
  .hamburger { display: none; }

  .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }

  .hero { min-height: 92vh; }
  .hero-content {
    min-height: 92vh;
    padding: 5rem 2rem;
  }
  .hero h1 { font-size: 4.25rem; }
  .hero-subtitle { font-size: 1.25rem; }

  .logo-bar-inner { padding: 3rem 2rem; }
  .logo-bar-tile {
    width: 5rem;
    height: 5rem;
  }

  .credentials-grid { grid-template-columns: repeat(4, 1fr); }
  .credential-card { padding: 2.5rem; }
  .credential-number { font-size: 3.75rem; }

  .practice-areas-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .practice-grid { grid-template-columns: repeat(3, 1fr); }

  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
  .about-image-wrap::before { display: block; }
  .about-text { max-width: 36rem; }
  .about-text h2 { font-size: 3rem; }
  .about-text p { font-size: 1.125rem; }

  .bar-header {
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
    gap: 4rem;
  }
  .bar-header h2 { font-size: 3rem; }
  .bar-header-right { font-size: 1.125rem; }
  .bar-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .reviews-section { padding: 4rem 2rem; }

  .faq-question span { font-size: 1.125rem; }
  .faq-answer { font-size: 1rem; }

  .final-cta { padding: 7rem 2rem; }
  .final-cta h2 { font-size: 3rem; }
  .final-cta-body { font-size: 1.125rem; }

  .contact-grid { gap: 4rem; }

  .footer-grid {
    grid-template-columns: 4fr 2fr 3fr 3fr;
    gap: 2.5rem;
    padding: 5rem 2rem;
  }

  .footer-map { padding: 2.5rem 2rem; }

  .footer-bottom-inner { padding: 1.5rem 2rem; }
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .sticky-mobile-cta { display: none; }
  .sticky-desktop-cta { display: flex; }
  body { padding-bottom: 0; }

  .page-hero { padding: 7rem 2rem 5rem; }
  .page-hero h1 { font-size: 3rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .contact-form-card { padding: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .foot__credit img,
  .foot__credit a {
    transition: none;
  }
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
