@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700&display=swap');

/* ==========================================================================
   Design System — Warm Editorial Gravitas
   ========================================================================== */

:root {
  /* Palette */
  --bg-base: #F4EFE6;
  --bg-surface: #FBF7EF;
  --bg-surface-alt: #ECE4D4;
  --text-primary: #1B2033;
  --text-secondary: #5B6374;
  --text-muted: #8A8676;
  --border-hairline: #D9CFBC;
  --accent-primary: #6B1F2E;
  --accent-primary-hover: #541622;
  --accent-secondary: #A68A4E;
  --accent-secondary-hover: #8F7540;
  --gradient-subtle: linear-gradient(135deg, #6B1F2E 0%, #A68A4E 100%);
  --hero-overlay: linear-gradient(270deg, rgba(27,32,51,0.06) 0%, rgba(107,31,46,0.35) 75%);

  /* Shadows */
  --soft-sm: 0 1px 2px rgba(27,32,51,0.05), 0 1px 1px rgba(27,32,51,0.03);
  --soft-md: 0 10px 28px rgba(27,32,51,0.08), 0 2px 6px rgba(27,32,51,0.04);
  --soft-lg: 0 20px 48px rgba(27,32,51,0.10);
  --inner-hairline: inset 0 0 0 1px rgba(217,207,188,0.6);

  /* Motion */
  --ease-composed: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-base: 500ms;
  --dur-micro: 280ms;
  --dur-fast: 200ms;

  /* Radii */
  --radius-btn: 2px;
  --radius-card: 4px;
  --radius-lg: 8px;

  /* Spacing */
  --section-pad-desktop: 120px;
  --section-pad-mobile: 72px;
  --container-max: 1200px;
  --measure: 62ch;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Assistant', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-base);
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-composed);
}

a:hover { color: var(--accent-primary-hover); }

button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

ul, ol { padding: 0; margin: 0; list-style: none; }

p { margin: 0 0 1rem; }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 { margin: 0 0 0.6em; color: var(--text-primary); }

.h1-display {
  font-weight: 200;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h2-section {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.h3-sub {
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
}

.h4-card {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 18px;
}

.meta {
  font-size: 15px;
  color: var(--text-secondary);
}

.editorial-numeral {
  font-weight: 200;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-secondary);
  display: block;
}

strong, b { font-weight: 700; }

.measure { max-width: var(--measure); }

/* ==========================================================================
   Layout
   ========================================================================== */

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

.section {
  padding-block: var(--section-pad-desktop);
}

.section-tight { padding-block: 72px; }

.section-alt { background: var(--bg-surface-alt); }
.section-surface { background: var(--bg-surface); }

.section-seam {
  width: 100%;
  height: 1px;
  background: var(--border-hairline);
  position: relative;
  margin: 0;
}
.section-seam::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 2px;
  background: var(--accent-secondary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  transition: background var(--dur-micro) var(--ease-composed),
              color var(--dur-micro) var(--ease-composed),
              transform var(--dur-micro) var(--ease-composed);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-surface);
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-micro) var(--ease-composed);
}
.btn-primary:hover { background: var(--accent-primary-hover); color: var(--bg-surface); }
.btn-primary:hover::after { transform: scaleX(1); }

.btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}
.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--bg-surface);
}

.btn-cream {
  background: var(--bg-surface);
  color: var(--accent-primary);
}
.btn-cream:hover { background: #ffffff; }

/* Tertiary / inline link */
.link-inline {
  position: relative;
  display: inline-block;
  color: var(--accent-primary);
  font-weight: 600;
  padding-bottom: 2px;
}
.link-inline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--accent-secondary);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform var(--dur-fast) var(--ease-composed);
}
.link-inline:hover::after { transform: scaleX(0.4); }

/* ==========================================================================
   Navigation / Top bar
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-hairline);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-text {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-block: 6px;
  transition: color var(--dur-fast) var(--ease-composed);
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--accent-secondary);
  transition: width var(--dur-fast) var(--ease-composed);
}
.nav-link:hover,
.nav-link.is-active { color: var(--accent-primary); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
}
.phone-chip svg { stroke: var(--accent-secondary); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease-composed);
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(7px); }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); }
.nav-toggle.is-open span::after { transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--text-primary);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-compact { height: 75vh; min-height: 480px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,32,51,0.45), rgba(27,32,51,0.15) 50%, rgba(27,32,51,0.05));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 80px;
}
.hero .h1-display,
.hero .h2-section {
  color: var(--bg-surface);
}
.hero-sub {
  color: #EFE7D6;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 56ch;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-actions .btn-secondary {
  color: var(--bg-surface);
  border-color: var(--bg-surface);
}
.hero-actions .btn-secondary:hover {
  background: var(--bg-surface);
  color: var(--accent-primary);
}

/* Page header (simple, no image) */
.page-header {
  background: var(--bg-base);
  padding-block: clamp(72px, 12vw, 140px);
  border-bottom: 1px solid var(--border-hairline);
}
.page-header-sm { padding-block: clamp(56px, 8vw, 100px); }
.page-header .page-sub {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 19px;
  max-width: 56ch;
  margin-top: 16px;
}

