/* ================================================================
   SYLEJMANI & ASSOCIATES — Swiss Precision Redesign
   Fonts:   Cormorant Garamond (display) · DM Sans (body)
   Palette: Ivory #F5F3EF · Navy #1B2D50 · Gold #B8976A
   ================================================================ */

/* ── 0. Custom Properties ──────────────────────────────────────── */
:root {
  /* Colour */
  --ivory:        #F5F3EF;
  --ivory-dark:   #EDE9E1;
  --ink:          #1B2D50;
  --ink-soft:     #253D68;
  --ink-muted:    #607090;
  --gold:         #B8976A;
  --gold-dark:    #9A7D56;
  --gold-light:   #D4C09A;
  --dark:         #0B1729;
  --dark-2:       #0F2040;
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  /* Layout */
  --nav-h:        80px;
  --container:    1200px;
  /* Easing */
  --ease:         cubic-bezier(.25,.1,.25,1);
  --ease-out:     cubic-bezier(0,0,.2,1);
}

/* ── 1. Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--ivory);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; transition: color .2s var(--ease); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

/* ── 2. Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4rem;
}

/* Section kicker / label */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-label.light { color: var(--gold-light); }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
.section-title.light { color: var(--ivory); }
.accent-gradient { color: var(--gold); font-style: italic; }

.section-description {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-top: .75rem;
  line-height: 1.7;
}
.section-description.light { color: rgba(245,243,239,.5); }

/* Mobile animate — IntersectionObserver hook */
.mobile-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.mobile-animate.animate-in { opacity: 1; transform: none; }

/* ── 3. Loading Screen ─────────────────────────────────────────── */
.loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .65s var(--ease), visibility .65s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-content { text-align: center; }

.loading-logo {
  width: clamp(180px, 35vw, 300px);
  height: auto;
  animation: loadFadeUp .9s var(--ease-out) both;
}

@keyframes loadFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ── 4. Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.scrolled {
  border-color: rgba(15,14,12,.1);
  box-shadow: 0 1px 24px rgba(15,14,12,.06);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4rem;
  height: 100%;
  display: flex; align-items: center; gap: 3rem;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  margin-left: auto;
}
.nav-link {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover,
.nav-link.active { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.consult-btn {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--ink);
  padding: .65rem 1.5rem;
  border: 1px solid var(--ink);
  transition: background .22s var(--ease), color .22s var(--ease);
  white-space: nowrap;
  display: inline-block;
}
.consult-btn:hover {
  background: transparent;
  color: var(--ink);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── 5. Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.25rem;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
  position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 1; }
.btn-shine { display: none; }

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: #1c1a17;
  border-color: #1c1a17;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(15,14,12,.25);
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(15,14,12,.04);
}

.btn.full-width { width: 100%; }

/* Text-style CTA */
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color .2s var(--ease), border-color .2s;
}
.btn-outline:hover { color: var(--gold-dark); }
.btn-outline::after { content: '→'; font-size: .8em; }

/* ── 6. Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background layer */
.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

/* Logo watermark — half bleeds off right edge */
.hero-pattern {
  position: absolute;
  right: -18rem;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(24rem, 36vw, 42rem);
  height: clamp(24rem, 36vw, 42rem);
  background-image: url('/images/logo-watermark.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: .09;
  mix-blend-mode: multiply;
  user-select: none;
}

.floating-elements,
.float-element { display: none; }

.hero-content {
  flex: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-badge {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.08;
  color: var(--ink);
  max-width: 820px;
  letter-spacing: -.01em;
}
.hero-title .title-line { display: block; }
/* Keep accent span same colour in hero — all italic, no extra tint */
.hero-title .accent-gradient { color: var(--ink); font-style: italic; }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--gold);
  text-align: center;
}

.hero-buttons {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Stats bar — standalone block below hero */
.hero-stats {
  display: flex; align-items: stretch;
  background: var(--ivory-dark);
  border-top: 1px solid rgba(27,45,80,.12);
  border-bottom: 1px solid rgba(27,45,80,.12);
  padding: 0 4rem;
  justify-content: center;
}

.hero-stat {
  display: flex; flex-direction: column;
  padding: 2.25rem 3.5rem 2.25rem 0;
  gap: .3rem;
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-label {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.stat-separator {
  width: 1px;
  background: rgba(15,14,12,.1);
  margin: 2rem 3.5rem 2rem 0;
  align-self: stretch;
  flex-shrink: 0;
}

/* ── 7. About ──────────────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--ivory);
}

.about-grid { margin-bottom: 0; }

.about-text .lead-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2rem;
  max-width: 680px;
}

.about-text p {
  font-size: .92rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 660px;
}
.about-text p:last-of-type { margin-bottom: 0; }

/* Value items */
.value-props {
  margin-top: 3.5rem;
  margin-bottom: 2.75rem;
  border-top: 1px solid rgba(15,14,12,.1);
}

.value-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(15,14,12,.07);
}

.value-icon {
  width: 2rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: .15rem;
  background: none;
  border-radius: 0;
  padding: 0;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .3rem;
  line-height: 1.2;
}

.value-item p {
  font-size: .84rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── 8. Why Choose Us ──────────────────────────────────────────── */
.why-choose {
  padding: 8rem 0;
  background: var(--dark);
  color: var(--ivory);
}

.why-choose .section-label { color: var(--gold); }
.why-choose .section-title { color: var(--ivory); }
.why-choose .section-description { color: rgba(245,243,239,.45); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,243,239,.08);
}

.why-item {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid rgba(245,243,239,.08);
  display: flex; flex-direction: column;
}
.why-item:first-child  { padding-left: 0; }
.why-item:not(:first-child) { padding-left: 2.5rem; }
.why-item:last-child   { border-right: none; padding-right: 0; }

/* Gold italic number from data-num */
.why-item[data-num]::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
  opacity: .85;
}

.why-icon { display: none; }

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: .65rem;
  line-height: 1.2;
}

