/* ========== Reset / Base Normalize ========== */
*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ========== Theme Tokens ========== */
:root{
  /* Brand palette */
  --bg: #0b0f17;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.12);

  --text: #e9eefc;
  --muted: rgba(233,238,252,0.72);

  --brand: #b99555;      /* warm gold */
  --brand-2: #d9c18a;    /* lighter gold */
  --accent: #6aa6ff;     /* subtle accent */
  --danger: #ff5c5c;

  /* Layout */
  --container: 1120px;
  --radius: 18px;
  --radius-sm: 12px;

  /* Type */
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.25);
}

/* --------- Base --------- */
html, body { height: 100%; }
body{
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 15% 10%, rgba(106,166,255,0.18), transparent 55%),
    radial-gradient(900px 700px at 85% 20%, rgba(185,149,85,0.18), transparent 55%),
    linear-gradient(180deg, #070a10 0%, #0b0f17 50%, #070a10 100%);
  line-height: 1.55;
}

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.muted{ color: var(--muted); }
.center{ display:flex; justify-content:center; margin-top: 1.2rem; }

::selection { background: rgba(185,149,85,0.35); }

/* --------- Accessibility: Skip link --------- */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #0e1422;
  border: 1px solid var(--stroke);
  color: var(--text);
  z-index: 9999;
}
.skip-link:focus{ left: 14px; }

/* --------- Buttons --------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:focus-visible{
  outline: 3px solid rgba(106,166,255,0.55);
  outline-offset: 2px;
}

.btn-primary{
  background: linear-gradient(135deg, rgba(185,149,85,1), rgba(217,193,138,1));
  color: #0a0d14;
  box-shadow: 0 12px 30px rgba(185,149,85,0.22);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 40px rgba(185,149,85,0.28); }

.btn-ghost{
  border-color: var(--stroke);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn-sm{ padding: .6rem .9rem; font-size: .92rem; }
.btn-block{ width: 100%; border-radius: 14px; }

/* --------- Header / Navbar --------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,22,0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  gap: 1rem;
}

.brand img{
  height: 80px;
  width: auto;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35));
}

/* Nav */
.site-nav{
  display: flex;
  align-items: center;
  gap: .55rem;
}
.nav-link{
  padding: .55rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

/* Dropdown */
.nav-dropdown{ position: relative; }
.dropdown-toggle{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.dropdown-toggle:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  min-width: 260px;
  padding: .55rem;
  border-radius: 16px;
  background: rgba(13,18,30,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  display: none;
}
.dropdown-menu a{
  display: flex;
  align-items: center;
  padding: .75rem .85rem;
  border-radius: 12px;
  color: var(--muted);
  transition: background .2s ease, color .2s ease;
}
.dropdown-menu a:hover{
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

/* Open dropdown on hover (desktop) */
@media (min-width: 980px){
  .nav-dropdown:hover .dropdown-menu{ display: block; }
  .nav-dropdown:hover .dropdown-toggle{ color: var(--text); }
}

/* Mobile hamburger */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}
.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(233,238,252,0.88);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

/* --------- Home Hero (no background image) --------- */
.hero{
  position: relative;
  padding: 4.4rem 0 3.2rem;
  overflow: hidden;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow{
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-size: .95rem;
  color: rgba(233,238,252,0.78);
  padding: .35rem .75rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.hero-copy h1{
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
.hero-copy .lead{
  margin-top: 1rem;
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.hero-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
  margin-top: 1.8rem;
}
.badge{
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.badge i{ color: var(--brand-2); }
.badge span{ color: rgba(233,238,252,0.85); font-size: .95rem; }

/* Right panel */
.hero-panel .panel-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.35rem 1.25rem;
}
.panel-card h3{ font-size: 1.2rem; }
.panel-card p{ margin-top: .6rem; color: var(--muted); }

.checklist{
  margin-top: 1rem;
  display: grid;
  gap: .55rem;
}
.checklist li{
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .65rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(233,238,252,0.86);
}
.checklist i{ color: rgba(106,166,255,0.95); }

.hero-fade{
  position: absolute;
  inset: auto 0 -1px 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(7,10,16,0.85), #070a10);
  pointer-events: none;
}

/* Decorative glow blobs (home hero only) */
.hero::before, .hero::after{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.hero::before{ left: -180px; top: -180px; background: rgba(106,166,255,0.45); }
.hero::after{ right: -220px; top: -220px; background: rgba(185,149,85,0.45); }


.practice-hero,
.contact-hero,
.hero.small-hero,
.hero-bg{
  position: relative;
  color: #fff;

  padding: clamp(90px, 10vw, 130px) 20px;
  min-height: clamp(320px, 55vh, 560px);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--hero-pos, 50% 50%);
  background-attachment: scroll;

  /* overlay + fallback image */
  background-image:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.58)),
    var(--hero-img, none);
}

/* Safari/WebKit retina */
@supports (background-image: -webkit-image-set(url("x.jpg") 1x)) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    background-image:
      linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.58)),
      -webkit-image-set(
        var(--hero-img) 1x,
        var(--hero-img-2x, var(--hero-img)) 2x
      );
  }
}

