/* ============================================================
   LawLegus.com — Main Stylesheet
   Vikram Kapoor & Co. | Advocates & Associates | New Delhi
   ============================================================ */

/* ─── TOKENS ─── */
:root {
  --gold:       #8B6914;
  --gold-mid:   #B8922A;
  --gold-light: #D4A843;
  --gold-pale:  #F5EDD4;
  --gold-bg:    #FDF8EE;
  --dark:       #18181F;
  --dark2:      #2A2A35;
  --ink:        #1E1E28;
  --ink2:       #3C3C4E;
  --mid:        #6B6B80;
  --muted:      #9090A4;
  --border:     #E2DAC8;
  --border-mid: #CEC5B0;
  --bg:         #FAFAF7;
  --bg2:        #F4F1EA;
  --bg3:        #EEEAE0;
  --white:      #FFFFFF;
  --cream:      #FAF7F0;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 300;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-mid); border-radius: 2px; }

/* ─── ANNOUNCE BAR ─── */
.announce {
  background: var(--ink);
  text-align: center;
  padding: 9px 5%;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 72px;
}

/* ─── NAVIGATION ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  height: 62px;
  box-shadow: 0 2px 24px rgba(139, 105, 20, 0.08);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-size: 18px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.5px;
  background: var(--gold-bg);
}
.nav-logo-text {
  font-family: 'Cormorant Garant', serif;
  font-size: 17px; font-weight: 600; color: var(--ink);
  letter-spacing: 1px; text-transform: uppercase; line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 9.5px; font-weight: 400;
  font-family: 'Jost', sans-serif;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid);
  font-size: 11.5px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold-mid); transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border: 1.5px solid var(--gold-mid) !important;
  color: var(--gold) !important;
  background: var(--gold-bg) !important;
}
.nav-cta:hover { background: var(--gold-mid) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--gold); font-size: 22px;
}

/* ─── HERO ─── */
#hero {
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  padding: 100px 5% 8vh;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Right image panel */
.hero-image-panel {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-image-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    var(--cream) 0%,
    rgba(250, 247, 240, 0.55) 18%,
    rgba(253, 248, 238, 0.18) 50%,
    transparent 100%
  );
}
.hero-image-border {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  border-left: 1px solid var(--border-mid);
  pointer-events: none;
  z-index: 2;
}

.hero-line {
  position: absolute; top: 0; left: 13%;
  width: 1px; height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(139, 105, 20, 0.2) 30%,
    rgba(139, 105, 20, 0.1) 70%,
    transparent
  );
  pointer-events: none;
}

.hero-content { position: relative; z-index: 3; max-width: 680px; }

.hero-eyebrow {
  font-size: 10.5px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1.5px; background: var(--gold-mid);
}

.hero-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(50px, 6.5vw, 90px);
  font-weight: 300; line-height: 1.0;
  color: var(--ink); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 15px; line-height: 1.9; font-weight: 300;
  color: var(--mid); max-width: 500px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 18px; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}

/* Stats (right side, desktop only) */
.hero-stats {
  position: absolute; right: 5%; bottom: 10vh; z-index: 3;
  display: flex; flex-direction: column; gap: 36px;
  opacity: 0; animation: fadeIn 1s 1s forwards;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1;
  text-shadow: 0 1px 4px rgba(255,255,255,0.8);
}
.stat-label { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 36px; height: 1px; background: var(--border-mid); margin-left: auto; margin-top: 10px; }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── BUTTONS ─── */
.btn-primary {
  padding: 14px 34px;
  background: var(--gold); color: var(--white);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.25);
}
.btn-outline {
  padding: 13px 32px;
  background: transparent; color: var(--ink);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--border-mid);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-outline:hover { border-color: var(--gold-mid); color: var(--gold); transform: translateY(-2px); }

/* ─── SECTION COMMONS ─── */
section { padding: 100px 5%; }

.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1.5px; background: var(--gold-mid);
}

.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body { font-size: 15px; line-height: 1.9; color: var(--mid); max-width: 600px; }
.gold-sep { width: 44px; height: 2px; background: var(--gold-mid); margin: 24px 0; }

/* ─── ABOUT ─── */
#about { background: var(--white); }

.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-left { position: sticky; top: 100px; }

.about-block { margin-bottom: 36px; }
.about-block h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px; font-weight: 500; color: var(--gold); margin-bottom: 10px;
}
.about-block p { font-size: 14.5px; line-height: 1.9; color: var(--mid); }

