/* =========================================================
   New York Criminal Appeals Advocates — Gregory Salmon, Esq.
   Original design system. Professional appellate-law aesthetic.
   ========================================================= */

/* ----- Design tokens ----- */
:root {
  --navy-900: #0d1a2b;
  --navy-800: #12233a;
  --navy-700: #1b3352;
  --navy-600: #274a72;
  --brass-500: #b9944e;
  --brass-400: #c9a763;
  --brass-300: #ddc38f;
  --cream-050: #f8f6f1;
  --cream-100: #f1ede4;
  --paper: #ffffff;
  --ink-900: #16202c;
  --ink-700: #384454;
  --ink-500: #5c6a7a;
  --line: #e3ded3;

  --maxw: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(13, 26, 43, 0.06);
  --shadow-md: 0 12px 34px rgba(13, 26, 43, 0.12);
  --shadow-lg: 0 26px 60px rgba(13, 26, 43, 0.22);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --t-fast: 160ms ease;
  --t-med: 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--cream-050);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--navy-900); margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream-100); }
.section--navy { background: var(--navy-900); color: var(--cream-050); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-500);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brass-500); display: inline-block; }
.section--navy .eyebrow { color: var(--brass-400); }
.section--navy .eyebrow::before { background: var(--brass-400); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-lead { font-size: 1.08rem; color: var(--ink-700); margin-bottom: 0; }
.section--navy .section-lead { color: rgba(248, 246, 241, 0.82); }

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--brass-500);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 0.92rem 1.7rem; border-radius: var(--radius); cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bg);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { --btn-bg: var(--brass-500); }
.btn--gold:hover { background: var(--brass-400); border-color: var(--brass-400); }
.btn--navy { --btn-bg: var(--navy-800); border-color: var(--navy-800); }
.btn--outline { background: transparent; color: var(--navy-900); border-color: var(--navy-700); }
.btn--outline:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }

/* ===================== HEADER ===================== */
























/* ===================== HERO ===================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(185,148,78,0.18), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #0a1524 100%);
  color: var(--cream-050);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 59.5H60M0 0.5H60' stroke='%23ffffff' stroke-opacity='0.03'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-flag { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-300); margin-bottom: 1.4rem; }
.hero-flag::before { content: ""; width: 34px; height: 1px; background: var(--brass-400); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.85rem); color: #fff; margin-bottom: 0.6rem; }
.hero h1 em { color: var(--brass-400); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: rgba(248,246,241,0.85); max-width: 34rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
..hero-trust { display: flex; flex-wrap: wrap; gap: 1.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.14); }
.hero-trust .num { font-family: var(--serif); font-size: 1.9rem; color: var(--brass-400); font-weight: 700; }
.hero-trust .lbl { font-size: 0.8rem; color: rgba(248,246,241,0.7); max-width: 12rem; }
.hero-trust div { min-width: 90px; }
.hero-trust .num { font-family: var(--serif); font-size: 1.9rem; color: var(--brass-400); line-height: 1; }
.hero-trust .lbl { font-size: 0.8rem; color: rgba(248,246,241,0.7); margin-top: 0.35rem; }

/* Hero card */
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(185,148,78,0.35); border-radius: 8px; padding: 2rem;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(4px);
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1.2rem; }
.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.hero-card li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.97rem; color: rgba(248,246,241,0.9); }
.hero-card li svg { flex: none; color: var(--brass-400); margin-top: 3px; }
.hero-card .card-foot { margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.86rem; color: rgba(248,246,241,0.72); }

/* ===================== VALUE / WHY ===================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.value-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brass-300); }
.value-icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(185,148,78,0.12); color: var(--brass-500); margin-bottom: 1.3rem;
}
.value-card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--ink-700); font-size: 0.98rem; margin-bottom: 0; }

/* ===================== PRACTICE AREAS ===================== */
.pa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pa-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; position: relative; overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.pa-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--brass-500); transform: scaleX(0); transform-origin: left; transition: transform var(--t-med); }
.pa-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pa-card:hover::before { transform: scaleX(1); }
.pa-num { font-family: var(--serif); font-size: 0.95rem; color: var(--brass-500); font-weight: 700; }
.pa-card h3 { font-size: 1.12rem; margin: 0.6rem 0 0.5rem; }
.pa-card p { font-size: 0.92rem; color: var(--ink-700); margin-bottom: 0; }

/* Detailed practice list (practice-areas page) */
.pa-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.pa-detail-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: flex; gap: 1.3rem; box-shadow: var(--shadow-sm); }
.pa-detail-card .ico { flex: none; width: 52px; height: 52px; border-radius: var(--radius); background: var(--navy-900); color: var(--brass-400); display: grid; place-items: center; }
.pa-detail-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pa-detail-card p { color: var(--ink-700); font-size: 0.97rem; margin-bottom: 0; }

