:root {
  --navy: #0c1b2a;
  --navy-light: #162d46;
  --gold: #c4995c;
  --gold-light: #d4ad72;
  --cream: #f5f0e8;
  --warm-white: #fdfbf7;
  --slate: #3a4a5c;
  --text-light: #6b7280;
  --border: #e2ddd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--slate);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(196 153 92 / 18%);
  background: rgb(12 27 42 / 97%);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  width: min(100% - 48px, 1200px);
  height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.brand__name {
  color: var(--gold);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.05;
}

.brand__subline {
  margin-top: -1px;
  color: rgb(255 255 255 / 50%);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 9px;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.desktop-nav > a:not(.header-cta) {
  transition: color 0.2s ease;
}

.desktop-nav > a:not(.header-cta):hover,
.desktop-nav > a.is-active {
  color: var(--gold-light);
}

.header-cta,
.site-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 10px 22px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.header-cta:hover,
.site-cta:hover {
  box-shadow: 0 9px 24px rgb(0 0 0 / 18%);
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 24px;
}

.mobile-nav {
  padding: 8px 24px 20px;
  border-top: 1px solid rgb(196 153 92 / 13%);
  background: var(--navy);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
}

.mobile-nav a.is-active {
  color: var(--gold-light);
}

.attorney-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 24px 72px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
}

.attorney-hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgb(196 153 92 / 14%), transparent 32%),
    linear-gradient(115deg, transparent 58%, rgb(255 255 255 / 2%) 58%);
  pointer-events: none;
}

.attorney-hero__inner {
  position: relative;
  display: grid;
  width: min(100%, 1000px);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 240px 1fr;
  gap: 64px;
}

.attorney-hero__portrait-wrap {
  position: relative;
}

.attorney-hero__portrait-wrap::after {
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid rgb(196 153 92 / 55%);
  content: "";
}

.attorney-hero__portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 12%);
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 11px !important;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.attorney-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 400;
}

.attorney-role {
  margin: 12px 0 22px;
  color: var(--gold-light);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.attorney-summary {
  max-width: 650px;
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.attorney-layout {
  display: grid;
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  padding: 88px 0 96px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 72px;
}

.attorney-bio p {
  margin: 0 0 24px;
  color: var(--slate);
  font-size: 17px !important;
  line-height: 1.82 !important;
}

.attorney-bio p:first-child::first-letter {
  float: left;
  margin: 9px 8px 0 0;
  color: var(--gold);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 64px;
  line-height: 0.72;
}

.attorney-bio cite {
  color: var(--navy);
}

.attorney-credentials {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  background: #fff;
}

.credential-section {
  padding: 28px;
  border-bottom: 1px solid var(--border);
}

.credential-section:last-child {
  border-bottom: 0;
}

.credential-section h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.credential-section ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.credential-section li {
  position: relative;
  padding-left: 15px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

.credential-section li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.credential-section strong,
.credential-section span {
  display: block;
}

.credential-section strong {
  color: var(--navy);
}

.credential-section span {
  margin-top: 2px;
  color: var(--text-light);
}

.consultation-banner {
  display: flex;
  padding: 56px max(24px, calc((100% - 1100px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.consultation-banner h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
}

.site-cta {
  min-width: 160px;
  padding: 14px 32px;
}

.site-footer {
  display: flex;
  padding: 42px max(24px, calc((100% - 1100px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgb(255 255 255 / 48%);
  font-size: 12px;
}

.site-footer address {
  font-style: normal;
  line-height: 1.8;
}

.site-footer address strong {
  color: var(--gold-light);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 15px;
}

.site-footer address a {
  color: inherit;
  text-decoration: none;
}

.site-footer address a:hover,
.site-footer address a:focus-visible {
  color: var(--gold-light);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 15px;
    font-size: 11px;
  }

  .header-cta {
    padding: 9px 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .attorney-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .attorney-credentials {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    width: min(100% - 32px, 1200px);
  }

  .attorney-hero {
    padding: 116px 24px 60px;
  }

  .attorney-hero__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .attorney-hero__portrait-wrap {
    width: 180px;
  }

  .attorney-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .attorney-layout {
    width: min(100% - 36px, 1100px);
    padding: 64px 0 72px;
  }

  .attorney-bio p {
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  .consultation-banner,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-cta,
  .site-cta {
    transition: none;
  }
}
