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

:root {
  --dark:      #0d0b09;
  --dark-2:    #141009;
  --surface:   #1e1a14;
  --light:     #fafaf7;
  --light-2:   #f2ece2;
  --cream:     #f5f0e8;
  --ink:       #1a1612;
  --muted:     #7a7268;
  --soft:      #a8a198;
  --gold:      #c8952a;
  --gold-lt:   #e2af40;
  --gold-dim:  rgba(200,149,42,0.12);
  --bdark:     #2a2318;
  --blight:    #e0d8cc;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--light);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #fff; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal="fade-in"] { transform: none; }
[data-reveal="slide-left"]  { transform: translateX(-40px); }
[data-reveal="slide-right"] { transform: translateX(40px); }
[data-reveal].in-view       { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-stagger].in-view > *:nth-child(1) { opacity:1; transform:none; transition-delay:0ms; }
[data-stagger].in-view > *:nth-child(2) { opacity:1; transform:none; transition-delay:100ms; }
[data-stagger].in-view > *:nth-child(3) { opacity:1; transform:none; transition-delay:200ms; }
[data-stagger].in-view > *:nth-child(4) { opacity:1; transform:none; transition-delay:300ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * {
    transition: none !important; opacity: 1 !important; transform: none !important;
  }
  .hero-title, .hero-desc, .hero-since, .hero-bottom-right { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn-gold   { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,22,18,0.3);
}
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(26,22,18,0.04); }
.btn-arrow::after { content: '→'; font-size: 1em; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 5vw, 64px);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--blight);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 156px;
  width: auto;
  display: block;
}
.nav-logo span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  transition: background 0.2s, border-color 0.2s, color 0.35s !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: rgba(255,255,255,0.12) !important; border-color: #fff !important; }
.nav.scrolled .nav-cta { color: var(--ink) !important; border-color: rgba(26,22,18,0.3); }
.nav.scrolled .nav-cta:hover { background: rgba(26,22,18,0.05) !important; border-color: var(--ink) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.35s;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--dark-2);
  background-image:
    linear-gradient(160deg, rgba(5,4,2,0.9) 0%, rgba(5,4,2,0.6) 50%, rgba(5,4,2,0.88) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

/* description text — upper right */
.hero-desc {
  position: absolute;
  top: clamp(100px, 14vh, 160px);
  right: clamp(20px, 8vw, 100px);
  max-width: 340px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideDown 0.9s var(--ease-out) 0.5s forwards;
}

/* bottom row */
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(36px, 5vh, 60px) clamp(20px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.hero-left {}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: ruleGrow 0.5s var(--ease-out) 0.1s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold-lt);
}

.hero-since {
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 1.0s forwards;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-stats {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.hero-stat {}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-num span { color: var(--gold-lt); }
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
}

/* animations */
@keyframes fadeUp         { to { opacity: 1; transform: none; } }
@keyframes fadeSlideDown  { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes ruleGrow       { to { width: 40px; } }

/* ============================================================
   SECTION SHELL
============================================================ */
.section { padding: clamp(72px, 10vw, 128px) clamp(20px, 8vw, 100px); }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
}
.section-title.light { color: #fff; }
.section-title em { font-style: italic; color: var(--gold); }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--dark);
  padding: 28px clamp(20px, 8vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.trust-divider {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  min-width: 20px;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-item strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--light);
  border-bottom: 1px solid var(--blight);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 22px;
}
.about-quote em { font-style: italic; color: var(--gold); }

.about-body {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.about-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-right {}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 160px;
  gap: 12px;
}

.about-photo-grid .photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
}
.about-photo-grid .photo-secondary {
  grid-column: 2;
  grid-row: 1;
}
.about-photo-grid .photo-accent {
  grid-column: 2;
  grid-row: 2;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.about-photo-grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.photo-accent-text {
  text-align: center;
}
.photo-accent-text .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.photo-accent-text .label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ============================================================
   PRACTICE AREAS
============================================================ */
.practice {
  background: var(--dark);
}

.practice-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 72px);
  gap: 32px;
  flex-wrap: wrap;
}

.practice-intro {
  max-width: 360px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.practice-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: default;
  background: var(--surface);
}

.pc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
}
.practice-card:hover .pc-bg { transform: scale(1.05); }

.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.92) 0%, rgba(10,8,5,0.45) 50%, rgba(10,8,5,0.3) 100%);
}

.pc-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.pc-number {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.pc-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.pc-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.4s;
  opacity: 0;
}
.practice-card:hover .pc-desc {
  max-height: 80px;
  opacity: 1;
}

.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.pc-link::after { content: '→'; }
.practice-card:hover .pc-link { opacity: 1; transform: none; }

/* ============================================================
   PROCESS
============================================================ */
.process {
  background: var(--cream);
  border-bottom: 1px solid var(--blight);
}

.process-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }
.process-header .section-label::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--blight);
  z-index: 0;
}

