@font-face {
  font-family: 'TrajanPro';
  src: url('../fonts/TrajanPro-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'TrajanPro';
  src: url('../fonts/TrajanPro-Bold.otf') format('opentype');
  font-weight: 700;
}

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

:root {
  --black:    #0A0A0A;
  --charcoal: #141414;
  --zinc:     #1C1C1C;
  --muted:    #2A2A2A;
  --border:   #3A3020;
  --subtle:   #4A3A28;
  --mid:      #6B6B6B;
  --dim:      #9A9A9A;
  --silver:   #C8C8C8;
  --offwhite: #F0F0F0;
  --white:    #FAFAFA;
  --gold:     #C49A00;
  --gold-lt:  #D4AF37;
  --gold-dk:  #8B6914;
  --gold-glow:#F0C040;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'TrajanPro', Georgia, serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Layout ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .container { padding: 0 1rem; } }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,154,0,0.3);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-brand { display: flex; align-items: center; gap: 0.625rem; }
.nav-logo-box {
  display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 0.25rem; overflow: hidden;
  border: 1px solid rgba(196,154,0,0.3);
  background: var(--zinc); transition: border-color 0.3s;
}
.nav-brand:hover .nav-logo-box { border-color: var(--gold); }
.nav-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.nav-brand-text .name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.nav-brand-text .name span { color: var(--gold); }
.nav-brand-text .sub { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--dim); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-link {
  position: relative; display: block; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500; color: var(--dim);
  border-radius: 0.5rem; transition: all 0.2s;
}
.nav-link:hover { color: var(--white); background: var(--zinc); }
.nav-link-active { color: var(--white); }
.nav-active-dot {
  position: absolute; bottom: 0.125rem; left: 50%; transform: translateX(-50%);
  width: 0.25rem; height: 0.25rem; border-radius: 50%; background: var(--gold);
}
.nav-cta-wrap { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  border: 1px solid var(--border); color: var(--dim); cursor: pointer;
  background: none; transition: all 0.2s;
}
.nav-toggle:hover { color: var(--white); border-color: var(--subtle); }

/* Mobile drawer — hidden on desktop */
.mobile-drawer {
  display: none;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }

  .mobile-drawer {
    display: block;
    overflow: hidden; max-height: 0; opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    background: rgba(20,20,20,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 1rem;
  }
  .mobile-drawer.open { max-height: 24rem; opacity: 1; }
}

.mobile-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--dim);
  transition: all 0.2s;
}
.mobile-nav-link:hover { background: var(--zinc); color: var(--white); }
.mobile-nav-link-active { background: rgba(196,154,0,0.1); color: var(--white); border: 1px solid rgba(196,154,0,0.2); }

/* ── Value pillars grid ── */
.value-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.value-pillar {
  background: var(--charcoal); padding: 2rem;
  position: relative; transition: background 0.3s;
  display: flex; flex-direction: column;
}
.value-pillar .pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 0.5rem;
  background: rgba(196,154,0,0.1); border: 1px solid rgba(196,154,0,0.2);
  margin-bottom: 1.25rem; flex-shrink: 0; order: -1;
}
.value-pillar:hover { background: var(--zinc); }
.value-pillar:hover .pillar-top-line { width: 100% !important; }
@media (max-width: 900px) { .value-pillars-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .value-pillars-grid { grid-template-columns: 1fr; } }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 0.5rem;
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.03em;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 0.5rem;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.03em;
  border: 1px solid var(--border); cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

/* ── Section label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); font-weight: 600;
  padding: 0.35rem 0.875rem; border-radius: 999px;
  background: rgba(196,154,0,0.1); border: 1px solid rgba(196,154,0,0.2);
}

/* ── Gold gradient text ── */
.text-gold { color: var(--gold-lt); }
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold-glow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Hero section ── */
.hero {
  position: relative; background: var(--black);
  padding: 0; overflow: hidden; min-height: 92vh;
  display: flex; align-items: center;
}
.hero-grid { position: absolute; inset: 0; opacity: 0.02; pointer-events: none;
  background-image: linear-gradient(#C49A00 1px,transparent 1px),linear-gradient(90deg,#C49A00 1px,transparent 1px);
  background-size: 80px 80px; }
.hero-glow { position: absolute; top: 0; right: 0; width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,154,0,0.08) 0%, transparent 70%);
  pointer-events: none; }