/* ===================== ATTORNEY / ABOUT ===================== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.8rem); align-items: center; }
.portrait {
  position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); aspect-ratio: 4 / 5;
  display: grid; place-items: center;
}
.portrait .monogram { font-family: var(--serif); font-size: 6rem; color: rgba(201,167,99,0.9); }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,26,43,0) 45%, rgba(13,26,43,0.72) 100%); pointer-events: none; }
.portrait .pill { position: absolute; left: 1.2rem; bottom: 1.2rem; right: 1.2rem; background: rgba(13,26,43,0.85); border: 1px solid rgba(185,148,78,0.4); border-radius: var(--radius); padding: 0.9rem 1.1rem; backdrop-filter: blur(4px); }
.portrait .pill strong { display: block; color: #fff; font-family: var(--serif); font-size: 1.15rem; }
.portrait .pill span { color: var(--brass-300); font-size: 0.82rem; letter-spacing: 0.05em; }
.about-body h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.about-body p { color: var(--ink-700); }
.sig { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--navy-700); margin-top: 0.5rem; }

.cred-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 1.6rem; margin: 1.6rem 0; }
.cred-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.96rem; color: var(--ink-900); }
.cred-list svg { flex: none; color: var(--brass-500); margin-top: 4px; }

/* ===================== PUBLICATIONS ===================== */
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.book { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t-med), box-shadow var(--t-med); }
.book:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.book-cover {
  aspect-ratio: 3 / 4; position: relative; display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.6rem; color: #fff;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  border-bottom: 3px solid var(--brass-500);
}
.book-cover::after { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 6px; background: rgba(185,148,78,0.55); }
.book-cover .bk-top { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-300); }
.book-cover .bk-title { font-family: var(--serif); font-size: 1.32rem; line-height: 1.2; }
.book-cover .bk-author { font-size: 0.8rem; color: rgba(248,246,241,0.8); }
.book-meta { padding: 1.3rem 1.4rem; }
.book-meta .yr { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--brass-500); text-transform: uppercase; }
.book-meta p { font-size: 0.93rem; color: var(--ink-700); margin: 0.5rem 0 0; }

/* ===================== CTA BAND ===================== */
.cta-band {
  background:
    radial-gradient(120% 120% at 90% 10%, rgba(185,148,78,0.2), transparent 50%),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff; text-align: center; border-block: 1px solid rgba(185,148,78,0.3);
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; }
.cta-band p { color: rgba(248,246,241,0.82); max-width: 40rem; margin-inline: auto; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact-info .info-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .ico { flex: none; width: 48px; height: 48px; border-radius: 50%; background: rgba(185,148,78,0.12); color: var(--brass-500); display: grid; place-items: center; }
.contact-info h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500); margin: 0 0 0.2rem; }
.contact-info a, .contact-info p { font-size: 1.08rem; color: var(--navy-900); font-weight: 600; margin: 0; }
.contact-info a:hover { color: var(--brass-500); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.97rem; color: var(--ink-900); background: var(--cream-050);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass-500); box-shadow: 0 0 0 3px rgba(185,148,78,0.15); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-500); margin-top: 0.8rem; }
.form-success { display: none; background: rgba(39,74,114,0.08); border: 1px solid var(--navy-600); border-radius: var(--radius); padding: 1rem 1.2rem; color: var(--navy-700); font-weight: 600; margin-bottom: 1.2rem; }
.form-success.show { display: block; }

/* ===================== PAGE HERO (interior) ===================== */
.page-hero {
  background:
    radial-gradient(100% 120% at 90% 0%, rgba(185,148,78,0.15), transparent 55%),
    linear-gradient(150deg, var(--navy-900), var(--navy-800));
  color: #fff; padding-block: clamp(3rem, 6vw, 4.8rem);
}
.page-hero .crumbs { font-size: 0.82rem; color: rgba(248,246,241,0.6); margin-bottom: 0.9rem; letter-spacing: 0.03em; }
.page-hero .crumbs a:hover { color: var(--brass-400); }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(248,246,241,0.82); max-width: 44rem; font-size: 1.08rem; margin-bottom: 0; }

