/* ============================================================
   Whitfield & Hale Estate Law — Demo Site Styles
   CSS Namespace: wh-
   Palette: ivory/parchment background, deep ink text,
            muted sage green, soft antique gold
   Fonts: Cormorant Garamond (display serif) + Karla (body sans)
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --wh-ivory: #f8f5ef;
  --wh-parchment: #f0ebe0;
  --wh-parchment-mid: #e8e0d0;
  --wh-rule: #d8d0c0;
  --wh-ink: #1a1812;
  --wh-ink-mid: #2e2a22;
  --wh-ink-light: #5a5548;
  --wh-ink-faint: #8a8278;
  --wh-sage: #6b7c6a;
  --wh-sage-light: #8a9e89;
  --wh-sage-pale: #e8ede7;
  --wh-gold: #9a7c44;
  --wh-gold-light: #b8985a;
  --wh-gold-pale: #f5f0e4;
  --wh-white: #ffffff;

  --wh-font-serif: 'Cormorant Garamond', Georgia, serif;
  --wh-font-sans: 'Karla', system-ui, -apple-system, sans-serif;

  --wh-max: 1180px;
  --wh-gutter: clamp(24px, 5vw, 80px);
  --wh-section-gap: clamp(72px, 10vw, 120px);

  --wh-radius: 3px;
  --wh-transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--wh-ivory);
  color: var(--wh-ink);
  font-family: var(--wh-font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--wh-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--wh-gold);
}

:focus-visible {
  outline: 2px solid var(--wh-gold);
  outline-offset: 3px;
  border-radius: var(--wh-radius);
}

/* ===== SKIP LINK ===== */
.wh-skip {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--wh-ink);
  color: var(--wh-ivory);
  padding: 10px 20px;
  font-family: var(--wh-font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--wh-radius);
  z-index: 9999;
  transition: top var(--wh-transition);
}

.wh-skip:focus {
  top: 16px;
}

/* ===== BUTTONS ===== */
.wh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wh-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--wh-radius);
  cursor: pointer;
  transition: background var(--wh-transition), color var(--wh-transition), border-color var(--wh-transition);
  white-space: nowrap;
}

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

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

.wh-btn--sage {
  background: var(--wh-sage);
  color: var(--wh-white);
  border-color: var(--wh-sage);
}

.wh-btn--sage:hover {
  background: var(--wh-sage-light);
  border-color: var(--wh-sage-light);
  color: var(--wh-white);
}

.wh-btn--outline-dark {
  background: transparent;
  color: var(--wh-ink);
  border-color: var(--wh-ink);
}

.wh-btn--outline-dark:hover {
  background: var(--wh-ink);
  color: var(--wh-ivory);
}

.wh-btn--ghost-light {
  background: transparent;
  color: var(--wh-ivory);
  border-color: rgba(248, 245, 239, 0.5);
}

.wh-btn--ghost-light:hover {
  background: rgba(248, 245, 239, 0.12);
  border-color: var(--wh-ivory);
  color: var(--wh-ivory);
}

.wh-btn--full {
  width: 100%;
  justify-content: center;
}

.wh-btn--text {
  background: none;
  border-color: transparent;
  color: var(--wh-ink-light);
  padding: 14px 0;
  font-size: 13px;
}

.wh-btn--text:hover {
  color: var(--wh-ink);
  background: none;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.wh-eyebrow {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wh-gold);
  display: block;
  margin-bottom: 16px;
}

.wh-eyebrow--light {
  color: rgba(248, 245, 239, 0.7);
}

.wh-h2 {
  font-family: var(--wh-font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--wh-ink);
}

.wh-h2 em {
  font-style: italic;
  color: var(--wh-sage);
}

.wh-section-lede {
  font-size: 18px;
  color: var(--wh-ink-light);
  max-width: 680px;
  margin-top: 20px;
  line-height: 1.65;
}

/* ===== SECTION HEADERS ===== */
.wh-section-head {
  margin-bottom: 56px;
}

.wh-section-head--center {
  text-align: center;
}

