*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0e1c2e;
  --navy-mid: #162640;
  --navy-light: #1e3557;
  --gold: #b8982a;
  --gold-light: #d4af54;
  --gold-pale: #f0e6c0;
  --cream: #f8f5ee;
  --offwhite: #fdfcf9;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #8a8a8a;
  --border: rgba(184, 152, 42, 0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--offwhite);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ─── UTILITY ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-rule.center {
  margin-left: auto;
  margin-right: auto;
}
.overline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HEADER ─── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 28, 46, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 152, 42, 0.18);
  transition: box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-primary {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.logo-secondary {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--gold-light);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(30, 53, 87, 0.6) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(184, 152, 42, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #0e1c2e 0%, #162640 50%, #0a1420 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 152, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 152, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 7rem 2rem 4rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184, 152, 42, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── SECTION BASES ─── */
section {
  padding: 6rem 0;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h2 em {
  font-style: italic;
  color: var(--gold);
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
}

p {
  color: var(--text-mid);
  line-height: 1.8;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-frame {
  background: var(--navy);
  aspect-ratio: 4/5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.about-frame-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.about-monogram {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184, 152, 42, 0.3);
  line-height: 1;
  letter-spacing: -0.05em;
}
.about-frame-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.about-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0.3;
}
.about-accent2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0.2;
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.about-badge strong {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-num em {
  color: var(--gold);
  font-style: normal;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.4rem;
  display: block;
}

/* ─── PRACTICE AREAS ─── */
#practice {
  background: var(--navy);
}
#practice h2 {
  color: #fff;
}
#practice h2 em {
  color: var(--gold-light);
}
#practice p {
  color: rgba(255, 255, 255, 0.6);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(184, 152, 42, 0.15);
  border: 1px solid rgba(184, 152, 42, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 3rem;
}

.practice-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.practice-card:hover {
  background: rgba(30, 53, 87, 0.9);
}
.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  display: block;
  opacity: 0.8;
}

.practice-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.practice-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.practice-card .practice-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184, 152, 42, 0.08);
  line-height: 1;
}

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

.why-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-item {
  padding: 2rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}
.why-item:hover {
  border-color: var(--gold);
}
.why-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.why-item p {
  font-size: 0.9rem;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

/* ─── ABOUT PAGE ─── */
#about-full {
  background: var(--offwhite);
}

.timeline {
  position: relative;
  margin-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  padding: 0 0 3rem 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.timeline-item h3 {
  margin-bottom: 0.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.value-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  text-align: center;
}
.value-card h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.value-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}
.contact-details p {
  font-size: 0.9rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-dark);
}
.contact-info-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover {
  color: var(--gold);
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  background: var(--offwhite);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.25s;
}
.btn-submit:hover {
  background: var(--navy-light);
}

.map-container {
  margin-top: 4rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 380px;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(30, 53, 87, 0.5) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0e1c2e 0%, #162640 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ─── FOOTER ─── */
footer {
  background: #070f1a;
  color: rgba(255, 255, 255, 0.5);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(184, 152, 42, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-primary {
  font-size: 1rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li {
  font-size: 0.82rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
}

/* ─── NAV MOBILE ─── */
@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(184, 152, 42, 0.15);
  }
  nav.open {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-badge {
    right: 0;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-grid .about-visual {
    order: -1;
  }
}

/* ─── PAGE SECTIONS ─── */
.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

/* Page nav */
.page-nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  display: flex;
  justify-content: center;
}
.page-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.page-nav a:hover,
.page-nav a.active {
  color: var(--navy);
  border-color: var(--gold);
}

/* Single page JS sections */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}

/* ─── TESTIMONIAL CAROUSEL ─── */
.testimonial-carousel {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.testimonial-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(184, 152, 42, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.carousel-header {
  text-align: center;
  margin-bottom: 3rem;
}
.carousel-header .overline {
  color: var(--gold-light);
}
.carousel-header h2 {
  color: #fff;
  margin-top: 0.5rem;
}
.carousel-track-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4rem;
}
.carousel-track {
  overflow: hidden;
}
.carousel-slides {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 0.5rem;
  text-align: center;
}
.carousel-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  position: relative;
}
.carousel-slide blockquote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0;
  color: var(--gold);
  opacity: 0.5;
  position: absolute;
  top: 0.6rem;
  left: -1.2rem;
}
.carousel-slide cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1.5rem;
}
.carousel-slide .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.25rem;
}
.carousel-slide .stars span {
  color: var(--gold);
  font-size: 0.85rem;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(184, 152, 42, 0.12);
  border: 1px solid rgba(184, 152, 42, 0.3);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition:
    background 0.2s,
    border-color 0.2s;
  z-index: 2;
}
.carousel-btn:hover {
  background: rgba(184, 152, 42, 0.25);
  border-color: var(--gold);
}
.carousel-btn.prev {
  left: 0;
}
.carousel-btn.next {
  right: 0;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}
.carousel-dot {
  width: 24px;
  height: 2px;
  background: rgba(184, 152, 42, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  width: 40px;
}
/* ─── PRACTICE PAGE LAYOUT ─── */
.practice-detail-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.practice-service-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.practice-service-tag {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 2px solid var(--border);
  font-size: 0.85rem;
}

/* ─── PRACTICE PAGE MOBILE ─── */
@media (max-width: 640px) {
  .practice-detail-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .practice-service-tags {
    grid-template-columns: 1fr;
  }
  #page-practice .page-hero {
    padding: 6rem 0 3rem;
  }
  #page-practice section {
    padding: 3rem 0;
  }
  #page-practice .container > div[style*='padding: 3.5rem'] {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .practice-detail-heading {
    font-size: 1.6rem !important;
  }
}

/* ─── ABOUT PAGE MOBILE ─── */
.about-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-page-sidebar .about-frame {
  max-width: 100%;
}

@media (max-width: 860px) {
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-page-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .about-page-sidebar .about-frame {
    grid-column: 1 / -1;
    max-width: 100%;
    aspect-ratio: unset;
    height: auto;
    overflow: visible;
  }
  .about-page-sidebar .about-frame-inner {
    position: relative;
    inset: unset;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    border-radius: 2px;
  }
  .about-page-sidebar .about-monogram {
    font-size: 2rem !important;
    flex-shrink: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }
  .about-page-sidebar .about-monogram br {
    display: none;
  }
}

@media (max-width: 540px) {
  .about-page-sidebar {
    grid-template-columns: 1fr;
  }
  .about-page-sidebar .about-frame {
    aspect-ratio: unset;
    height: auto;
    overflow: visible;
  }
  .about-page-sidebar .about-frame-inner {
    position: relative;
    inset: unset;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 2px;
  }
  .about-page-sidebar .about-monogram {
    font-size: 2rem !important;
  }
  .about-page-sidebar .about-monogram br {
    display: inline;
  }
  .timeline-item {
    padding-left: 1.75rem;
  }
  #page-about .page-hero {
    padding: 6rem 0 3rem;
  }
}

/* ─── LEGAL PAGES ─── */
.legal-body {
  max-width: 780px;
}
.legal-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.legal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
