/* ============================================================
   MATRIX LEGAL — building.legal
   Premium Building & Construction Law — Victoria, Australia
   Design: Corporate Litigation / Dark Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Core Palette */
  --deep-charcoal: #0d0d1a;
  --charcoal: #1a1a2e;
  --charcoal-mid: #16213e;
  --charcoal-light: #1e2a45;
  --surface: #222436;
  --surface-elevated: #2a2d4a;
  --surface-glass: rgba(34, 36, 54, 0.7);

  /* Text */
  --text-primary: #f0ede8;
  --text-secondary: #b8b4ae;
  --text-muted: #7a7870;
  --text-inverse: #0d0d1a;

  /* Accent — Gold/Amber */
  --gold: #c9a84c;
  --gold-light: #dfc070;
  --gold-dark: #a8892e;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-subtle: rgba(201, 168, 76, 0.08);

  /* Silver/Platinum */
  --silver: #c8c8d4;
  --silver-light: #e4e4ee;
  --silver-dark: #8a8a9a;
  --silver-glow: rgba(200, 200, 212, 0.1);

  /* State colours */
  --success: #4caf7d;
  --warning: #e8963a;
  --error: #d85050;

  /* Borders */
  --border: rgba(200, 200, 212, 0.12);
  --border-gold: rgba(201, 168, 76, 0.3);
  --border-strong: rgba(200, 200, 212, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.2);
  --shadow-glow: 0 0 60px rgba(201, 168, 76, 0.08);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1280px;
  --header-height: 76px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--deep-charcoal);
  color: var(--text-primary);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* Selection */
::selection { background: var(--gold); color: var(--text-inverse); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--text-secondary); }

strong { color: var(--text-primary); font-weight: 600; }
em { color: var(--gold-light); font-style: italic; }

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--compact {
  padding: var(--space-2xl) 0;
}

.section--tight {
  padding: var(--space-xl) 0;
}

/* Page (SPA routing) */
.page {
  display: none;
  min-height: calc(100vh - var(--header-height));
}
.page.active {
  display: block;
  animation: pageFadeIn 0.35s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TEXTURE & BACKGROUND EFFECTS
   ============================================================ */
.bg-texture {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 200, 212, 0.03) 0%, transparent 50%);
}

.bg-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.text-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.text-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
}

.text-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.text-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Section headings */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* Gold rule decoration */
.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-md) 0;
}

.gold-rule--center {
  margin: var(--space-md) auto;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13, 13, 26, 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 20, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(201, 168, 76, 0.1);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.header__logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.header__logo:hover .header__logo-name { color: var(--gold-light); }

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  margin-left: var(--space-md);
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
  background: var(--silver-glow);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Header phone */
.header__phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header__phone:hover { color: var(--gold); }
.header__phone svg { width: 14px; height: 14px; }

/* Header CTA */
.header__cta {
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-left: auto;
}

.hamburger:hover { border-color: var(--gold); }

.hamburger__line {
  width: 20px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 999;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(24px);
  overflow-y: auto;
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-xs);
  animation: mobileNavIn 0.25s ease;
}

.mobile-nav.open { display: flex; }

@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.85rem var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: block;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--text-primary);
  border-color: var(--border);
  background: var(--surface);
}

.mobile-nav__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-sm) 0;
}

.mobile-nav__contact {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Page offset */
main {
  padding-top: var(--header-height);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::before { background: rgba(255,255,255,0.06); }
.btn:active::before { background: rgba(0,0,0,0.1); }

/* Primary — Gold */
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0d0d1a;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}
.btn--primary:hover {
  color: #0d0d1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}
.btn--primary:active { transform: translateY(0); }

/* Secondary — Outlined */
.btn--secondary {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border-strong);
}
.btn--secondary:hover {
  color: var(--text-primary);
  border-color: var(--silver);
  background: var(--silver-glow);
}

/* Ghost — Gold outline */
.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}
.btn--ghost:hover {
  background: var(--gold-subtle);
  color: var(--gold);
  border-color: var(--gold);
}

/* Sizes */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.btn--xl {
  padding: 1.15rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: var(--deep-charcoal);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(22, 33, 62, 0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d1a 0%, #16213e 50%, #0d1428 100%);
}

/* Animated grid lines */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 200, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 200, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  opacity: 0.6;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__left { animation: heroFadeIn 0.7s ease both; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__title .line-through {
  position: relative;
  display: inline-block;
}
.hero__title .line-through::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__disclaimer {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 500px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hero card */
.hero__card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  animation: heroFadeIn 0.7s 0.2s ease both;
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.5;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.hero__pathway {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero__pathway-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.hero__pathway-btn:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateX(4px);
}

.hero__pathway-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
}

.hero__pathway-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.hero__pathway-text span {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background: var(--surface-elevated);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--gold-glow);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card__link { gap: 0.5rem; }

/* ============================================================
   CONTENT SECTIONS (page bodies)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}

.page-hero__content { max-width: 800px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.breadcrumb__item {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb__item:hover { color: var(--gold); }
.breadcrumb__item.active { color: var(--silver); }
.breadcrumb__sep { color: var(--text-muted); font-size: 0.7rem; }

/* Content body */
.content-body {
  padding: var(--space-2xl) 0;
}

.content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.content-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.content-body p { color: var(--text-secondary); line-height: 1.8; }

.content-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.content-body ul li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  color: var(--text-secondary);
}

.content-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.content-body ol li { color: var(--text-secondary); }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

/* ============================================================
   GLASSMORPHISM CARDS
   ============================================================ */
.glass-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.glass-card--gold {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(34, 36, 54, 0.8), rgba(42, 32, 18, 0.4));
}