/* ==========================================================================
   Credentials strip
   ========================================================================== */

.credentials-strip {
  background: var(--bg-surface-alt);
  padding-block: 40px;
}
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 56px;
  text-align: center;
}
.credentials-list li {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  padding-inline: 12px;
}
.credentials-list li + li::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--accent-secondary);
  opacity: 0.7;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--soft-sm);
  transition: transform var(--dur-micro) var(--ease-composed),
              box-shadow var(--dur-micro) var(--ease-composed);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-md);
}

.card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
  flex: 1;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   Approach / numbered list
   ========================================================================== */

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-intro p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 46ch;
}
.principle-list { display: flex; flex-direction: column; gap: 28px; }
.principle {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
  padding-block: 20px;
  border-top: 1px solid var(--border-hairline);
}
.principle:first-child { border-top: 0; padding-top: 0; }
.principle-title {
  font-weight: 600;
  font-size: 18px;
  margin: 6px 0 4px;
  color: var(--text-primary);
}
.principle p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Clients chips
   ========================================================================== */

.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color var(--dur-micro) var(--ease-composed),
              box-shadow var(--dur-micro) var(--ease-composed);
}
.chip:hover {
  border-color: var(--accent-secondary);
  box-shadow: var(--soft-sm);
}

/* Clientele detailed cards */
.client-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-top: 2px solid var(--accent-secondary);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--soft-sm);
}
.client-card h3 {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 10px;
}
.client-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Publications / articles list
   ========================================================================== */

.article-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding-block: 32px;
  border-bottom: 1px solid var(--border-hairline);
  align-items: center;
}
.article-row:last-child { border-bottom: 0; }
.article-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-hairline);
}
.article-thumb.gradient-one { background: linear-gradient(135deg, #6B1F2E 0%, #A68A4E 100%); }
.article-thumb.gradient-two { background: linear-gradient(140deg, #A68A4E 0%, #6B1F2E 100%); }
.article-thumb.gradient-three { background: linear-gradient(160deg, #8F7540 0%, #541622 100%); }
.article-thumb.gradient-four { background: linear-gradient(120deg, #6B1F2E 0%, #1B2033 100%); }
.article-meta { font-size: 13px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.article-row h3 { font-size: 24px; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }
.article-row h3 a { color: var(--text-primary); }
.article-row h3 a:hover { color: var(--accent-primary); }
.article-row p { color: var(--text-secondary); font-size: 16px; margin-bottom: 14px; max-width: 60ch; }

/* ==========================================================================
   Press strip
   ========================================================================== */

.press-list { display: flex; flex-direction: column; gap: 18px; }
.press-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding-block: 14px;
  border-bottom: 1px solid var(--border-hairline);
}
.press-item:last-child { border-bottom: 0; }
.press-title {
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-primary);
}
.press-source {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ==========================================================================
   Google reviews callout
   ========================================================================== */

.reviews-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  padding: 56px 48px;
  max-width: 760px;
  margin-inline: auto;
  box-shadow: var(--soft-sm);
  text-align: center;
  position: relative;
}
.reviews-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--accent-secondary);
  font-weight: 200;
  margin-bottom: 8px;
}
.reviews-card p {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 24px;
}

/* ==========================================================================
   Contact band
   ========================================================================== */

.contact-band {
  background: var(--text-primary);
  background-image: var(--gradient-subtle);
  color: var(--bg-surface);
  padding-block: 88px;
  text-align: center;
}
.contact-band h2 { color: var(--bg-surface); }
.contact-band .band-sub {
  font-weight: 300;
  font-size: 18px;
  color: #EFE7D6;
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 28px;
}
.contact-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}
.contact-inline a, .contact-inline span { color: var(--bg-surface); font-weight: 500; }

/* ==========================================================================
   Services list (full-width editorial rows)
   ========================================================================== */

.service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding-block: 80px;
}
.service-row .editorial-numeral { font-size: 72px; }
.service-row h3 {
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 32px);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.service-row p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  max-width: 60ch;
}

/* Methodology */
.methodology {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.method-step .editorial-numeral { margin-bottom: 16px; }
.method-step h3 {
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 10px;
}
.method-step p { color: var(--text-secondary); font-size: 16px; }

/* ==========================================================================
   Attorney profile band
   ========================================================================== */

.attorney-band {
  background: var(--bg-surface);
  padding-block: var(--section-pad-desktop);
}
.attorney-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.attorney-portrait {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--soft-sm);
}
.credentials-rows {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--border-hairline);
}
.credentials-rows li {
  padding-block: 16px;
  border-bottom: 1px solid var(--border-hairline);
  font-size: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.credentials-rows li::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-secondary);
  flex-shrink: 0;
}