.wh-section-head--center .wh-section-lede {
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVIGATION ===== */
.wh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(248, 245, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wh-rule);
  transition: box-shadow var(--wh-transition);
}

.wh-nav[data-scrolled] {
  box-shadow: 0 2px 24px rgba(26, 24, 18, 0.08);
}

.wh-nav__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
  padding: 0 var(--wh-gutter);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--wh-ink);
  flex-shrink: 0;
}

.wh-brand:hover {
  color: var(--wh-ink);
}

.wh-brand__monogram {
  font-family: var(--wh-font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--wh-gold);
  border: 1.5px solid var(--wh-gold);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.wh-brand__name {
  font-family: var(--wh-font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.wh-brand__amp {
  font-style: italic;
  color: var(--wh-gold);
}

.wh-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.wh-nav__links a {
  font-family: var(--wh-font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-ink-light);
  text-decoration: none;
  transition: color var(--wh-transition);
}

.wh-nav__links a:hover {
  color: var(--wh-gold);
}

.wh-nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.wh-nav__phone {
  font-family: var(--wh-font-sans);
  font-size: 14px;
  color: var(--wh-ink-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.wh-nav__phone:hover {
  color: var(--wh-gold);
}

.wh-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--wh-ink);
}

.wh-nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--wh-transition), opacity var(--wh-transition);
}

.wh-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.wh-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.wh-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Drawer */
.wh-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--wh-ivory);
  z-index: 950;
  transform: translateX(100%);
  transition: transform 300ms ease;
  border-left: 1px solid var(--wh-rule);
  display: flex;
  flex-direction: column;
}

.wh-drawer:not([aria-hidden="true"]) {
  transform: translateX(0);
}

.wh-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--wh-rule);
}

.wh-drawer__logo {
  font-family: var(--wh-font-serif);
  font-size: 17px;
  color: var(--wh-ink);
}

.wh-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--wh-ink-light);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-drawer__close:hover {
  color: var(--wh-ink);
}

.wh-drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.wh-drawer__nav a {
  font-family: var(--wh-font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-ink-mid);
  text-decoration: none;
  padding: 14px 28px;
  border-bottom: 1px solid var(--wh-rule);
  transition: color var(--wh-transition), background var(--wh-transition);
}

.wh-drawer__nav a:last-child {
  border-bottom: none;
}

.wh-drawer__nav a:hover {
  color: var(--wh-gold);
  background: var(--wh-parchment);
}

.wh-drawer__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--wh-rule);
  font-size: 14px;
  color: var(--wh-ink-light);
  line-height: 1.6;
}

.wh-drawer__foot a {
  color: var(--wh-gold);
  text-decoration: none;
  font-weight: 500;
}

/* Overlay */
.wh-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 18, 0.4);
  z-index: 940;
}

.wh-drawer-overlay.wh-drawer-overlay--active {
  display: block;
}

/* ===== HERO ===== */
.wh-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 70px;
}

.wh-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.wh-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 18, 0.25) 0%,
    rgba(26, 24, 18, 0.5) 50%,
    rgba(26, 24, 18, 0.8) 100%
  );
}

.wh-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--wh-max);
  margin: 0 auto;
  padding: 80px var(--wh-gutter) 80px;
  width: 100%;
}

.wh-hero__title {
  font-family: var(--wh-font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--wh-ivory);
  margin-bottom: 28px;
  max-width: 800px;
}

.wh-hero__title em {
  font-style: italic;
  color: rgba(248, 245, 239, 0.8);
}

.wh-hero__lede {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(248, 245, 239, 0.85);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.wh-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wh-hero__foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(248, 245, 239, 0.2);
  background: rgba(26, 24, 18, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px var(--wh-gutter);
  font-family: var(--wh-font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.6);
  z-index: 3;
}

.wh-hero__foot-rule {
  width: 1px;
  height: 16px;
  background: rgba(248, 245, 239, 0.3);
  flex-shrink: 0;
}

/* ===== CREDIBILITY STRIP ===== */
.wh-cred {
  background: var(--wh-ink);
  color: var(--wh-ivory);
  padding: 0;
}

.wh-cred__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
  padding: 0 var(--wh-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.wh-cred__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 48px;
  gap: 4px;
}

.wh-cred__item strong {
  font-family: var(--wh-font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--wh-gold-light);
  letter-spacing: 0.02em;
}

.wh-cred__item span {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.55);
}