/* Modern browsers retina */
@supports (background-image: image-set(url("x.jpg") 1x)) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    background-image:
      linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.58)),
      image-set(
        var(--hero-img) 1x,
        var(--hero-img-2x, var(--hero-img)) 2x
      );
  }
}

/* Better cropping on phones */
@media (max-width: 600px) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    min-height: 360px;
    padding: 95px 16px 70px;
    background-position: var(--hero-pos-mobile, var(--hero-pos, 50% 35%));
  }
}

/* Taller on large screens */
@media (min-width: 1200px) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    min-height: 520px;
  }
}


/* Disable glow blobs on image-based heroes (prevents muddy backgrounds) */
.hero.small-hero::before,
.hero.small-hero::after,
.hero-bg::before,
.hero-bg::after{
  display: none !important;
}

/* Use image-set when supported */
@supports (background-image: image-set(url("x.jpg") 1x)) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    background-image:
      linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.58)),
      var(--hero-img-set, var(--hero-img, none));
  }
}

/* Better cropping on phones */
@media (max-width: 600px) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    min-height: 360px;
    padding: 95px 16px 70px;
    background-position: var(--hero-pos-mobile, var(--hero-pos, 50% 35%));
  }
}

/* Taller on large screens */
@media (min-width: 1200px) {
  .practice-hero,
  .contact-hero,
  .hero.small-hero,
  .hero-bg{
    min-height: 520px;
  }
}

/* --------- Sections --------- */
.section{ padding: 3.2rem 0; }
.section-alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head{
  display: grid;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.section-head h2{
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.01em;
}
.section-head p{ color: var(--muted); }

.split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.lead{
  font-size: 1.05rem;
  color: rgba(233,238,252,0.78);
}

/* Stats */
.stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
  margin: 1.4rem 0 1.2rem;
}
.stat{
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.stat-number{
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-2);
  letter-spacing: -0.02em;
}
.stat-label{
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .95rem;
}

/* Cards */
.card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.info-card{ padding: 1.3rem; }
.info-card h3{ font-size: 1.2rem; }
.info-card p{ margin-top: .6rem; color: var(--muted); }