/* Pull quote */
.pullquote {
  font-weight: 200;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  position: relative;
  padding-inline-start: 28px;
  border-inline-start: 2px solid var(--accent-secondary);
}

.firm-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.firm-intro .text-col p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* ==========================================================================
   Full-width rows (six principles on about.html)
   ========================================================================== */

.principle-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  padding-block: 48px;
  border-top: 1px solid var(--border-hairline);
}
.principle-row:first-child { border-top: 0; }
.principle-row h3 { font-weight: 600; font-size: 22px; margin-bottom: 10px; }
.principle-row p { color: var(--text-secondary); margin: 0; max-width: 62ch; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  box-shadow: var(--soft-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.form-field label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: inherit;
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-hairline);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-composed);
  font-weight: 400;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent-primary);
}
.form-field .error {
  color: var(--accent-primary);
  font-size: 13px;
  margin-top: 6px;
  min-height: 16px;
}

.form-submit { display: flex; justify-content: flex-start; margin-top: 8px; }

.form-result {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-card);
  font-size: 15px;
  display: none;
}
.form-result.is-visible { display: block; }
.form-result.is-success {
  background: var(--bg-surface-alt);
  border-inline-start: 3px solid var(--accent-secondary);
  color: var(--text-primary);
}
.form-result.is-error {
  background: #F8EAED;
  border-inline-start: 3px solid var(--accent-primary);
  color: var(--accent-primary-hover);
}

.contact-info { font-size: 17px; line-height: 1.7; }
.contact-info h3 { margin-bottom: 24px; font-weight: 600; font-size: 22px; }
.contact-info dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 14px;
  margin: 0 0 40px;
}
.contact-info dt { font-weight: 600; color: var(--text-muted); font-size: 14px; letter-spacing: 0.04em; }
.contact-info dd { margin: 0; color: var(--text-primary); }
.contact-info dd a { color: var(--text-primary); }
.contact-info dd a:hover { color: var(--accent-primary); }

.map-card {
  background: var(--gradient-subtle);
  border-radius: var(--radius-card);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-surface);
  position: relative;
  overflow: hidden;
  box-shadow: var(--soft-sm);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.25), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px);
  pointer-events: none;
}
.map-pin {
  width: 40px;
  height: 40px;
  color: var(--bg-surface);
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}
.map-address {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* Direct channels band */
.channels-band { background: var(--bg-surface-alt); padding-block: 64px; }
.channels-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: 999px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--soft-sm);
  transition: border-color var(--dur-micro) var(--ease-composed),
              transform var(--dur-micro) var(--ease-composed);
}
.channel-chip:hover {
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
  color: var(--accent-primary);
}
.channel-chip svg { stroke: var(--accent-secondary); flex-shrink: 0; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item { border-top: 1px solid var(--border-hairline); }
.faq-item:first-child { border-top: 0; }
.faq-q {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px 28px;
  text-align: start;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
  transition: color var(--dur-fast) var(--ease-composed),
              background var(--dur-fast) var(--ease-composed);
  justify-content: space-between;
}
.faq-q:hover { color: var(--accent-primary); background: #F9F2E4; }
.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  color: var(--accent-secondary);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-micro) var(--ease-composed);
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease-composed),
              opacity 360ms var(--ease-composed);
  opacity: 0;
}
.faq-item.is-open .faq-a { opacity: 1; }
.faq-a-inner {
  padding: 4px 28px 28px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  max-width: 72ch;
}

/* Still-curious gradient band */
.cta-band {
  background: var(--gradient-subtle);
  padding-block: 88px;
  color: var(--bg-surface);
  text-align: center;
}
.cta-band h2 { color: var(--bg-surface); margin-bottom: 20px; }
.cta-band p {
  font-weight: 300;
  font-size: 18px;
  color: #EFE7D6;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 28px;
}