.wh-cred__divider {
  width: 1px;
  height: 40px;
  background: rgba(248, 245, 239, 0.15);
  flex-shrink: 0;
}

/* ===== EDITORIAL STATEMENT ===== */
.wh-statement {
  padding: var(--wh-section-gap) var(--wh-gutter);
  max-width: var(--wh-max);
  margin: 0 auto;
}

.wh-statement__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.wh-statement__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--wh-radius);
}

.wh-statement__aside-rule {
  height: 1px;
  background: var(--wh-rule);
  margin: 28px 0;
}

.wh-ledger {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wh-ledger__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--wh-rule);
  gap: 16px;
}

.wh-ledger__row dt {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wh-ink-faint);
}

.wh-ledger__row dd {
  font-family: var(--wh-font-sans);
  font-size: 13px;
  color: var(--wh-ink-mid);
  text-align: right;
}

.wh-statement__body {
  padding-top: 8px;
}

.wh-statement__body p {
  color: var(--wh-ink-mid);
  line-height: 1.75;
  margin-top: 20px;
  font-size: 17px;
}

.wh-statement__body .wh-h2 {
  margin-top: 12px;
}

/* ===== PULL QUOTE ===== */
.wh-pullquote {
  background: var(--wh-sage);
  padding: 80px var(--wh-gutter);
  position: relative;
  overflow: hidden;
}

.wh-pullquote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: calc(var(--wh-gutter) - 20px);
  font-family: var(--wh-font-serif);
  font-size: 280px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.wh-pullquote__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.wh-pullquote__text {
  font-family: var(--wh-font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--wh-ivory);
  margin-bottom: 32px;
}

.wh-pullquote__cite {
  display: block;
  font-family: var(--wh-font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.65);
  font-style: normal;
}

/* ===== SERVICES ===== */
.wh-services {
  padding: var(--wh-section-gap) var(--wh-gutter);
  background: var(--wh-parchment);
}

.wh-services__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
}

.wh-services__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wh-service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--wh-rule);
}

.wh-service-item:last-child {
  border-bottom: none;
}

.wh-service-num {
  font-family: var(--wh-font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--wh-gold);
  letter-spacing: 0.08em;
  padding-top: 6px;
}

.wh-service-body h3 {
  font-family: var(--wh-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--wh-ink);
  margin-bottom: 14px;
}

.wh-service-body p {
  font-size: 16px;
  color: var(--wh-ink-light);
  line-height: 1.75;
}

/* ===== TOOLS ===== */
.wh-tools {
  padding: var(--wh-section-gap) var(--wh-gutter);
}

.wh-tools__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
}

.wh-tools__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.wh-tool {
  background: var(--wh-parchment);
  border: 1px solid var(--wh-rule);
  border-radius: var(--wh-radius);
  overflow: hidden;
}

.wh-tool__header {
  padding: 36px 40px 32px;
  border-bottom: 1px solid var(--wh-rule);
}

.wh-tool__title {
  font-family: var(--wh-font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--wh-ink);
  margin-bottom: 10px;
}

.wh-tool__subtitle {
  font-size: 15px;
  color: var(--wh-ink-light);
  line-height: 1.6;
}

/* QUIZ */
.wh-quiz {
  padding: 32px 40px 40px;
  position: relative;
}

.wh-quiz__step {
  min-height: 140px;
}

.wh-quiz__q-num {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wh-ink-faint);
  margin-bottom: 16px;
}

.wh-quiz__q-text {
  font-family: var(--wh-font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--wh-ink);
  line-height: 1.4;
  margin-bottom: 28px;
}

.wh-quiz__options {
  display: flex;
  gap: 12px;
}