.about-divider { width: 100%; height: 1px; background: var(--border); margin: 28px 0; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-mid); background: var(--gold-bg);
  font-size: 10.5px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}

/* ─── PRACTICE AREAS ─── */
#practice { background: var(--bg2); }

.practice-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
}
.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.practice-card {
  background: var(--white); padding: 42px 34px;
  transition: background 0.3s; position: relative; overflow: hidden; cursor: default;
}
.practice-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-mid);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.practice-card:hover { background: var(--gold-bg); }
.practice-card:hover::before { transform: scaleX(1); }

.practice-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 11px; font-weight: 300; color: var(--muted); letter-spacing: 3px; margin-bottom: 18px;
}
.practice-icon { width: 42px; height: 42px; margin-bottom: 22px; color: var(--gold-mid); opacity: 0.75; transition: opacity 0.3s; }
.practice-card:hover .practice-icon { opacity: 1; }
.practice-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 23px; font-weight: 500; color: var(--ink); margin-bottom: 12px; line-height: 1.2;
}
.practice-desc { font-size: 13.5px; line-height: 1.85; color: var(--mid); }
.practice-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: 10.5px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); transition: gap 0.2s;
}
.practice-card:hover .practice-arrow { gap: 14px; }

/* ─── ATTORNEYS ─── */
#attorneys { background: var(--white); }

.attorneys-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.attorney-card {
  border: 1px solid var(--border); background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s; overflow: hidden;
}
.attorney-card:hover { border-color: var(--gold-light); box-shadow: 0 8px 40px rgba(139, 105, 20, 0.1); }

.attorney-header {
  padding: 36px 36px 28px;
  display: flex; gap: 24px; align-items: flex-start;
  border-bottom: 1px solid var(--border); background: var(--cream);
}
.attorney-avatar {
  width: 76px; height: 76px; flex-shrink: 0;
  background: var(--gold-bg); border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-size: 26px; font-weight: 500; color: var(--gold);
}
.attorney-meta { flex: 1; }
.attorney-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 27px; font-weight: 500; color: var(--ink); line-height: 1.1; margin-bottom: 5px;
}
.attorney-title { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.attorney-firm { font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.attorney-bar { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.attorney-bar strong { color: var(--gold); font-weight: 500; }

.attorney-body { padding: 28px 36px; }
.attorney-bio { font-size: 13.5px; line-height: 1.9; color: var(--mid); margin-bottom: 24px; }
.attorney-courts { margin-bottom: 24px; }
.attorney-courts-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.court-list { display: flex; flex-direction: column; gap: 7px; }
.court-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); }
.court-dot { width: 4px; height: 4px; background: var(--gold-mid); flex-shrink: 0; }

.attorney-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  padding: 4px 13px;
  border: 1px solid var(--border-mid); background: var(--gold-bg);
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
}

/* ─── SERVICES ─── */
#services { background: var(--bg2); }

.services-layout { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.services-sticky { position: sticky; top: 100px; }

.service-item {
  padding: 26px 0; border-bottom: 1px solid var(--border);
  cursor: default; transition: padding-left 0.25s;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 8px; }

.service-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 9px; gap: 16px; }
.service-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 21px; font-weight: 500; color: var(--ink);
}
.service-tag {
  font-size: 9.5px; letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid var(--border-mid); background: var(--gold-bg);
  flex-shrink: 0; height: fit-content;
}
.service-desc { font-size: 13.5px; line-height: 1.85; color: var(--mid); }

/* ─── WHY US ─── */
#why { background: var(--ink); }