.glass-card--gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.glass-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-card__title svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CTA MODULES
   ============================================================ */
.cta-module {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition);
}

.cta-module:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.cta-module__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.cta-module__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.cta-module__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* Conversion Banner */
.conversion-strip {
  background: linear-gradient(135deg, var(--charcoal-mid) 0%, var(--charcoal) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.conversion-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.conversion-strip__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.conversion-strip__text span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.conversion-strip__actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDIONS
   ============================================================ */
.faq-section {
  padding: var(--space-2xl) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-question:hover { background: rgba(255,255,255,0.02); }

.faq-question__text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--gold-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
}

.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-answer__inner p { font-size: 0.9rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--border), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.process-step__num {
  width: 40px;
  height: 40px;
  background: var(--gold-subtle);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step__content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  margin-top: 0.6rem;
}

.process-step__content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   INTAKE QUIZ
   ============================================================ */
.quiz-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.quiz-progress {
  margin-bottom: var(--space-xl);
}

.quiz-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.quiz-progress__bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-question {
  display: none;
  animation: quizIn 0.3s ease;
}
.quiz-question.active { display: block; }

@keyframes quizIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-question__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.quiz-question__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-xl);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.quiz-option:hover {
  border-color: var(--border-gold);
  background: var(--gold-subtle);
  color: var(--text-primary);
}

.quiz-option.selected {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--text-primary);
}

.quiz-option__indicator {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-option.selected .quiz-option__indicator {
  background: var(--gold);
  border-color: var(--gold);
}

.quiz-option.selected .quiz-option__indicator::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--text-inverse);
  border-radius: 50%;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

/* Quiz Result */
.quiz-result {
  display: none;
  text-align: center;
  padding: var(--space-2xl) 0;
}
.quiz-result.active { display: block; }

.quiz-result__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.quiz-result__badge--urgent {
  background: rgba(216, 80, 80, 0.1);
  border: 1px solid rgba(216, 80, 80, 0.3);
  color: #e88080;
}

.quiz-result__badge--standard {
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

.quiz-result__pathway {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  margin-top: var(--space-xl);
}

.quiz-result__step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.quiz-result__step-num {
  width: 24px;
  height: 24px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-label span.required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select option {
  background: var(--charcoal);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-help {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-error {
  font-size: 0.76rem;
  color: var(--error);
  margin-top: 0.4rem;
}

/* File Upload */
.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.file-upload:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.file-upload input { display: none; }

.file-upload__icon { font-size: 2rem; margin-bottom: var(--space-sm); }

.file-upload__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.file-upload__hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.blog-card__body { padding: var(--space-lg); }

.blog-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

.blog-card:hover .blog-card__title { color: var(--gold-light); }

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-card__meta {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   LOCAL PAGES TABS
   ============================================================ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: var(--space-2xl);
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 0.9rem var(--space-lg);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--text-secondary); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: pageFadeIn 0.25s ease; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}

.profile-avatar {
  width: 160px;
  height: 160px;
  background: var(--charcoal-mid);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.profile-title {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.profile-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.profile-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cred-badge {
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--silver);
  background: var(--silver-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

/* ============================================================
   STATS COUNTERS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--silver-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
}

.disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.disclaimer strong { color: var(--text-secondary); font-weight: 600; }

/* ============================================================
   MAPS & CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-detail__value a { color: var(--text-primary); }
.contact-detail__value a:hover { color: var(--gold); }

.map-placeholder {
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.map-placeholder__icon { font-size: 2.5rem; opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #09091a;
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.footer__brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__contact-item:hover { color: var(--gold); }
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.footer__link {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--gold); }

.footer__bottom {
  padding-top: var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__disclaimer {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
}

/* ============================================================
   NOTIFICATION / ALERT BANNER
   ============================================================ */
.alert-banner {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.alert-banner__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.alert-banner__content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.alert-banner__content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.flex-wrap { flex-wrap: wrap; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================================================
   RESPONSIVE — TABLET (768px)
   ============================================================ */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
    padding: var(--space-2xl) var(--space-lg);
  }
  .hero__card { max-width: 480px; }
  .hero__stats { gap: var(--space-lg); }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  .profile-card {
    grid-template-columns: 1fr;
  }
  .profile-avatar { width: 120px; height: 120px; font-size: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (375–767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2rem;
  }

  .hero__stats { flex-wrap: wrap; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .conversion-strip {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
  .conversion-strip__actions { flex-direction: column; width: 100%; }
  .conversion-strip__actions .btn { width: 100%; justify-content: center; }

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

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; }

  .trust-bar__divider { display: none; }
  .trust-bar__inner { gap: var(--space-lg); }

  .blog-grid { grid-template-columns: 1fr; }
}