.wh-quiz__opt {
  flex: 1;
  padding: 14px 20px;
  background: var(--wh-ivory);
  border: 1.5px solid var(--wh-rule);
  border-radius: var(--wh-radius);
  font-family: var(--wh-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wh-ink-mid);
  cursor: pointer;
  transition: background var(--wh-transition), border-color var(--wh-transition), color var(--wh-transition);
}

.wh-quiz__opt:hover {
  background: var(--wh-gold-pale);
  border-color: var(--wh-gold);
  color: var(--wh-gold);
}

.wh-quiz__opt:focus-visible {
  outline: 2px solid var(--wh-gold);
  outline-offset: 2px;
}

.wh-quiz__progress {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  justify-content: center;
}

.wh-quiz__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wh-rule);
  transition: background var(--wh-transition);
}

.wh-quiz__dot--active {
  background: var(--wh-gold);
}

.wh-quiz__result {
  text-align: center;
  padding: 16px 0;
}

.wh-quiz__result-icon {
  color: var(--wh-sage);
  margin-bottom: 20px;
}

.wh-quiz__result-label {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-ink-faint);
  margin-bottom: 8px;
}

.wh-quiz__result-title {
  font-family: var(--wh-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--wh-sage);
  margin-bottom: 16px;
}

.wh-quiz__result-body {
  font-size: 15px;
  color: var(--wh-ink-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.wh-quiz__disclaimer {
  font-size: 13px;
  color: var(--wh-ink-faint);
  line-height: 1.6;
  border-top: 1px solid var(--wh-rule);
  padding-top: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.wh-quiz__result-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* TIMELINE */
.wh-timeline {
  padding: 16px 0 32px;
}

.wh-timeline__item {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--wh-rule);
  cursor: pointer;
  text-align: left;
  padding: 0 40px;
  display: block;
}

.wh-timeline__item:first-child {
  border-top: 1px solid var(--wh-rule);
}

.wh-timeline__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  min-height: 70px;
}

.wh-timeline__num {
  font-family: var(--wh-font-serif);
  font-size: 12px;
  color: var(--wh-gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 24px;
}

.wh-timeline__stage-name {
  font-family: var(--wh-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--wh-ink-mid);
  flex: 1;
  line-height: 1.4;
  transition: color var(--wh-transition);
}

.wh-timeline__item:hover .wh-timeline__stage-name {
  color: var(--wh-gold);
}

.wh-timeline__item[aria-expanded="true"] .wh-timeline__stage-name {
  color: var(--wh-sage);
}

.wh-timeline__chevron {
  flex-shrink: 0;
  color: var(--wh-ink-faint);
  transition: transform var(--wh-transition), color var(--wh-transition);
  display: flex;
  align-items: center;
}

.wh-timeline__item[aria-expanded="true"] .wh-timeline__chevron {
  transform: rotate(180deg);
  color: var(--wh-sage);
}

.wh-timeline__item-body {
  padding: 0 0 24px 40px;
}

.wh-timeline__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wh-timeline__detail > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
}

.wh-timeline__detail dt {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wh-ink-faint);
  padding-top: 2px;
}

.wh-timeline__detail dd {
  font-size: 14px;
  color: var(--wh-ink-mid);
  line-height: 1.65;
}

/* ===== ATTORNEYS ===== */
.wh-attorneys {
  padding: var(--wh-section-gap) var(--wh-gutter);
  background: var(--wh-ivory);
}

.wh-attorneys__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
}

.wh-attorneys__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wh-attorney {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 56px 0;
}

.wh-attorneys__rule {
  height: 1px;
  background: var(--wh-rule);
}

.wh-attorney__photo {
  position: relative;
}

.wh-attorney__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--wh-radius);
}

.wh-attorney__header {
  margin-bottom: 24px;
}

.wh-attorney__name {
  font-family: var(--wh-font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--wh-ink);
  margin-bottom: 4px;
}

.wh-attorney__title {
  font-family: var(--wh-font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-gold);
}