.why-head { text-align: center; margin-bottom: 60px; }
.why-head .section-label { justify-content: center; }
.why-head .section-label::before { display: none; }
.why-head .section-title { color: var(--cream); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.06); }
.why-card { background: var(--ink); padding: 44px 28px; text-align: center; }
.why-icon {
  width: 50px; height: 50px; margin: 0 auto 22px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.why-title { font-family: 'Cormorant Garant', serif; font-size: 20px; font-weight: 500; color: var(--cream); margin-bottom: 12px; }
.why-text { font-size: 13px; line-height: 1.85; color: rgba(250, 247, 240, 0.5); }

/* ─── COURTS ─── */
#courts { background: var(--bg2); padding: 80px 5%; }

.courts-inner {
  border: 1px solid var(--border); padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  background: var(--white);
}
.courts-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.court-badge {
  padding: 16px 18px; border: 1px solid var(--border); background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.court-badge:hover { border-color: var(--gold-light); background: var(--gold-bg); }
.court-badge-name { font-size: 13.5px; color: var(--ink); margin-bottom: 4px; font-weight: 400; }
.court-badge-loc { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

/* ─── CONTACT ─── */
#contact { background: var(--white); }

.contact-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.form-input,
.form-select,
.form-textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--ink); font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 13px 16px; outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%; -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold-mid); background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { background-color: var(--bg); cursor: pointer; }
.form-select option { background: var(--white); color: var(--ink); }

.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border-mid); background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.contact-item-label { font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; font-weight: 600; }
.contact-item-value { font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.contact-item-value a { color: var(--gold); text-decoration: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); border-top: 3px solid var(--gold-mid);
  padding: 64px 5% 36px;
}
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 13px; line-height: 1.85; color: rgba(250, 247, 240, 0.45); margin-top: 16px; max-width: 280px; }
.footer-col-title { font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 13px; color: rgba(250, 247, 240, 0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11.5px; color: rgba(250, 247, 240, 0.3); letter-spacing: 0.5px; }
.footer-domain { font-size: 12px; color: var(--gold-light); letter-spacing: 2px; }

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ── TABLET (≤960px) ── */
@media (max-width: 960px) {
  .announce { font-size: 10px; letter-spacing: 1.5px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-logo-text { font-size: 15px; }

  .hero-title { font-size: clamp(40px, 8vw, 64px); }
  .hero-image-panel,
  .hero-image-border { display: none; }
  .hero-stats { display: none; }
  #hero { padding: 100px 5% 10vh; }

  .about-inner,
  .services-layout,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .attorneys-grid { grid-template-columns: 1fr; gap: 28px; }
  .courts-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .courts-list { grid-template-columns: 1fr 1fr; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .practice-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .about-left,
  .services-sticky { position: static; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 72px 5%; }
  #courts { padding: 64px 5%; }
  footer { padding: 52px 5% 32px; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  .announce {
    font-size: 9px; letter-spacing: 1px; padding: 8px 4%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-top: 64px;
  }
  #navbar { padding: 0 4%; height: 64px; }
  #navbar.scrolled { height: 56px; }
  .nav-logo-mark { width: 34px; height: 34px; font-size: 15px; }
  .nav-logo-text { font-size: 13px; letter-spacing: 0.5px; }
  .nav-logo-text span { font-size: 8.5px; letter-spacing: 2px; }

  #hero { padding: 100px 4% 9vh; }
  .hero-title { font-size: clamp(34px, 9.5vw, 52px); margin-bottom: 24px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 20px; }
  .hero-desc { font-size: 14px; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary,
  .btn-outline { width: 100%; text-align: center; padding: 14px 24px; }

  section { padding: 60px 4%; }
  #courts { padding: 48px 4%; }
  .section-title { font-size: clamp(28px, 7.5vw, 40px); }

  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { padding: 32px 24px; }

  .attorneys-grid { gap: 20px; }
  .attorney-header { padding: 24px 22px 20px; gap: 16px; }
  .attorney-avatar { width: 60px; height: 60px; font-size: 20px; }
  .attorney-name { font-size: 22px; }
  .attorney-body { padding: 22px 22px; }
  .attorney-bio { font-size: 13px; }

  .why-grid { grid-template-columns: 1fr; gap: 1px; }
  .why-card { padding: 36px 24px; }

  .courts-inner { padding: 28px 22px; gap: 28px; }
  .courts-list { grid-template-columns: 1fr; gap: 10px; }

  .service-item-top { flex-direction: column; gap: 8px; }
  .service-tag { align-self: flex-start; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 44px 4% 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .contact-item { gap: 14px; }

  /* Prevent iOS auto-zoom on inputs */
  .form-input,
  .form-select,
  .form-textarea { font-size: 16px; }
}

/* ── SMALL PHONES (≤390px) ── */
@media (max-width: 390px) {
  .hero-title { font-size: 30px; }
  .nav-logo-text { display: none; }
  .section-title { font-size: 26px; }
  .attorney-header { flex-direction: column; gap: 12px; }
  .attorney-avatar { width: 54px; height: 54px; }
  .hero-eyebrow::before { display: none; }
}
