/* =====================================================================
   Vijay Kumar Sahlot & Associates — styles.css
   Single stylesheet, design-token driven. Mobile-first.
   ===================================================================== */

/* ---- Design tokens -------------------------------------------------- */
:root {
  /* Color */
  --navy:        #0F1B33;
  --navy-deep:   #0B1428;
  --gold:        #C2A14E;
  --gold-dark:   #A8893B;
  --bg:          #FFFFFF;
  --bg-alt:      #F7F6F3;
  --text:        #1A2438;
  --text-muted:  #5B6472;
  --border:      #E7E7E2;
  --white:       #FFFFFF;

  /* Type */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Poppins", "Jost", system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --maxw: 1200px;
  --radius: 4px;

  --header-h: 76px;
  --shadow: 0 1px 3px rgba(15, 27, 51, .06), 0 8px 24px rgba(15, 27, 51, .06);
}

/* ---- Reset / base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
}

p { margin: 0 0 var(--space-sm); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Layout helpers ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section { padding-block: var(--space-xl); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: var(--space-lg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }

h1, .h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3, .h3 { font-size: 1.25rem; }

.accent { font-style: italic; color: var(--gold-dark); }

.lead { font-size: 1.125rem; color: var(--text-muted); max-width: 60ch; }
.muted { color: var(--text-muted); }

/* ---- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }

.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }

/* on dark backgrounds */
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--gold-dark);
}
.arrow-link svg { transition: transform .18s ease; }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover svg { transform: translateX(3px); }

/* ---- Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__logo { height: 40px; width: auto; display: block; flex: 0 0 auto; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  line-height: 1.05;
}
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-top: 2px;
}

.nav { display: none; }
.nav ul { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.nav a {
  font-family: var(--font-sans);
  font-size: .92rem; font-weight: 500; color: var(--text);
  padding: .4rem 0; position: relative;
}
.nav a:hover { color: var(--navy); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .2s; }

@media (min-width: 960px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile slide-in menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  display: flex; flex-direction: column;
  padding: var(--space-md);
  transform: translateX(100%);
  transition: transform .25s ease;
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav__top { display: flex; justify-content: flex-end; }
.mobile-nav__close { background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-nav ul { list-style: none; margin: var(--space-lg) 0 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav a {
  display: block; padding: 1rem 0; color: #fff;
  font-family: var(--font-serif); font-size: 1.4rem;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--gold); text-decoration: none; }
.mobile-nav .btn { margin-top: var(--space-md); }

/* ---- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,20,40,.80), rgba(11,20,40,.90)),
    url("../img/hero.jpg") center/cover no-repeat,
    radial-gradient(120% 120% at 75% 10%, #1c2c4d 0%, var(--navy-deep) 60%);
  color: #fff;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.hero__eyebrow {
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .5rem;
  text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 600;
  margin-bottom: var(--space-md);
}
.hero__eyebrow::before { content: "●"; font-size: .6rem; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero__lead { color: rgba(255,255,255,.82); max-width: 56ch; font-size: 1.1rem; }
.hero .btn-row { margin-top: var(--space-md); }
.hero--page { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.hero--page h1 { max-width: 22ch; }

/* ---- Stat strip ----------------------------------------------------- */
.stats {
  background: var(--navy);
  color: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding-block: var(--space-lg);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  color: #fff;
}
.stat__num .plus { color: var(--gold); }
.stat__label { font-weight: 600; margin-top: .4rem; font-size: .95rem; }
.stat__sub { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: .15rem; }

@media (min-width: 760px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stat { border-left: 1px solid rgba(255,255,255,.12); }
  .stat:first-child { border-left: 0; }
}

/* ---- Practice cards ------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
.card-grid--4 { display: flex; flex-wrap: wrap; justify-content: center; }
.card-grid--4 .p-card { flex: 0 1 100%; }
@media (min-width: 600px) { .card-grid--4 .p-card { flex: 0 1 calc((100% - var(--space-md)) / 2 - 1px); } }
@media (min-width: 980px) { .card-grid--4 .p-card { flex: 0 1 calc((100% - 2 * var(--space-md)) / 3 - 1px); } }

.p-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dcd6c4; }
.p-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--bg-alt);
  display: grid; place-items: center;
  margin-bottom: var(--space-sm);
  color: var(--gold-dark);
}
.p-card__icon svg { width: 26px; height: 26px; }
.p-card h3 { margin-bottom: .4rem; }
.p-card p { color: var(--text-muted); font-size: .94rem; flex: 1; }
.p-card .arrow-link { margin-top: var(--space-sm); }

/* ---- Why choose (split) -------------------------------------------- */
.split {
  display: grid; gap: var(--space-lg);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); } }

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(120% 120% at 30% 20%, #24365b, var(--navy-deep));
  min-height: 360px;
  display: grid; place-items: center;
}
.media-frame svg { width: 120px; height: 120px; color: rgba(194,161,78,.55); }
.media-badge {
  position: absolute; left: 0; bottom: 24px;
  background: var(--navy);
  color: #fff; padding: 1rem 1.25rem;
  max-width: 230px;
  border-left: 3px solid var(--gold);
}
.media-badge strong { font-family: var(--font-serif); font-size: 1.6rem; display: block; }
.media-badge span { font-size: .82rem; color: rgba(255,255,255,.75); }