.why-item p {
  font-size: .84rem;
  font-weight: 300;
  color: rgba(245,243,239,.55);
  line-height: 1.75;
  margin: 0;
}

/* ── 9. Practice Areas ─────────────────────────────────────────── */
.practice-areas {
  padding: 8rem 0 0;
  background: var(--ivory);
}

.practice-areas .container { padding-bottom: 3rem; }

.practice-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4rem 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(15,14,12,.1);
  border-left: 1px solid rgba(15,14,12,.1);
}

.practice-card {
  padding: 2.75rem 2.5rem;
  border-right: 1px solid rgba(15,14,12,.1);
  border-bottom: 1px solid rgba(15,14,12,.1);
  display: flex; flex-direction: column;
  position: relative;
  background: var(--ivory);
  transition: background .25s var(--ease);
}
.practice-card:hover { background: var(--ivory-dark); }

/* Gold slide-in top accent on hover */
.practice-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.practice-card:hover::before { transform: scaleX(1); }

.practice-icon {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  padding: 0;
  flex-shrink: 0;
}
.practice-icon i {
  font-size: .95rem;
  color: var(--gold);
  display: block;
}

.practice-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.practice-card p {
  font-size: .84rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.75rem;
}

.card-link {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: gap .2s var(--ease), opacity .2s;
  align-self: flex-start;
}
.card-link::after { content: '→'; }
.card-link:hover { gap: .8rem; }

/* ── 10. Team ──────────────────────────────────────────────────── */
.team {
  padding: 8rem 0;
  background: var(--ivory-dark);
}

.team-grid { margin-top: 0; }

.member-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid rgba(15,14,12,.12);
  overflow: hidden;
  background: var(--ivory);
}

.member-image {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
  position: relative;
}
.image-overlay { display: none; }

.member-photo {
  width: 90px; height: 90px;
  border: 1px solid rgba(245,243,239,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,243,239,.4);
}
.member-photo::after { content: 'F.S'; }

.member-info {
  padding: 2rem 3.5rem 3.25rem;
  display: flex; flex-direction: column; gap: 1rem;
}

.member-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.member-role {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.member-info p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
  max-width: 560px;
}

.member-expertise {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: .5rem;
}

.expertise-tag {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid rgba(15,14,12,.15);
  padding: .35rem .8rem;
  transition: border-color .2s, color .2s;
}
.expertise-tag:hover { border-color: var(--gold); color: var(--gold-dark); }

.member-contact {
  display: flex; gap: .75rem;
  margin-top: .25rem;
}

.contact-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(15,14,12,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--ink-muted);
  transition: border-color .2s, color .2s;
}
.contact-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── 11. Contact Section ───────────────────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--dark);
  color: var(--ivory);
  position: relative;
}
.contact-background { display: none; }

.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--ivory); }
.contact .section-description { color: rgba(245,243,239,.45); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.info-cards {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(245,243,239,.1);
}

.info-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(245,243,239,.08);
}

.info-icon {
  width: 2rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .15rem;
  background: none;
  border-radius: 0;
  padding: 0;
}

.info-content h4 {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(245,243,239,.38);
  margin-bottom: .45rem;
}

.info-content p {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.7;
  margin: 0;
}

/* ── 12. Contact Form ──────────────────────────────────────────── */
.contact-form-wrapper {
  background: var(--dark-2);
  padding: 2.75rem 3rem 3rem;
  border: 1px solid rgba(245,243,239,.06);
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: .45rem; }

.form-group label {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(245,243,239,.38);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,243,239,.15);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  padding: .75rem 0;
  outline: none;
  width: 100%;
  transition: border-color .2s var(--ease);
  border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,243,239,.22); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(245,243,239,.35)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 1.5rem;
}
.form-group select option { background: var(--dark-2); color: var(--ivory); }

.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

/* Contact form submit overrides global btn-primary */
.contact-form .btn.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-size: .68rem;
  letter-spacing: .14em;
  padding: 1.1rem;
  margin-top: .25rem;
  transition: background .22s var(--ease), border-color .22s var(--ease);
}
.contact-form .btn.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.form-notice {
  font-size: .7rem;
  font-weight: 300;
  color: rgba(245,243,239,.28);
  text-align: center;
  line-height: 1.65;
}

