/* ============================
   CSS CUSTOM PROPERTIES
============================ */
:root {
  --plum-deep: #261329;
  --plum-mid: #311835;
  --plum-glow: #3d1f42;
  --gold: #C5A45A;
  --gold-light: #D4B76E;
  --gold-dark: #A8893D;
  --warm-bg: #F8F2ED;
  --gray-bg: #F5F5F5;
  --dark-bg: #0A0808;
  --body-text: #666666;
  --body-text-light: #999999;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --plum-overlay: rgba(38,19,41,0.85);
  --dark-overlay: rgba(10,8,8,0.78);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', Helvetica, Arial, sans-serif;

  --container-max: 1240px;
  --container-narrow: 860px;
  --header-height: 90px;
  --header-height-scrolled: 70px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-base: 0.4s var(--ease-out-expo);
}

/* ============================
   RESET & BASE
============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================
   TYPOGRAPHY
============================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--plum-deep);
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-heading--light { color: var(--white); }

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 1rem;
}

.section-heading--center { text-align: center; }
.section-heading--center::after { margin-left: auto; margin-right: auto; }
.section-heading--light::after { background: var(--gold-light); }

/* ============================
   SCROLL REVEAL
============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal--right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__slideshow-img { animation: none !important; }
}

/* ============================
   SKIP LINK
============================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ============================
   HEADER
============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--plum-deep);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
  height: var(--header-height);
}

.header.is-scrolled {
  background: rgba(38, 19, 41, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  height: var(--header-height-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo img {
  height: 36px;
  width: auto;
  transition: height 0.4s ease;
}

.header.is-scrolled .header__logo img { height: 28px; }

.header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-70);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.header__phone a {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.header__phone-icon {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* Desktop Nav */
.nav { display: none; }

.nav__list {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav__item { position: relative; }

.nav__link {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--white-90);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out-expo);
  list-style: none;
  padding: 0.5rem 0;
  border-top: 3px solid var(--gold);
}

.nav__item:hover > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.65rem 1.5rem;
  color: var(--plum-deep);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}

.nav__dropdown a:hover {
  background: var(--warm-bg);
  color: var(--gold);
  padding-left: 1.8rem;
}

/* Sub-dropdown */
.nav__dropdown .nav__sub-dropdown {
  display: none;
  list-style: none;
  padding-left: 1rem;
}

.nav__dropdown li:hover > .nav__sub-dropdown { display: block; }

.nav__sub-dropdown a {
  font-size: 0.8rem;
  color: var(--body-text);
  padding: 0.45rem 1.5rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: var(--plum-deep);
  z-index: 1050;
  transition: right 0.4s var(--ease-out-expo);
  overflow-y: auto;
  padding: 100px 32px 40px;
}

.mobile-nav.is-open { right: 0; }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  list-style: none;
}

.mobile-nav__list a {
  display: block;
  padding: 0.9rem 0;
  color: var(--white-90);
  font-size: 1.1rem;
  font-family: var(--font-serif);
  border-bottom: 1px solid var(--white-08);
  transition: color 0.2s, padding-left 0.3s;
}

.mobile-nav__list a:hover {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

.mobile-nav__sub {
  list-style: none;
  padding-left: 1.2rem;
}

.mobile-nav__sub a {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--white-70);
  padding: 0.6rem 0;
}

.mobile-nav__sub .mobile-nav__sub a {
  font-size: 0.85rem;
  color: var(--white-40);
  padding: 0.4rem 0;
}

.mobile-nav__cta {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}

.mobile-nav__cta a {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}

.mobile-nav__cta .btn--email {
  background: var(--gold);
  color: var(--white);
}

.mobile-nav__cta .btn--call {
  background: var(--white-15);
  color: var(--white);
}

/* Mobile sticky bottom bar */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--plum-deep);
  border-top: 1px solid var(--white-15);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-bar a:first-child { border-right: 1px solid var(--white-15); }

.mobile-bar svg { width: 18px; height: 18px; fill: var(--gold); }

/* ============================
   HERO
============================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slideshow-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}

.hero__slideshow-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(38,19,41,0.92) 0%,
    rgba(49,24,53,0.75) 40%,
    rgba(38,19,41,0.65) 100%
  );
}

.hero__slideshow-img.is-active { opacity: 1; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero__eyebrow::before { right: 100%; }
.hero__eyebrow::after { left: 100%; }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 164, 90, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-40);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--plum {
  background: var(--plum-deep);
  color: var(--white);
}

.btn--plum:hover {
  background: var(--plum-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(38, 19, 41, 0.4);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-40);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero__scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--white-40);
  fill: none;
  stroke-width: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   TRUST BADGES
============================ */
.badges {
  background: var(--plum-deep);
  padding: 4rem 0;
  border-bottom: 1px solid var(--white-08);
}

.badges__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.badges__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.badges__item:hover { opacity: 1; }

.badges__item img {
  height: clamp(100px, 16vw, 140px);
  width: auto;
}

