/* =========================================================
   CALDWELL, BENNETT, THOMAS, TORAASON & MEAD, PLLC
   Modern Professional Website – Stylesheet
   ========================================================= */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-mid:   #243359;
  --gold:       #b8973a;
  --gold-light: #d4b05c;
  --gold-pale:  #f8f2e3;
  --white:      #ffffff;
  --off-white:  #f9f8f5;
  --light-gray: #f2f1ee;
  --mid-gray:   #888888;
  --text:       #2c2c2c;
  --text-light: #555555;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
  --header-h:   88px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section Padding ── */
.section-pad { padding: 96px 0; }

/* ── Backgrounds ── */
.bg-dark    { background: var(--navy); }
.bg-light   { background: var(--off-white); }
.bg-gold    { background: var(--gold); }

/* ── Typography ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 0;
}
.section-desc.light { color: rgba(255,255,255,0.8); }

.section-header.text-center { text-align: center; }
.section-header.text-center .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,151,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-text {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-text:hover { color: var(--gold); }

/* ── Text Align ── */
.text-center { text-align: center; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.site-header.scrolled {
  height: 70px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon { width: 44px; height: auto; }
.logo-main { height: 48px; width: auto; max-width: 260px; object-fit: contain; }
.site-header.scrolled .logo-main { height: 38px; }

.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition), background var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--gold); }
.arrow { font-size: 0.6rem; margin-top: 1px; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--gold-pale); color: var(--gold); padding-left: 26px; }

/* Nav CTA */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Header Contact */
.header-contact {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.58;
  transition: opacity 0.6s ease;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #2d5c8a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Left side: dark enough for text legibility; right side: lets lighthouse breathe */
  background:
    linear-gradient(
      to top,
      rgba(10, 18, 40, 0.72) 0%,
      rgba(10, 18, 40, 0.10) 40%,
      transparent 70%
    ),
    linear-gradient(
      to right,
      rgba(17, 27, 51, 0.90) 0%,
      rgba(17, 27, 51, 0.70) 38%,
      rgba(17, 27, 51, 0.30) 68%,
      rgba(17, 27, 51, 0.10) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,176,92,0.5);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  background: rgba(184,151,58,0.1);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(212,176,92,0.8));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.intro-cta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 32px; }

.intro-lighthouse {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.intro-lighthouse img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.lighthouse-caption {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 16px 24px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lighthouse-caption svg { flex-shrink: 0; color: var(--gold-light); }

.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.stat {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ===========================
   PRACTICE AREAS
   =========================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.practice-card {
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  text-decoration: none;
}
.practice-card:hover {
  background: rgba(184,151,58,0.12);
  border-color: rgba(184,151,58,0.3);
  transform: translateY(-4px);
}
.practice-icon {
  width: 56px;
  height: 56px;
  background: rgba(184,151,58,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-light);
  transition: background var(--transition);
}
.practice-card:hover .practice-icon { background: rgba(184,151,58,0.25); }
.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.practice-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  flex: 1;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===========================
   WHY US
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.why-content p { color: var(--text-light); margin-bottom: 32px; font-size: 1.02rem; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon.gold { background: var(--gold-pale); color: var(--gold); }
.feature h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

.values-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 24px;
}
.values-icon { color: var(--gold-light); margin-bottom: 20px; }
.values-icon svg { margin: 0 auto; }
.values-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.values-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}
.values-list li:last-child { border-bottom: none; }

.contact-card {
  background: var(--gold-pale);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.92rem;
}

/* ===========================
   ATTORNEYS
   =========================== */
.attorney-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.attorney-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  display: block;
}
.attorney-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.attorney-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-gray);
}
.attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition);
}
.attorney-card:hover .attorney-photo img { transform: scale(1.05); }
.attorney-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.attorney-card:hover .attorney-overlay { opacity: 1; }
.attorney-overlay span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 16px;
  border-radius: 30px;
}
.attorney-info {
  padding: 20px;
  border-top: 3px solid var(--gold);
}
.attorney-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.attorney-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.attorney-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ===========================
   TESTIMONIAL STRIP
   =========================== */
.testimonial-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-icon { color: rgba(255,255,255,0.25); margin: 0 auto 20px; }
.testimonial-content blockquote p {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}
.testimonial-content cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===========================
   WHAT WE HANDLE
   =========================== */
.handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.handle-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: var(--text);
  transition: all var(--transition);
}
.handle-item:hover {
  background: var(--gold-pale);
  transform: translateX(4px);
}
.handle-check {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }

.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-links h4,
.footer-contact-info h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-light); }

.footer-contact-info address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-info address p svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-contact-info address a { color: rgba(255,255,255,0.8); }
.footer-contact-info address a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 120px 0 80px;
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/lighthouse-banner.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; }
.page-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
}

/* ===========================
   ATTORNEY PROFILE PAGE
   =========================== */
.attorney-profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}
.attorney-sidebar-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.attorney-sidebar-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.attorney-sidebar-info {
  padding: 28px;
  border-top: 4px solid var(--gold);
}
.attorney-sidebar-info h1 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.attorney-sidebar-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.attorney-contact-list { display: flex; flex-direction: column; gap: 10px; }
.attorney-contact-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--navy);
}
.attorney-contact-list a:hover { color: var(--gold); }

.attorney-bio h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
}
.attorney-bio h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.attorney-bio p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.attorney-bio ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.attorney-bio ul li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}
.attorney-bio ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===========================
   ATTORNEYS LIST PAGE
   =========================== */
.attorneys-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0;
}
.attorney-list-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: all var(--transition);
}
.attorney-list-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.attorney-list-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform var(--transition);
}
.attorney-list-card:hover .attorney-list-photo { transform: scale(1.03); }
.attorney-list-info { padding: 28px; border-top: 4px solid var(--gold); }
.attorney-list-info h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.attorney-list-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.attorney-list-info p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.attorney-list-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===========================
   PRACTICE AREAS PAGE
   =========================== */
.pa-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}
.pa-section:last-child { border-bottom: none; }
.pa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pa-grid.reverse { direction: rtl; }
.pa-grid.reverse > * { direction: ltr; }
.pa-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.pa-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.pa-visual {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pa-icon {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.pa-visual h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pa-visual p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  padding: 80px 0;
}
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 16px; }

.contact-info-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
}
.contact-info-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 32px;
}
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(184,151,58,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  display: block;
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--gold-light); }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro { padding: 80px 0 60px; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.about-lighthouse img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.values-section { padding: 80px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.value-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.value-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .attorney-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .section-pad { padding: 64px 0; }
  .intro-grid,
  .about-intro-grid,
  .pa-grid,
  .contact-grid,
  .attorney-profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .pa-grid.reverse { direction: ltr; }
  .attorneys-list-grid { grid-template-columns: repeat(2, 1fr); }
  .handle-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-box { grid-template-columns: repeat(3, 1fr); }

  .main-nav, .header-contact { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open > ul { flex-direction: column; gap: 0; }
  .main-nav.open > ul > li > a { padding: 14px 0; border-bottom: 1px solid var(--light-gray); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 3px solid var(--gold); margin-left: 16px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; }
  .attorney-cards { grid-template-columns: repeat(2, 1fr); }
  .attorneys-list-grid { grid-template-columns: 1fr; }
  .handle-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .why-sidebar { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .stats-box { grid-template-columns: 1fr; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