.wh-attorney__creds {
  list-style: none;
  border-top: 1px solid var(--wh-rule);
  border-bottom: 1px solid var(--wh-rule);
  padding: 20px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wh-attorney__creds li {
  font-family: var(--wh-font-sans);
  font-size: 13px;
  color: var(--wh-ink-light);
  padding-left: 16px;
  position: relative;
}

.wh-attorney__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--wh-gold);
}

.wh-attorney__bio {
  font-size: 16px;
  color: var(--wh-ink-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.wh-attorney__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wh-attorney__contact a {
  font-family: var(--wh-font-sans);
  font-size: 13px;
  color: var(--wh-sage);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.wh-attorney__contact a:hover {
  color: var(--wh-gold);
  text-decoration: underline;
}

/* ===== CHECKLIST ===== */
.wh-checklist {
  padding: var(--wh-section-gap) var(--wh-gutter);
  background: var(--wh-parchment);
}

.wh-checklist__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.wh-checklist__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--wh-radius);
  position: sticky;
  top: 90px;
}

.wh-checklist__intro {
  font-size: 16px;
  color: var(--wh-ink-light);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 36px;
}

.wh-checklist__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wh-checklist__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--wh-rule);
  align-items: start;
}

.wh-checklist__list li:last-child {
  border-bottom: none;
}

.wh-check-mark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--wh-gold);
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.wh-checklist__list li div strong {
  display: block;
  font-family: var(--wh-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--wh-ink);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.wh-checklist__list li div p {
  font-size: 15px;
  color: var(--wh-ink-light);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.wh-testimonials {
  padding: var(--wh-section-gap) var(--wh-gutter);
  background: var(--wh-ivory);
}

.wh-testimonials__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
}

.wh-testimonials__disclaimer {
  font-size: 13px;
  color: var(--wh-ink-faint);
  margin-top: 16px;
  line-height: 1.5;
}

.wh-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.wh-testimonial {
  padding: 40px;
  background: var(--wh-parchment);
  border: 1px solid var(--wh-rule);
  border-radius: var(--wh-radius);
  display: flex;
  flex-direction: column;
}

.wh-testimonial--featured {
  background: var(--wh-ink);
  border-color: var(--wh-ink);
}

.wh-testimonial__mark {
  font-family: var(--wh-font-serif);
  font-size: 48px;
  line-height: 1;
  color: var(--wh-gold);
  margin-bottom: 16px;
}

.wh-testimonial--featured .wh-testimonial__mark {
  color: var(--wh-gold-light);
}

.wh-testimonial__quote {
  font-family: var(--wh-font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--wh-ink-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

.wh-testimonial--featured .wh-testimonial__quote {
  color: rgba(248, 245, 239, 0.85);
}

.wh-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--wh-rule);
  padding-top: 20px;
}

.wh-testimonial--featured .wh-testimonial__author {
  border-top-color: rgba(248, 245, 239, 0.15);
}

.wh-testimonial__author strong {
  font-family: var(--wh-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--wh-ink);
}

.wh-testimonial--featured .wh-testimonial__author strong {
  color: var(--wh-ivory);
}

.wh-testimonial__author span {
  font-family: var(--wh-font-sans);
  font-size: 12px;
  color: var(--wh-ink-faint);
  letter-spacing: 0.04em;
}

.wh-testimonial--featured .wh-testimonial__author span {
  color: rgba(248, 245, 239, 0.45);
}

/* ===== FAQ ===== */
.wh-faq {
  padding: var(--wh-section-gap) var(--wh-gutter);
  background: var(--wh-parchment);
}

.wh-faq__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.wh-faq__sidebar {
  position: sticky;
  top: 90px;
}

.wh-faq__sidebar p:last-child {
  font-size: 15px;
  color: var(--wh-ink-light);
  margin-top: 20px;
  line-height: 1.65;
}

.wh-faq__phone {
  color: var(--wh-gold);
  font-weight: 500;
}

.wh-faq__list {
  display: flex;
  flex-direction: column;
}

.wh-faq-item {
  border-bottom: 1px solid var(--wh-rule);
}

.wh-faq-item:first-child {
  border-top: 1px solid var(--wh-rule);
}

.wh-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--wh-font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--wh-ink);
  transition: color var(--wh-transition);
}