.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   TEAM
============================================================ */
.team {
  background: var(--light);
  border-bottom: 1px solid var(--blight);
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 72px);
  gap: 32px;
  flex-wrap: wrap;
}

.team-intro {
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.attorney-card {
  background: var(--light-2);
  overflow: hidden;
  border: 1px solid var(--blight);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.attorney-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.attorney-photo {
  height: 320px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.attorney-photo img {
  height: 100%;
  object-position: top center;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.5s var(--ease-out);
}
.attorney-card:hover .attorney-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.attorney-info {
  padding: 22px 24px 26px;
  border-top: 2px solid var(--gold);
}

.attorney-role {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.attorney-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.attorney-bio {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--dark-2);
}

.testimonials-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: clamp(28px, 3.5vw, 44px);
  transition: background 0.3s;
}
.t-card:hover { background: rgba(255,255,255,0.06); }

.t-open {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
  user-select: none;
}

.t-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}

.t-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
}

.t-author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.t-author strong {
  display: block;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3px;
  font-weight: 600;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--light);
  border-top: 1px solid var(--blight);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin: 18px 0 24px;
}
.contact-title em { font-style: italic; color: var(--gold); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.cd-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.cd-value {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

.form-input, .form-select, .form-textarea {
  background: var(--cream);
  border: 1px solid var(--blight);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7268' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-select option { background: var(--light); color: var(--ink); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--soft); }

.form-submit { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  padding: clamp(40px, 5vw, 64px) clamp(20px, 8vw, 100px) 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bdark);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-col-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-desc {
    top: auto;
    right: 20px;
    left: 20px;
    bottom: auto;
    position: relative;
    max-width: none;
    display: none;
  }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .hero-stats { gap: 28px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo-grid { display: none; }

  .practice-grid { grid-template-columns: 1fr 1fr; }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid::before { display: none; }
  .process-step { padding: 0 0 36px; }

  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .practice-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 16px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.8rem; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGE HERO
============================================================ */
.page-hero {
  position: relative;
  height: clamp(320px, 42vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.28;
}
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5,4,2,0.88) 0%, rgba(5,4,2,0.5) 60%, rgba(5,4,2,0.82) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 8vw, 100px);
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.page-hero-title em { color: var(--gold-lt); font-style: italic; }

/* ============================================================
   PRACTICE AREAS — EXPANDED (hartwell-practice.html)
============================================================ */
.pa-section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 8vw, 100px);
  border-bottom: 1px solid var(--blight);
}
.pa-section:nth-child(odd) { background: var(--light); }
.pa-section:nth-child(even) { background: var(--light-2); }

.pa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.pa-section:nth-child(even) .pa-inner { direction: rtl; }
.pa-section:nth-child(even) .pa-inner > * { direction: ltr; }

.pa-num {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
}
.pa-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.pa-title em { font-style: italic; color: var(--gold); }
.pa-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.pa-matters-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  margin-bottom: 16px;
}
.pa-matters {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pa-matters li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.pa-matters li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.pa-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(15%);
}
.pa-stat-row {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--blight);
  margin-top: 8px;
}
.pa-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.pa-stat-num span { color: var(--gold); }
.pa-stat-label { font-size: 0.72rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }

@media (max-width: 860px) {
  .pa-inner { grid-template-columns: 1fr; direction: ltr; }
  .pa-section:nth-child(even) .pa-inner { direction: ltr; }
}

/* ============================================================
   ATTORNEYS — EXPANDED (hartwell-team.html)
============================================================ */
.attorney-card-full {
  background: var(--light-2);
  border: 1px solid var(--blight);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.attorney-card-full:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.attorney-photo-full {
  height: 360px;
  overflow: hidden;
  background: var(--surface);
}
.attorney-photo-full img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: filter 0.4s, transform 0.5s var(--ease-out);
}
.attorney-card-full:hover .attorney-photo-full img { filter: grayscale(0%); transform: scale(1.04); }
.attorney-info-full {
  padding: 24px 28px 28px;
  border-top: 2px solid var(--gold);
}
.attorney-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.attorney-spec {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 10px;
  background: var(--gold-dim);
}
.attorney-edu {
  font-size: 0.76rem;
  color: var(--soft);
  margin-top: 12px;
  line-height: 1.6;
}

.counsel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .counsel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .counsel-grid { grid-template-columns: 1fr; } }

.cta-band {
  background: var(--dark);
  padding: clamp(64px, 8vw, 100px) clamp(20px, 8vw, 100px);
  text-align: center;
}
.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-band-title em { color: var(--gold-lt); font-style: italic; }
.cta-band-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE (hartwell-contact.html)
============================================================ */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blight);
  border: 1px solid var(--blight);
  margin-top: 48px;
}
.office-card {
  background: var(--light);
  padding: 40px 36px;
}
.office-city {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.office-country {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.office-detail {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.office-detail strong { display: block; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); opacity: 0.45; margin-bottom: 3px; font-weight: 600; }

@media (max-width: 860px) { .offices-grid { grid-template-columns: 1fr; } }