/* ===================== FOOTER ===================== */
.site-footer { background: #0a1421; color: rgba(248,246,241,0.72); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.2rem; padding-bottom: 3rem; }
.footer-brand 
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.93rem; color: rgba(248,246,241,0.72); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--brass-400); }
.footer-contact li { display: flex; gap: 0.6rem; font-size: 0.93rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer-contact svg { flex: none; color: var(--brass-400); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: rgba(248,246,241,0.5); }
.footer-bottom a:hover { color: var(--brass-400); }
.disclaimer { background: #071019; color: rgba(248,246,241,0.42); font-size: 0.76rem; line-height: 1.6; padding-block: 1.3rem; }
.disclaimer .container { max-width: var(--maxw); }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,0.61,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .pa-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  
  
  
  
  
  
  
  
  
}
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-copy { order: 1; }
  .hero-card { order: 2; }
  .hero-trust { gap: 1.2rem; }
  .hero-trust > div { flex: 1 1 40%; }

  .grid-3, .grid-2, .book-grid, .pa-detail, .cred-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.2rem; }
}
@media (max-width: 520px) {
  .pa-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HEADER & NAVIGATION — clean rebuild (mobile-safe)
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,26,43,0.97);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(185,148,78,0.28);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 68px;
  max-width: 1200px; margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2rem); padding-right: clamp(1rem, 4vw, 2rem);
}
.brand{ display: flex; align-items: center; gap: 0.7rem; color: #fff; text-decoration: none; flex-shrink: 0; }
.brand-mark{ width: 40px; height: 40px; flex-shrink: 0; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-name{ font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: #fff; }
.brand-sub{ font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-400); margin-top: 2px; }

/* Desktop nav */
.nav-desktop ul{ display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-desktop a{ color: rgba(248,246,241,0.86); font-size: 0.9rem; font-weight: 500; text-decoration: none; white-space: nowrap; transition: color .2s; }
.nav-desktop a:hover, .nav-desktop a[aria-current="page"]{ color: #fff; }

.header-cta{ display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone{ display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 600; font-size: 0.9rem; text-decoration: none; white-space: nowrap; }
.header-phone svg{ color: var(--brass-400); flex-shrink: 0; }
.header-phone .txt{ display: flex; flex-direction: column; line-height: 1.1; }
.header-phone small{ font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-400); font-weight: 600; }

/* Hamburger button — hidden on desktop */
.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: transparent;
  border: 1px solid rgba(185,148,78,0.4); border-radius: 8px; cursor: pointer;
}
.nav-toggle .bar{ display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* Full-screen mobile overlay menu */
.mobile-menu{
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy-900, #0d1a2b);
  padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
  padding-left: env(safe-area-inset-left, 0px); padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  overflow-y: auto;
}
.mobile-menu.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav{ display: flex; flex-direction: column; padding: 1.5rem clamp(1.25rem,6vw,2.5rem) 2.5rem; }
.mobile-menu ul{ list-style: none; margin: 0 0 1.5rem; padding: 0; }
.mobile-menu li{ border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a{ display: block; color: #fff; font-size: 1.2rem; font-weight: 500; text-decoration: none; padding: 1rem 0; }
.mobile-menu a[aria-current="page"]{ color: var(--brass-400); }
.mobile-cta{ margin-bottom: 1rem; text-align: center; }
.mobile-phone{ color: var(--brass-400); font-weight: 600; font-size: 1.05rem; text-decoration: none; text-align: center; }

/* body scroll lock when menu open */
body.menu-open{ overflow: hidden; }

/* ---- Responsive switch: show hamburger, hide desktop nav ---- */
@media (max-width: 900px){
  .nav-desktop{ display: none; }
  .header-consult{ display: none; }
  .nav-toggle{ display: flex; }
}
@media (max-width: 560px){
  .header-phone{ display: none; }
  .brand-name{ font-size: 1rem; }
}
@media (min-width: 901px){
  .mobile-menu{ display: none; }
}

/* ---- Responsive video embed ---- */
.video-section{ background: var(--paper, #f7f5f0); }
.video-wrap{
  position: relative; width: 100%; max-width: 900px; margin: 2rem auto 0;
  aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-lg, 0 20px 50px rgba(0,0,0,0.25)); background: #000;
}
.video-wrap iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@supports not (aspect-ratio: 1){
  .video-wrap{ height: 0; padding-bottom: 56.25%; }
}

/* ---- Notable Decisions ---- */
.notable-section{ background: linear-gradient(160deg, var(--navy-900,#0d1a2b), var(--navy-800,#122439)); color: var(--cream-050,#f8f6f1); }
.notable-section .eyebrow{ color: var(--brass-400); }
.notable-section h2{ color: #fff; }
.notable-card{
  max-width: 820px; margin: 2.5rem auto 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(185,148,78,0.35);
  border-radius: 10px; padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-lg,0 20px 50px rgba(0,0,0,0.3));
}
.notable-tag{ font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass-400); font-weight: 600; margin-bottom: 0.8rem; }
.notable-card h3{ font-family: var(--serif); font-size: clamp(1.6rem,3.5vw,2.2rem); color: #fff; margin: 0 0 1.2rem; }
.notable-card p{ color: rgba(248,246,241,0.85); margin: 0 0 1rem; line-height: 1.7; }
.notable-stats{ display: flex; flex-wrap: wrap; gap: 2.5rem; margin: 1.8rem 0; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); }
.notable-stats .num{ font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--brass-400); line-height: 1; }
.notable-stats .lbl{ font-size: 0.82rem; color: rgba(248,246,241,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
.notable-quote{ font-family: var(--serif); font-size: clamp(1.2rem,2.6vw,1.5rem); font-style: italic; color: #fff; border-left: 3px solid var(--brass-400); padding-left: 1.2rem; margin: 1.8rem 0; line-height: 1.5; }
.notable-disclaimer{ font-size: 0.78rem !important; color: rgba(248,246,241,0.55) !important; margin-top: 1.5rem !important; }