.badges__label {
  color: var(--white-70);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ============================
   PRACTICE AREAS
============================ */
.practice-areas {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.practice-areas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pa-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  transition: all 0.5s var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.pa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.pa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
  color: inherit;
}

.pa-card:hover::before { transform: scaleX(1); }

.pa-card__icon {
  width: 80px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.5s var(--ease-out-expo);
}

.pa-card:hover .pa-card__icon { transform: scale(1.08); }

.pa-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--plum-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.pa-card__text {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================
   RESOLVE GRID (25 Topics)
   ============================ */
.resolve-grid {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.resolve-grid__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 3rem;
}

.resolve-item {
  background: var(--plum-deep);
  border: 1px solid var(--white-15);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  transition: all 0.3s var(--ease-out-expo);
  cursor: default;
}

.resolve-item__text {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}

.resolve-item:hover {
  background: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: var(--gold-light);
}

.resolve-item:hover .resolve-item__text {
  color: var(--plum-deep);
}

@media (max-width: 1024px) {
  .resolve-grid__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .resolve-grid__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .resolve-item {
    padding: 20px 15px;
    min-height: 100px;
  }
}

@media (max-width: 480px) {
  .resolve-grid__container {
    grid-template-columns: 1fr;
  }
}

/* ============================
   PROVEN SUCCESS
   ============================ */
.proven {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--warm-bg);
  position: relative;
  overflow: hidden;
}

.proven__decor {
  position: absolute;
  top: 2rem;
  right: -2rem;
  width: 200px;
  opacity: 0.06;
  pointer-events: none;
}

.proven__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.proven__text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
}

.proven__text strong {
  color: var(--plum-deep);
  font-weight: 700;
}

.proven__divider {
  display: block;
  width: 180px;
  margin: 2.5rem auto 0;
  opacity: 0.4;
}

/* ============================
   TRUST & COMMUNICATION
============================ */
.trust {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark-bg);
  overflow: hidden;
}

.trust__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.daclawpractice.com/wp-content/uploads/sites/1403679/2022/10/wh-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
}

.trust__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,8,0.95) 0%, rgba(38,19,41,0.85) 100%);
}

.trust__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.trust__content .section-heading {
  color: var(--white);
}

.trust__text {
  color: var(--white-70);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 300;
}

/* ============================
   ATTORNEYS
============================ */
.attorneys {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gray-bg);
}

.attorneys__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.attorney-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--plum-deep);
  text-decoration: none;
}

.attorney-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s ease;
}

.attorney-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(38,19,41,0.95) 0%,
    rgba(38,19,41,0.3) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: background 0.4s ease;
}

.attorney-card:hover .attorney-card__photo {
  transform: scale(1.05);
}

.attorney-card:hover .attorney-card__overlay {
  background: linear-gradient(
    to top,
    rgba(197,164,90,0.85) 0%,
    rgba(38,19,41,0.4) 50%,
    transparent 100%
  );
}

.attorney-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
  transition: transform 0.4s var(--ease-out-expo);
}

.attorney-card:hover .attorney-card__name {
  transform: translateY(-4px);
}

.attorney-card__cta {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out-expo);
}

.attorney-card:hover .attorney-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   CONTACT CTA
============================ */
.contact-cta {
  display: grid;
  grid-template-columns: 1fr;
}

.contact-cta__image {
  height: 350px;
  overflow: hidden;
}

.contact-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta__content {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  background: var(--plum-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta__content .section-heading {
  color: var(--white);
}

.contact-cta__text {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.contact-cta__text a {
  color: var(--gold-light);
  font-weight: 700;
}

.contact-cta__coverage {
  font-style: italic;
  color: var(--white-40);
  font-size: 0.9rem;
}

.contact-cta__coverage strong {
  color: var(--gold-light);
  font-style: normal;
}

/* ============================
   TESTIMONIALS
============================ */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--warm-bg);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.testimonial-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 0.8rem;
  left: 1.2rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body-text);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-top: 1rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* ============================
   QUESTIONS CTA
============================ */
.questions {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--plum-mid);
  text-align: center;
}

.questions__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.questions__accent {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-light);
  font-weight: 600;
  font-style: italic;
}

.questions__btn {
  margin-top: 2rem;
}

/* ============================
   FOOTER
============================ */
.footer {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.daclawpractice.com/wp-content/uploads/sites/1403679/2023/01/DavidAChicarelli_FooterBG_2000x1372_002_001_ArtistSketch_JAN23.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.footer__content {
  position: relative;
  z-index: 2;
}

.footer__top {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--white-08);
}

.footer__top-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.footer__form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--white-08);
  border-radius: 8px;
  border: 1px solid var(--white-15);
  text-align: center;
}

.footer__form-placeholder p {
  color: var(--white-70);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer__col-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer__col-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.6rem;
}

.footer__address {
  color: var(--white-70);
  font-style: normal;
  line-height: 1.8;
  font-size: 0.92rem;
}

.footer__contact-line {
  color: var(--white-70);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.footer__contact-line strong {
  color: var(--white-90);
}

.footer__contact-line a {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--white-70);
}

.footer__social a:hover svg { fill: var(--white); }

.footer__office-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  background: var(--white-08);
  color: var(--white-90);
  border: 1px solid var(--white-15);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.footer__office-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--white-08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  color: var(--white-40);
  font-size: 0.78rem;
}