.form-message { margin-bottom: 1rem; }

/* ── 13. Responsive — 1200px ───────────────────────────────────── */
@media (max-width: 1200px) {
  .container     { padding: 0 3rem; }
  .nav-container { padding: 0 3rem; }
  .hero-content  { padding: 6rem 3rem 4rem; }
  .hero-stats    { padding: 0 3rem; }
  .practice-grid { padding: 0 3rem 7rem; }
  .contact-wrapper { gap: 4rem; }
}

/* ── 14. Responsive — 992px ────────────────────────────────────── */
@media (max-width: 992px) {
  :root { --nav-h: 68px; }

  .container     { padding: 0 2.5rem; }
  .nav-container { padding: 0 2.5rem; }

  /* Mobile nav slide-in */
  .consult-btn { display: none; }
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(290px, 100vw);
    background: var(--ivory);
    flex-direction: column; align-items: flex-start;
    padding: calc(var(--nav-h) + 2rem) 2.5rem 3rem;
    gap: 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-left: 1px solid rgba(15,14,12,.1);
    box-shadow: -24px 0 60px rgba(15,14,12,.08);
    overflow-y: auto;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(15,14,12,.07);
  }
  .nav-link {
    display: block;
    padding: 1.1rem 0;
    font-size: .75rem;
    letter-spacing: .12em;
  }
  .nav-link::after { display: none; }

  .hero-content  { padding: 5rem 2.5rem 3.5rem; }
  .hero-stats    { padding: 0 2.5rem; }
  .practice-grid { padding: 0 2.5rem 6rem; grid-template-columns: repeat(2, 1fr); }
  .about, .why-choose, .practice-areas, .team, .contact { padding: 6rem 0; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { padding: 2rem; }
  .why-item:first-child       { padding-left: 2rem; }
  .why-item:not(:first-child) { padding-left: 2rem; }
  .why-item:last-child        { padding-right: 2rem; border-right: none; }
  .why-item:nth-child(even)   { border-right: none; }
  .why-item:nth-child(n+3)    { border-top: 1px solid rgba(245,243,239,.08); }

  .member-card { grid-template-columns: 240px 1fr; }
  .member-info { padding: 2.5rem; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* ── 15. Responsive — 768px ────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .container     { padding: 0 1.75rem; }
  .nav-container { padding: 0 1.75rem; }

  .about, .why-choose, .team, .contact { padding: 5rem 0; }
  .practice-areas { padding: 5rem 0 0; }
  .section-header { margin-bottom: 2.75rem; }

  .hero-content  { padding: 4rem 1.75rem 3rem; }
  .hero-stats    { padding: 0 1.75rem; }
  .hero-stat     { padding: 1.5rem 2.5rem 1.5rem 0; }
  .stat-separator { margin: 1.5rem 2.5rem 1.5rem 0; }

  .practice-grid { padding: 0 1.75rem 5rem; grid-template-columns: repeat(2, 1fr); }

  .member-card   { grid-template-columns: 1fr; }
  .member-image  { display: none; }
  .member-info   { padding: 2.5rem 1.75rem; }

  .contact-form-wrapper { padding: 2.25rem 2rem; }
}

/* ── 16. Responsive — 576px ────────────────────────────────────── */
@media (max-width: 576px) {
  .container     { padding: 0 1.25rem; }
  .nav-container { padding: 0 1.25rem; }

  .about, .why-choose, .team, .contact { padding: 4rem 0; }
  .practice-areas { padding: 4rem 0 0; }
  .section-header { margin-bottom: 2.25rem; }

  .hero-content  { padding: 3rem 1.25rem 2.5rem; }
  .hero          { min-height: auto; justify-content: flex-start; }
  .hero-content  { padding: 3rem 1.25rem 2rem; }
  .hero-pattern  { display: none; }
  .hero-stats    { padding: 0 1.25rem; flex-direction: column; align-items: center; }
  .hero-stat     { padding: 1.25rem 0; width: 100%; border-bottom: 1px solid rgba(15,14,12,.08); text-align: center; }
  .hero-stat:last-child { border-bottom: none; }
  .stat-separator { display: none; }

  .hero-buttons  { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }

  .practice-grid { padding: 0 1.25rem 4rem; grid-template-columns: 1fr; }
  .practice-card { padding: 2rem 1.25rem; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item {
    padding: 1.75rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(245,243,239,.08);
  }
  .why-item:first-child       { padding-left: 0; }
  .why-item:not(:first-child) { padding-left: 0; }
  .why-item:last-child        { border-bottom: none; }
  .why-item:nth-child(n+3)    { border-top: none; }

  .value-item { grid-template-columns: 1.5rem 1fr; gap: 1rem; }

  .contact-form-wrapper { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.5rem; }

  .member-info   { padding: 2rem 1.25rem; }
  .member-info h3 { font-size: 1.65rem; }
}


/* Map */
#map {
  height: 380px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid rgba(184,151,106,.2);
  filter: grayscale(30%) contrast(1.05);
}