.info-grid{
  margin-top: 1rem;
  display: grid;
  gap: .9rem;
}
.info-item{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .75rem;
  align-items: start;
  padding: .9rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.info-item i{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(185,149,85,0.16);
  border: 1px solid rgba(185,149,85,0.26);
  color: var(--brand-2);
}
.info-item h4{ font-size: 1.02rem; }
.info-item p{ margin-top: .2rem; color: var(--muted); font-size: .96rem; }

/* Grids */
.grid{ display: grid; gap: 1rem; }

.cards-5{
  grid-template-columns: repeat(5, minmax(0,1fr));
}
.practice-card{
  padding: 1.2rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.practice-card:hover{
  transform: translateY(-4px);
  border-color: rgba(185,149,85,0.28);
  background: linear-gradient(180deg, rgba(185,149,85,0.10), rgba(255,255,255,0.03));
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}
.practice-card .icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(106,166,255,0.12);
  border: 1px solid rgba(106,166,255,0.25);
  margin-bottom: .9rem;
}
.practice-card .icon i{ color: rgba(106,166,255,0.95); }
.practice-card h3{ font-size: 1.1rem; }
.practice-card p{ margin-top: .55rem; color: var(--muted); font-size: .98rem; }
.practice-card .link{
  margin-top: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(217,193,138,0.92);
  font-weight: 650;
}
.practice-card .link:hover{ color: var(--brand-2); }

/* Team */
.team-grid{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.team-card{
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.team-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}
.team-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.team-meta{
  padding: 1rem 1.1rem 1.15rem;
}
.team-meta h3{ font-size: 1.08rem; }
.team-meta p{ margin-top: .25rem; color: var(--muted); }

/* Testimonials */
.testimonials-grid{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.quote-card{
  padding: 1.25rem 1.25rem 1.15rem;
  position: relative;
}
.quote-card::before{
  content: "“";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(217,193,138,0.22);
}
.quote-card p{ color: rgba(233,238,252,0.85); }
.quote-card h4{
  margin-top: .85rem;
  font-size: .98rem;
  color: var(--brand-2);
}

/* CTA strip */
.cta-strip{
  padding: 2.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(185,149,85,0.18), transparent 60%),
    radial-gradient(700px 300px at 85% 40%, rgba(106,166,255,0.16), transparent 60%),
    rgba(255,255,255,0.02);
}
.cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-inner h2{
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.01em;
}
.cta-inner p{ margin-top: .5rem; color: var(--muted); max-width: 60ch; }
.cta-actions{
  display:flex;
  align-items:center;
  gap: .8rem;
  flex-wrap: wrap;
}

/* --------- Footer --------- */
.site-footer{
  padding: 2.8rem 0 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 1.8rem;
  align-items: start;
}

.footer-brand img{ height: 80px; width: auto; }
.site-footer h4{
  font-size: 1.02rem;
  margin-bottom: .7rem;
}

.site-footer ul li{ margin: .45rem 0; }
.site-footer ul li a{
  color: var(--muted);
  transition: color .2s ease;
}
.site-footer ul li a:hover{ color: var(--text); }

.footer-contact li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .7rem;
  align-items: start;
  color: var(--muted);
  margin: .6rem 0;
}
.footer-contact i{ color: rgba(217,193,138,0.9); margin-top: .15rem; }

.social{
  display: flex;
  gap: .6rem;
  margin-top: .9rem;
}
.social a{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(233,238,252,0.85);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.footer-bottom{
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(233,238,252,0.68);
  font-size: .95rem;
}

/* --------- Modal (scrollable) --------- */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1.5rem;
  z-index: 2000;
}
.modal[aria-hidden="false"]{ display: grid; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.modal-card{
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  border-radius: 22px;
  background: rgba(13,18,30,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.2rem;
}

.modal-close{
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(233,238,252,0.9);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.modal-close:hover{ background: rgba(255,255,255,0.09); transform: translateY(-1px); }

.modal-card h2{
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.modal-card .muted{ margin-top: .35rem; }

/* Form */
.form{ margin-top: 1.15rem; display: grid; gap: .95rem; }
.form-row label, .form-grid label{
  display: grid;
  gap: .45rem;
  color: rgba(233,238,252,0.85);
  font-size: .95rem;
}
.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .9rem;
}

input, textarea{
  width: 100%;
  padding: .8rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder{ color: rgba(233,238,252,0.45); }

input:focus, textarea:focus{
  border-color: rgba(106,166,255,0.55);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(106,166,255,0.12);
}

.form-note{
  margin-top: .9rem;
  font-size: .92rem;
  color: rgba(233,238,252,0.65);
}

/* --------- Toast (JS toggles .show) --------- */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(13,18,30,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-soft);
  color: rgba(233,238,252,0.9);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 2500;
}
.toast.show{
  transform: translateY(0);
  opacity: 1;
}

/* --------- Reveal animations --------- */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* --------- Responsive --------- */
@media (max-width: 1100px){
  .cards-5{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .hero-badges{ grid-template-columns: 1fr; }
}

@media (max-width: 980px){
  .nav-toggle{ display: inline-flex; }

  .site-nav{
    position: fixed;
    top: 72px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(13,18,30,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open{ display: flex; }

  .nav-link, .dropdown-toggle{ width: 100%; justify-content: space-between; }
  .dropdown-menu{
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    margin-top: .35rem;
  }
  .nav-dropdown.open .dropdown-menu{ display: grid; }

  .hero-inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .team-grid, .testimonials-grid{ grid-template-columns: 1fr; }
  .cards-5{ grid-template-columns: 1fr; }

  .cta-inner{ flex-direction: column; align-items: flex-start; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .form-grid{ grid-template-columns: 1fr; }
  .brand img{ height: 80px; }
  .hero{ padding: 3.6rem 0 2.6rem; }
}

/* --------- Reduced motion --------- */
@media (prefers-reduced-motion: reduce){
  html:focus-within { scroll-behavior: auto; }
  .reveal{ transition: none; transform: none; }
  .btn, .nav-link, .dropdown-toggle, .practice-card, .team-card, .toast{ transition: none; }
}