.wh-faq-item__q::-webkit-details-marker {
  display: none;
}

.wh-faq-item__q:hover {
  color: var(--wh-sage);
}

.wh-faq-item__q > span:first-child {
  flex: 1;
}

.wh-faq-item__icon {
  flex-shrink: 0;
  color: var(--wh-ink-faint);
  transition: transform var(--wh-transition), color var(--wh-transition);
  display: flex;
  align-items: center;
}

details[open] .wh-faq-item__icon {
  transform: rotate(180deg);
  color: var(--wh-sage);
}

.wh-faq-item__a {
  padding-bottom: 24px;
}

.wh-faq-item__a p {
  font-size: 16px;
  color: var(--wh-ink-light);
  line-height: 1.75;
}

/* ===== CONTACT ===== */
.wh-contact {
  padding: var(--wh-section-gap) var(--wh-gutter);
  background: var(--wh-ivory);
}

.wh-contact__inner {
  max-width: var(--wh-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.wh-contact__media {
  position: sticky;
  top: 90px;
}

.wh-contact__media > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--wh-radius);
}

.wh-contact__address-card {
  background: var(--wh-ink);
  padding: 28px 32px;
  margin-top: -1px;
  border-radius: 0 0 var(--wh-radius) var(--wh-radius);
}

.wh-contact__address-card address {
  font-style: normal;
  font-size: 14px;
  color: rgba(248, 245, 239, 0.7);
  line-height: 1.8;
  margin-top: 12px;
}

.wh-contact__address-card address a {
  color: var(--wh-gold-light);
  text-decoration: none;
}

.wh-contact__address-card address a:hover {
  text-decoration: underline;
}

.wh-contact__note {
  font-size: 14px;
  color: var(--wh-ink-faint);
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 32px;
  border-left: 2px solid var(--wh-rule);
  padding-left: 16px;
}

/* FORM */
.wh-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.wh-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wh-form__group label {
  font-family: var(--wh-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-ink-light);
}