.footer__copyright a { color: var(--white-70); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  justify-content: center;
}

.footer__legal a {
  color: var(--white-40);
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--gold-light); }

.footer__attribution {
  color: var(--white-40);
  font-size: 0.72rem;
}

.footer__attribution a { color: var(--white-40); }
.footer__attribution a:hover { color: var(--gold-light); }

/* ============================
   BACK TO TOP
============================ */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--plum-deep);
  border: 1px solid var(--white-15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
  z-index: 800;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================
   RESPONSIVE
============================ */
@media (min-width: 600px) {
  .practice-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .attorneys__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .practice-areas__grid { grid-template-columns: repeat(4, 1fr); }
  .attorneys__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cta { grid-template-columns: 1fr 1fr; }
  .contact-cta__image { height: auto; min-height: 500px; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .header__phone { display: flex; }
  .mobile-bar { display: none; }

  .back-to-top { bottom: 30px; right: 30px; }
}

@media (max-width: 1023px) {
  body { padding-bottom: 52px; }

  .hero {
    min-height: 500px;
    max-height: 750px;
  }

  .trust__bg { background-attachment: scroll; }
}

/* Stagger children animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================
   SUBPAGE HERO (Page Banner)
============================ */
.page-hero {
  position: relative;
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--plum-deep);
  overflow: hidden;
  margin-top: var(--header-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://www.daclawpractice.com/wp-content/uploads/sites/1403679/2022/10/DavidAChicarelli_InternalBanner_2540x636_02_001_OCT22.jpg');
  opacity: 0.85;
  z-index: 1;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,19,41,0.35) 0%, rgba(49,24,53,0.3) 50%, rgba(38,19,41,0.25) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  font-style: italic;
}

.page-hero__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.2rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--white-40); }
.breadcrumb .sep { color: var(--white-40); margin: 0 0.2rem; }

/* ============================
   CONTENT SECTION (Subpages)
============================ */
.content-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.content-section--warm { background: var(--warm-bg); }
.content-section--gray { background: var(--gray-bg); }
.content-section--dark { background: var(--dark-bg); color: var(--white-70); }
.content-section--plum { background: var(--plum-deep); color: var(--white-70); }

.content-body {
  width: 100%;
  max-width: 100%;
  font-size: 1.05rem;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 600px) {
  .content-body {
    text-align: left;
    font-size: 1rem;
  }
}

.content-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 2.5rem 0 1rem;
  color: var(--plum-deep);
}

.content-body h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.content-body p {
  margin-bottom: 1.2rem;
}

.content-body ul, .content-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.content-body li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.content-body li::marker {
  color: var(--gold);
}

.content-body strong {
  color: var(--plum-deep);
  font-weight: 700;
}

.content-section--dark .content-body h2,
.content-section--dark .content-body strong,
.content-section--plum .content-body h2,
.content-section--plum .content-body strong {
  color: var(--white);
}

/* ============================
   ATTORNEY PROFILE (Subpages)
============================ */
.attorney-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.attorney-profile__sidebar {
  text-align: center;
}

.attorney-profile__photo {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.attorney-profile__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.attorney-profile__contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.attorney-profile__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.attorney-profile__practice-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.attorney-profile__practice-list li {
  padding: 6px 16px;
  background: var(--warm-bg);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--plum-deep);
  letter-spacing: 0.03em;
}

.attorney-profile__bio h3 {
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
  color: var(--plum-deep);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 0.5rem;
}

.attorney-profile__bio p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (min-width: 900px) {
  .attorney-profile {
    grid-template-columns: 320px 1fr;
  }
  .attorney-profile__sidebar { position: sticky; top: 110px; }
}

/* ============================
   PRACTICE AREAS SIDEBAR
============================ */
.pa-sidebar {
  background: var(--plum-deep);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.pa-sidebar__heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pa-sidebar__heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.6rem;
}

.pa-sidebar__list {
  list-style: none;
}

.pa-sidebar__list li {
  border-bottom: 1px solid var(--white-08);
}

.pa-sidebar__list a {
  display: block;
  padding: 0.7rem 0;
  color: var(--white-70);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.pa-sidebar__list a:hover {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

.pa-sidebar__list li:last-child { border-bottom: none; }

/* Two-column layout for practice area pages */
.pa-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .pa-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* ============================
   CONTACT FORM
============================ */
.contact-form {
  max-width: 700px;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--plum-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--plum-deep);
  transition: border-color 0.3s ease;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,164,90,0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

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

@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* CTA bar at bottom of subpages */
.page-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--plum-mid);
  text-align: center;
}

.page-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.page-cta__text {
  color: var(--white-70);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-cta__text a { color: var(--gold-light); font-weight: 700; }

.page-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   SOCIAL ICONS (Instagram Gold)
============================ */
.social-icon--instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--plum-deep);
  color: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  padding: 10px;
}
.social-icon--instagram svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  transition: all 0.3s ease;
}
.social-icon--instagram:hover {
  background: var(--gold);
  color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 164, 90, 0.4);
}
.social-icon--instagram:hover svg {
  fill: var(--plum-deep);
}