.hero-logo-bg { position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  opacity: 0.15; pointer-events: none; select: none; }
.hero-logo-bg img { width: 480px; height: 480px; object-fit: contain; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.08; margin-bottom: 1.25rem; color: var(--white); }
.hero p { font-size: 1.125rem; color: var(--dim); max-width: 36rem; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat .val { font-family: 'TrajanPro', serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.hero-stat .lbl { font-size: 0.75rem; color: var(--dim); margin-top: 0.25rem; }

/* ── Page hero ── */
.page-hero {
  position: relative; background: var(--black);
  padding: 7rem 0 4rem; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.25rem,5vw,3.75rem); color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.125rem; color: var(--dim); max-width: 42rem; line-height: 1.7; }

/* ── Gold CTA Bar ── */
.cta-bar {
  background: var(--gold); padding: 1.5rem 0;
}
.cta-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-bar h3 { font-size: 1.125rem; color: var(--black); }
.cta-bar p { font-size: 0.875rem; color: rgba(10,10,10,0.7); margin-top: 0.2rem; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.5rem; border-radius: 0.5rem;
  background: var(--black); color: var(--gold);
  font-weight: 600; font-size: 0.875rem;
  border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-dark:hover { background: var(--charcoal); }

/* ── Cards ── */
.card {
  background: var(--zinc); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.75rem;
  transition: all 0.3s;
}
.card:hover { border-color: rgba(196,154,0,0.3); box-shadow: 0 0 24px rgba(196,154,0,0.1); }

/* ── Practice areas grid ── */
.practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.practice-card {
  background: var(--zinc); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.75rem; position: relative; overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.practice-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.practice-card:hover { border-color: rgba(196,154,0,0.4); background: linear-gradient(135deg, #1C1C1C 0%, #1a1800 100%); box-shadow: 0 0 24px rgba(196,154,0,0.15); }
.practice-card:hover::before { opacity: 1; }
.practice-icon {
  width: 3rem; height: 3rem; border-radius: 0.625rem;
  background: rgba(196,154,0,0.1); border: 1px solid rgba(196,154,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.25rem;
}
.practice-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.practice-card .num {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'TrajanPro', serif; font-size: 3rem; font-weight: 700;
  color: rgba(46,46,46,0.5); line-height: 1;
}

/* ── Marquee ── */
.marquee-wrap { background: var(--charcoal); border-top: 1px solid rgba(196,154,0,0.2); border-bottom: 1px solid rgba(196,154,0,0.2); padding: 1rem 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 0.625rem; margin: 0 2rem; color: var(--dim); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s; }
.marquee-item:hover { color: var(--gold-lt); }
.marquee-dot { color: rgba(196,154,0,0.3); font-size: 1.125rem; }
.marquee-icon { width: 1.5rem; height: 1.5rem; background: rgba(196,154,0,0.1); border: 1px solid rgba(196,154,0,0.2); border-radius: 0.375rem; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }

/* ── Value props ── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.value-card { background: var(--zinc); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.75rem; }
.value-card .icon { font-size: 1.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-lt); margin-bottom: 0.625rem; }
.value-card p { font-size: 0.875rem; color: var(--dim); line-height: 1.6; }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--charcoal); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.75rem; transition: border-color 0.3s; }
.testimonial-card:hover { border-color: rgba(196,154,0,0.3); }
.quote-mark { font-family: 'TrajanPro', serif; font-size: 3rem; color: rgba(196,154,0,0.3); line-height: 1; margin-bottom: 0.5rem; }
.testimonial-card blockquote { font-size: 0.875rem; color: var(--silver); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-card .author { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.testimonial-card .matter { font-size: 0.75rem; color: var(--mid); margin-top: 0.25rem; }

/* ── Accordion ── */
.accordion-item { border-bottom: 1px solid rgba(196,154,0,0.2); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  color: var(--white); font-family: 'TrajanPro', serif; font-size: 1rem; text-align: left;
  transition: color 0.2s;
}
.accordion-btn:hover { color: var(--gold-lt); }
.accordion-btn.open { color: var(--gold-lt); }
.accordion-arrow { transition: transform 0.3s; color: var(--gold); font-size: 1rem; }
.accordion-btn.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body.open { max-height: 600px; }
.accordion-body-inner { padding: 0 0 1.25rem; }
.highlight-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.highlight-list li {
  font-size: 0.8125rem; color: var(--dim); padding: 0.3rem 0.75rem;
  border-radius: 999px; background: rgba(196,154,0,0.05);
  border: 1px solid rgba(196,154,0,0.15);
}

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--silver); }
.form-label .req { color: var(--gold); margin-left: 0.25rem; }
.form-input {
  background: var(--muted); border: 1px solid var(--border);
  border-radius: 0.5rem; padding: 0.75rem 1rem;
  color: var(--white); font-size: 0.875rem;
  transition: border-color 0.2s; width: 100%;
  font-family: inherit;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input.error { border-color: #7f1d1d; }
.form-input::placeholder { color: var(--mid); }
.form-hint { font-size: 0.75rem; color: var(--mid); }
.form-error { font-size: 0.75rem; color: #f87171; display: flex; align-items: center; gap: 0.25rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ── Steps ── */
.steps-track { display: flex; justify-content: space-between; position: relative; margin-bottom: 2.5rem; }
.steps-line { position: absolute; top: 1.25rem; left: 10%; right: 10%; height: 2px; background: var(--border); }
.steps-progress { position: absolute; top: 1.25rem; left: 10%; height: 2px; background: var(--gold); transition: width 0.5s ease; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; }
.step-circle {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border); background: var(--charcoal);
  color: var(--mid); font-size: 0.875rem; transition: all 0.3s;
}
.step-circle.active { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 12px rgba(196,154,0,0.3); }
.step-circle.done { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-label { font-size: 0.75rem; color: var(--mid); text-align: center; max-width: 80px; line-height: 1.3; }
.step-label.active { color: var(--white); }
.step-label.done { color: var(--gold); }

/* ── Contact info ── */
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-icon { color: var(--gold); margin-top: 0.125rem; font-size: 1rem; flex-shrink: 0; }
.contact-item p { font-size: 0.875rem; color: var(--dim); line-height: 1.6; }
.contact-item a { color: var(--gold-lt); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

/* ── Admin ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--charcoal); border-right: 1px solid var(--border);
  padding: 1.5rem; display: flex; flex-direction: column; flex-shrink: 0;
}
.admin-main { flex: 1; padding: 2rem; background: var(--black); overflow-auto; }
.admin-nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 0.5rem;
  color: var(--dim); font-size: 0.875rem; margin-bottom: 0.25rem;
  transition: all 0.2s;
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(196,154,0,0.1); color: var(--gold-lt); }
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.admin-stat { background: var(--charcoal); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; }
.admin-stat .val { font-family: 'TrajanPro', serif; font-size: 2rem; color: var(--gold); }
.admin-stat .lbl { font-size: 0.8125rem; color: var(--dim); margin-top: 0.25rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 0.75rem 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 0.875rem 1rem; font-size: 0.875rem; color: var(--silver); border-bottom: 1px solid rgba(46,46,46,0.5); vertical-align: top; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-pending  { background: rgba(234,179,8,0.15);  color: #fbbf24; }
.badge-reviewed { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-active   { background: rgba(34,197,94,0.15);  color: #4ade80; }
.badge-closed   { background: rgba(107,114,128,0.15);color: #9ca3af; }
.badge-unread   { background: rgba(234,179,8,0.15);  color: #fbbf24; }
.badge-read     { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-replied  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.status-select { background: var(--muted); border: 1px solid var(--border); color: var(--white); padding: 0.3rem 0.5rem; border-radius: 0.375rem; font-size: 0.8125rem; cursor: pointer; }

/* ── Footer ── */
.footer { background: var(--charcoal); border-top: 1px solid rgba(196,154,0,0.25); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer h4 { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--silver); margin-bottom: 1.25rem; font-family: inherit; font-weight: 600; }
.footer-link { display: block; font-size: 0.875rem; color: var(--dim); margin-bottom: 0.625rem; transition: color 0.2s; }
.footer-link:hover { color: var(--gold-lt); }
.footer-contact { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--dim); margin-bottom: 0.625rem; }
.footer-contact span { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact a { color: var(--gold-lt); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(196,154,0,0.2); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: var(--mid); }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { font-size: 0.75rem; color: var(--mid); transition: color 0.2s; }
.footer-legal a:hover { color: var(--dim); }

/* ── Floating buttons ── */
.float-btns { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.float-btn { width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; box-shadow: 0 0 16px rgba(196,154,0,0.4); border: 2px solid var(--gold); }
.float-btn:hover { transform: scale(1.1); }
.float-btn img { width: 1.625rem; height: 1.625rem; object-fit: contain; }
.float-wa { background: #25D366; }
.float-fb { background: #1877F2; }

/* ── Alerts ── */
.alert { padding: 1rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; margin-bottom: 1rem; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #f87171; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-dim    { color: var(--dim); }
.text-silver { color: var(--silver); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.py-8 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12{ padding-top: 6rem; padding-bottom: 6rem; }
.py-20{ padding-top: 5rem; padding-bottom: 5rem; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(196,154,0,0.35), transparent); margin: 0; }
.section-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.section-heading h2 { font-size: 1.875rem; color: var(--white); }
.section-heading .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border), transparent); }
.core-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.core-value { background: var(--zinc); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.75rem; position: relative; overflow: hidden; transition: border-color 0.3s; }
.core-value:hover { border-color: rgba(196,154,0,0.3); }
.core-value .num { position: absolute; top: 1rem; right: 1rem; font-family: 'TrajanPro',serif; font-size: 3rem; font-weight: 700; color: rgba(46,46,46,0.5); line-height: 1; }
.core-value h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-lt); margin-bottom: 0.625rem; }
.core-value p { font-size: 0.875rem; color: var(--dim); }
.success-box { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; gap: 1.5rem; }
.success-icon { width: 5rem; height: 5rem; border-radius: 50%; background: rgba(196,154,0,0.15); border: 2px solid rgba(196,154,0,0.4); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.625rem 0; border-bottom: 1px solid rgba(196,154,0,0.15); font-size: 0.875rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--dim); }
.hours-row .time { color: var(--gold-lt); font-weight: 500; }
.hours-row .time.closed { color: var(--mid); }

/* ── Hero stats grid ── */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem 2.5rem;
  align-items: center;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {

  /* All 2-column page grids stack to 1 column */
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Practice grid: 1 column on mobile */
  .practice-grid {
    grid-template-columns: 1fr !important;
  }

  /* Value pillars: 1 column on mobile */
  .value-pillars-grid {
    grid-template-columns: 1fr !important;
  }

  /* Core values: 2 columns on mobile */
  .core-values-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Testimonials: 1 column on mobile */
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  /* Hero logo watermark hidden on mobile */
  .hero-logo-bg { display: none; }

  /* Hero stats: 2-column grid on mobile */
  .hero-stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero-stats-grid > div:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }

  /* Form grid: 1 column on mobile */
  .form-grid-2 { grid-template-columns: 1fr !important; }

  /* About page 2-col layout */
  section [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Sidebar sticky off on mobile */
  aside[style*="position:sticky"] {
    position: static !important;
  }

  /* Footer grid: 1 column on mobile, reordered */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-grid > div:nth-child(1) { order: 1; } /* Brand + contact */
  .footer-grid > div:nth-child(2) { order: 4; } /* Navigation — last */
  .footer-grid > div:nth-child(3) { order: 3; } /* Practice Areas */
  .footer-grid > div:nth-child(4) { order: 2; } /* Office Hours — second */

  /* Admin layout: no sidebar on mobile */
  .admin-sidebar { display: none; }
  .admin-main { padding: 1rem; }

  /* Page hero logo watermark hidden */
  section [style*="opacity:0.18"] img,
  section [style*="opacity:0.15"] img {
    display: none;
  }

  /* Section padding reduced */
  section { padding-left: 0 !important; padding-right: 0 !important; }
  .container { padding: 0 1rem; }

  /* CTA bar stack on mobile */
  section [style*="justify-content:space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