.wh-form__group input,
.wh-form__group select,
.wh-form__group textarea {
  font-family: var(--wh-font-sans);
  font-size: 15px;
  color: var(--wh-ink);
  background: var(--wh-parchment);
  border: 1px solid var(--wh-rule);
  border-radius: var(--wh-radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--wh-transition), box-shadow var(--wh-transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.wh-form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235a5548' stroke-width='1.5'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.wh-form__group input:focus,
.wh-form__group select:focus,
.wh-form__group textarea:focus {
  border-color: var(--wh-gold);
  box-shadow: 0 0 0 3px rgba(154, 124, 68, 0.12);
}

.wh-form__group input::placeholder,
.wh-form__group textarea::placeholder {
  color: var(--wh-ink-faint);
}

.wh-form__legal {
  font-size: 12px;
  color: var(--wh-ink-faint);
  line-height: 1.55;
}

.wh-form__success {
  text-align: center;
  padding: 60px 40px;
  background: var(--wh-parchment);
  border: 1px solid var(--wh-rule);
  border-radius: var(--wh-radius);
}

.wh-form__success-icon {
  color: var(--wh-sage);
  margin-bottom: 20px;
}

.wh-form__success h3 {
  font-family: var(--wh-font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--wh-ink);
  margin-bottom: 12px;
}

.wh-form__success p {
  font-size: 16px;
  color: var(--wh-ink-light);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.wh-footer {
  background: var(--wh-ink-mid);
  color: rgba(248, 245, 239, 0.7);
}

.wh-footer__top {
  max-width: var(--wh-max);
  margin: 0 auto;
  padding: 64px var(--wh-gutter) 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}

.wh-footer__logo {
  font-family: var(--wh-font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--wh-ivory);
  display: block;
  margin-bottom: 12px;
}

.wh-footer__tagline {
  font-family: var(--wh-font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.wh-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
}

.wh-footer__address a {
  color: var(--wh-gold-light);
  text-decoration: none;
}

.wh-footer__address a:hover {
  text-decoration: underline;
}

.wh-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.wh-footer__col-head {
  font-family: var(--wh-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.4);
  margin-bottom: 16px;
}

.wh-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wh-footer__col ul a {
  font-family: var(--wh-font-sans);
  font-size: 14px;
  color: rgba(248, 245, 239, 0.65);
  text-decoration: none;
  transition: color var(--wh-transition);
}

.wh-footer__col ul a:hover {
  color: var(--wh-gold-light);
}

.wh-footer__disclaimer {
  border-top: 1px solid rgba(248, 245, 239, 0.1);
  max-width: var(--wh-max);
  margin: 0 auto;
  padding: 40px var(--wh-gutter);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wh-footer__disclaimer p {
  font-size: 12.5px;
  color: rgba(248, 245, 239, 0.4);
  line-height: 1.65;
}

.wh-footer__disclaimer strong {
  color: rgba(248, 245, 239, 0.55);
}

.wh-footer__bar {
  border-top: 1px solid rgba(248, 245, 239, 0.08);
  max-width: var(--wh-max);
  margin: 0 auto;
  padding: 20px var(--wh-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--wh-font-sans);
  font-size: 12px;
  color: rgba(248, 245, 239, 0.3);
}

.wh-footer__top-link {
  color: var(--wh-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
  transition: color var(--wh-transition);
}

.wh-footer__top-link:hover {
  color: var(--wh-gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wh-tools__panels {
    grid-template-columns: 1fr;
  }

  .wh-statement__inner {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }

  .wh-checklist__inner {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .wh-nav__links { display: none; }
  .wh-nav__phone { display: none; }
  .wh-nav__cta { display: none; }
  .wh-nav__toggle { display: flex; }

  .wh-cred__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wh-cred__item {
    padding: 24px 28px;
  }

  .wh-cred__divider { display: none; }

  .wh-statement__inner {
    grid-template-columns: 1fr;
  }

  .wh-statement__aside {
    max-width: 320px;
  }

  .wh-attorney {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }

  .wh-checklist__inner {
    grid-template-columns: 1fr;
  }

  .wh-checklist__img {
    position: static;
    max-height: 300px;
    aspect-ratio: 16/9;
  }

  .wh-testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wh-testimonials__grid .wh-testimonial:last-child {
    grid-column: 1 / -1;
  }

  .wh-faq__inner {
    grid-template-columns: 1fr;
  }

  .wh-faq__sidebar {
    position: static;
  }

  .wh-contact__inner {
    grid-template-columns: 1fr;
  }

  .wh-contact__media {
    position: static;
    max-width: 480px;
  }

  .wh-footer__top {
    grid-template-columns: 1fr;
  }

  .wh-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wh-hero__foot {
    display: none;
  }

  .wh-hero__content {
    padding-bottom: 56px;
  }

  .wh-hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wh-service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wh-attorney {
    grid-template-columns: 1fr;
  }

  .wh-attorney__photo img {
    aspect-ratio: 4/3;
    max-height: 320px;
    object-position: top;
  }

  .wh-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .wh-testimonials__grid .wh-testimonial:last-child {
    grid-column: auto;
  }

  .wh-form__row {
    grid-template-columns: 1fr;
  }

  .wh-footer__cols {
    grid-template-columns: 1fr;
  }

  .wh-footer__bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .wh-pullquote__text {
    font-size: 1.3rem;
  }

  .wh-tools__panels {
    gap: 28px;
  }

  .wh-tool__header,
  .wh-quiz {
    padding-left: 24px;
    padding-right: 24px;
  }

  .wh-timeline__item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .wh-timeline__item-body {
    padding-left: 24px;
  }

  .wh-timeline__detail > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 440px) {
  :root {
    --wh-gutter: 20px;
  }

  .wh-cred__item {
    padding: 20px 16px;
  }
}