.feature { display: flex; gap: var(--space-sm); padding: var(--space-sm) 0; }
.feature + .feature { border-top: 1px solid var(--border); }
.feature__icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--bg-alt); color: var(--gold-dark);
  display: grid; place-items: center;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.feature p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---- Prose sections (about / practice areas) ----------------------- */
.prose-block + .prose-block { margin-top: var(--space-lg); }
.prose-block p { color: var(--text-muted); max-width: 68ch; }
.prose-block p:last-child { margin-bottom: 0; }

.area {
  display: grid; gap: var(--space-md);
  grid-template-columns: 1fr;
  padding-block: var(--space-lg);
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.area:first-of-type { border-top: 0; }
@media (min-width: 760px) { .area { grid-template-columns: 64px 1fr; gap: var(--space-md); } }
.area__icon {
  width: 64px; height: 64px; border-radius: var(--radius);
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
}
.area__icon svg { width: 30px; height: 30px; }
.area__body p { color: var(--text-muted); margin-bottom: 0; max-width: 70ch; }

/* ---- FAQ accordion -------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy);
  padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
}
.faq__q::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold-dark); font-family: var(--font-sans);
}
.faq__q[aria-expanded="true"]::after { content: "–"; }
.faq__a {
  display: none;
  padding: 0 2.5rem 1.25rem 0;
  color: var(--text-muted);
}
.faq__a p { margin: 0; }
.faq__item.open .faq__a { display: block; }

/* ---- CTA band ------------------------------------------------------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-md); }

/* ---- Team ----------------------------------------------------------- */
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.team-grid .member { flex: 0 1 100%; }

.team-featured {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  background: #fff; margin-top: var(--space-lg);
}
@media (min-width: 760px) { .team-featured { grid-template-columns: 320px 1fr; } }
.team-featured__photo { min-height: 340px; background: radial-gradient(120% 120% at 40% 25%, #24365b, var(--navy-deep)); }
.team-featured__body { padding: var(--space-lg); display: flex; flex-direction: column; justify-content: center; }
.team-featured__name { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: .25rem 0 0; }
.team-featured__role { color: var(--text-muted); font-weight: 600; margin: 0 0 var(--space-sm); }
.team-featured .member__bio { font-size: 1rem; max-width: 60ch; }
@media (min-width: 600px) { .team-grid .member { flex: 0 1 calc((100% - var(--space-md)) / 2 - 1px); } }
@media (min-width: 980px) { .team-grid .member { flex: 0 1 calc((100% - 2 * var(--space-md)) / 3 - 1px); } }

.member { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.member__photo {
  position: relative; aspect-ratio: 3 / 3.4;
  background: radial-gradient(120% 120% at 40% 25%, #24365b, var(--navy-deep));
  display: grid; place-items: center;
}
.member__photo svg { width: 80px; height: 80px; color: rgba(255,255,255,.25); }
.member__overlay {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(11,20,40,.92));
  padding: 1.5rem 1rem .9rem;
}
.member__name { font-family: var(--font-serif); color: #fff; font-size: 1.15rem; }
.member__role { color: rgba(255,255,255,.8); font-size: .82rem; }
.member__body { padding: var(--space-sm) var(--space-sm) var(--space-md); }
.member__tag {
  text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 600;
  color: var(--gold-dark); display: block; margin-bottom: .5rem;
}
.member__bio { font-size: .88rem; color: var(--text-muted); margin: 0; }
.member__links { display: flex; gap: .6rem; margin-top: var(--space-sm); }
.member__links a { color: var(--text-muted); display: grid; place-items: center; }
.member__links a:hover { color: var(--gold-dark); }
.member__links svg { width: 18px; height: 18px; }

/* ---- Contact -------------------------------------------------------- */
.contact-grid {
  display: grid; gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr .8fr; } }

.form-field { margin-bottom: var(--space-sm); }
.form-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.form-field label .req { color: var(--gold-dark); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; font-family: var(--font-sans); font-size: .95rem;
  padding: .75rem .85rem; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; color: var(--text);
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(194,161,78,.18); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-error { color: #b3261e; font-size: .8rem; margin-top: .25rem; display: none; }
.form-field.invalid .form-error { display: block; }
.form-field.invalid input,
.form-field.invalid textarea { border-color: #b3261e; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: var(--space-sm); padding: .85rem 1rem; border-radius: var(--radius); display: none; font-size: .9rem; }
.form-status.success { display: block; background: #edf6ee; color: #1c5b2a; border: 1px solid #bcdcc1; }
.form-status.error { display: block; background: #fdeceb; color: #8c1d16; border: 1px solid #f3c4c0; }

.office-card { border-radius: var(--radius); padding: var(--space-md); border: 1px solid var(--border); }
.office-card + .office-card { margin-top: var(--space-md); }
.office-card--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.office-card--navy h3 { color: #fff; }
.office-card h3 { font-size: 1.15rem; }
.office-card dl { margin: 0; display: grid; gap: .5rem; }
.office-card dt {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  color: var(--gold);
}
.office-card--navy dd { color: rgba(255,255,255,.85); }
.office-card dd { margin: 0 0 .4rem; font-size: .92rem; }
.office-card a { color: inherit; }

.map-embed {
  margin-top: var(--space-md);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 11;
  background: var(--bg-alt);
}
.map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.map-link { display: inline-flex; margin-top: .75rem; font-size: .85rem; font-weight: 600; }

/* ---- Blog ----------------------------------------------------------- */
.post-grid { display: grid; gap: var(--space-md); grid-template-columns: 1fr; margin-top: var(--space-lg); }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card__img { aspect-ratio: 16/9; background: radial-gradient(120% 120% at 30% 20%, #24365b, var(--navy-deep)); }
.post-card__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dark); margin-bottom: .5rem; }
.post-card h3 { font-size: 1.2rem; }
.post-card p { font-size: .9rem; color: var(--text-muted); flex: 1; }

.article { max-width: 760px; margin-inline: auto; }
.article__meta { color: var(--text-muted); font-size: .9rem; margin-bottom: var(--space-md); }
.article__hero { aspect-ratio: 16/9; background: radial-gradient(120% 120% at 30% 20%, #24365b, var(--navy-deep)); border-radius: var(--radius); margin-bottom: var(--space-md); }
.article p, .article li { color: var(--text); }
.article h2 { margin-top: var(--space-lg); }
.article h3 { margin-top: var(--space-md); }

/* ---- Footer --------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); }
.footer-grid {
  display: grid; gap: var(--space-lg);
  grid-template-columns: 1fr;
  padding-block: var(--space-xl) var(--space-lg);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.footer-brand .brand__name, .footer-brand .brand__mark { }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__mark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.footer-brand p { margin-top: var(--space-sm); font-size: .9rem; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: var(--space-sm); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: rgba(255,255,255,.78); font-size: .92rem; }
.footer a:hover { color: var(--gold); text-decoration: none; }
.footer address { font-style: normal; font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: var(--space-md);
  display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---- Disclaimer modal ---------------------------------------------- */
.disclaimer-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(7, 13, 26, .78);
  display: none; align-items: center; justify-content: center;
  padding: var(--space-md);
}
.disclaimer-overlay.show { display: flex; }
.disclaimer-card {
  background: #fff; max-width: 640px; width: 100%;
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.75rem);
  border-top: 4px solid var(--gold);
  max-height: 90vh; overflow: auto;
}
.disclaimer-card .eyebrow { margin-bottom: var(--space-xs); }
.disclaimer-card h2 { font-size: 1.6rem; }
.disclaimer-card p { color: var(--text-muted); font-size: .94rem; }
.disclaimer-card .btn { margin-top: var(--space-sm); width: 100%; }
.disclaimer-card ul, .prose-block ul { margin: 0 0 var(--space-sm); padding-left: 1.2rem; }
.disclaimer-card li { color: var(--text-muted); font-size: .9rem; margin-bottom: .55rem; }
.prose-block li { color: var(--text-muted); margin-bottom: .55rem; }

/* ---- WhatsApp float (off by default; toggled in JS/config) ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: none; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.wa-float.enabled { display: grid; }
.wa-float svg { width: 30px; height: 30px; }

/* ---- Utilities ------------------------------------------------------ */
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