/* ==========================================================================
   Privacy (legal body)
   ========================================================================== */

.legal-body { max-width: 62ch; margin-inline: auto; }
.legal-body h2 {
  font-weight: 400;
  font-size: 26px;
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.legal-body ul {
  list-style: disc;
  padding-inline-start: 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}
.legal-body ul li { margin-bottom: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--text-primary);
  color: #C7C3B4;
  padding-block: 80px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  color: var(--bg-surface);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p, .footer-col a, .footer-col li {
  color: #C7C3B4;
  font-size: 15px;
  line-height: 1.7;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover { color: var(--bg-surface); }
.footer-brand-block .brand { margin-bottom: 18px; }
.footer-brand-block .brand-text { color: var(--bg-surface); }
.footer-tagline { font-size: 15px; color: #C7C3B4; max-width: 40ch; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(217,207,188,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #8D8876;
}
.footer-bottom a { color: #C7C3B4; }
.footer-bottom a:hover { color: var(--bg-surface); }

.footer-signature {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(199, 195, 180, 0.6);
  margin: 24px 0 0;
  flex-basis: 100%;
}
.footer-signature a {
  color: rgba(199, 195, 180, 0.6);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.footer-signature a:hover { color: var(--bg-surface); }

/* ==========================================================================
   Scroll reveal utility
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-composed),
              transform 600ms var(--ease-composed);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero headline load-in */
.hero .h1-display,
.hero .hero-sub,
.hero .hero-actions {
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 600ms var(--ease-composed) forwards;
}
.hero .hero-sub { animation-delay: 120ms; }
.hero .hero-actions { animation-delay: 220ms; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Multi-step hidden pattern (generic)
   ========================================================================== */

.funnel-page,
.quote-step,
.wizard-step { display: none; }
.funnel-page.active,
.quote-step.active,
.wizard-step.active { display: block; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .section { padding-block: var(--section-pad-mobile); }
  .attorney-band { padding-block: var(--section-pad-mobile); }

  .nav-toggle { display: flex; }
  .nav-list,
  .nav-actions .phone-chip,
  .nav-actions .btn-primary {
    display: none;
  }
  .nav-actions { gap: 8px; }

  .topbar.nav-open .nav-list,
  .topbar.nav-open .nav-actions .phone-chip,
  .topbar.nav-open .nav-actions .btn-primary {
    display: flex;
  }
  .topbar.nav-open .nav-list {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--bg-surface);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-hairline);
    padding-block: 8px;
  }
  .topbar.nav-open .nav-list a {
    padding: 14px 32px;
    width: 100%;
    border-top: 1px solid var(--border-hairline);
  }
  .topbar.nav-open .nav-actions {
    position: absolute;
    top: calc(100% + 260px);
    inset-inline: 0;
    background: var(--bg-surface);
    padding: 16px 32px 24px;
    border-bottom: 1px solid var(--border-hairline);
    justify-content: space-between;
  }

  .grid-3, .grid-6 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .chips-grid { grid-template-columns: repeat(2, 1fr); }

  .approach { grid-template-columns: 1fr; gap: 48px; }
  .firm-intro { grid-template-columns: 1fr; gap: 40px; }
  .attorney-grid { grid-template-columns: 1fr; gap: 40px; }
  .attorney-portrait { max-width: 360px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .methodology { grid-template-columns: 1fr; gap: 32px; }

  .service-row { grid-template-columns: 80px 1fr; gap: 24px; padding-block: 56px; }
  .service-row .editorial-numeral { font-size: 48px; }

  .principle-row { grid-template-columns: 80px 1fr; gap: 20px; padding-block: 36px; }
  .principle { grid-template-columns: 60px 1fr; gap: 16px; }

  .article-row { grid-template-columns: 140px 1fr; gap: 20px; padding-block: 24px; }

  .press-item { flex-direction: column; align-items: flex-start; gap: 4px; }

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

  .credentials-list { gap: 18px; }
  .credentials-list li + li::before { display: none; }

  .hero { background-attachment: scroll; }
  .hero-compact { height: 60vh; min-height: 380px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .chips-grid { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .contact-form-card { padding: 32px 24px; }
  .reviews-card { padding: 40px 24px; }
  .contact-info dl { grid-template-columns: 90px 1fr; }
  .article-row { grid-template-columns: 1fr; }
  .article-thumb { aspect-ratio: 16 / 9; max-height: 180px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero { background-attachment: scroll; }
}
