/* Horizons & Co — prototype */
:root {
  /* Editorial paper system, warm off-white. The firm's own wordmark in the
     team-photo backdrop uses a saffron-yellow highlight stripe — that's the
     brand evidence we lean on for the accent instead of generic gold. */
  --paper:        #FBFAF5;
  --paper-2:      #F2EFE6;
  --stone:        #E6E1D4;
  --ink:          #16161A;       /* near-black, slightly warm */
  --ink-2:        #2A2A2F;
  --muted:        #6B6A66;
  --line:         #DDD7C8;
  --line-2:       #C9C2AF;
  --saffron:      #F2C744;       /* brand highlight yellow */
  --saffron-deep: #C99B1F;
  --ink-card:     #14141A;
  --teal-mute:    #2D4A48;       /* secondary editorial accent, very restrained */
  --focus:        #0A66FF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.serif-tight { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.02em; line-height: 1.02; }
.mono { font-family: 'JetBrains Mono', 'Menlo', monospace; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.eyebrow-light { color: rgba(255,255,255,0.55); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--saffron); color: var(--ink); }

/* Saffron underline used by the brand */
.under-saffron {
  background-image: linear-gradient(180deg, transparent 60%, var(--saffron) 60%, var(--saffron) 92%, transparent 92%);
  padding: 0 0.08em;
}

/* shared container */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.divider { height: 1px; background: var(--line); }
.divider-dark { height: 1px; background: rgba(255,255,255,0.12); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,245,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; gap: 28px; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.nav-logo-mark { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); position: relative; }
.nav-logo-mark::after { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 1.5px solid var(--saffron); }
.nav-links { display: flex; gap: 4px; margin-left: 20px; flex: 1; }
.nav-link {
  padding: 8px 14px; font-size: 14px; color: var(--ink-2); font-weight: 500;
  border-radius: 999px; position: relative;
}
.nav-link:hover { background: var(--paper-2); }
.nav-link.active { background: var(--ink); color: var(--paper); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.locale-toggle { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.locale-toggle button { background: transparent; border: 0; padding: 6px 12px; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.locale-toggle button.active { background: var(--ink); color: var(--paper); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px; border: 0; font-size: 14px; font-weight: 600; letter-spacing: -0.005em; transition: transform .15s ease, background .15s ease; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); padding: 12px 0; }
.btn-ghost .arrow { transition: transform .2s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-saffron { background: var(--saffron); color: var(--ink); }
.btn-saffron:hover { background: var(--saffron-deep); color: var(--paper); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; filter: contrast(0.95) brightness(0.85); }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(22,22,26,0.85) 30%, rgba(22,22,26,0.4) 65%, rgba(22,22,26,0) 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr; min-height: 640px; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; min-height: auto; } }
.hero-left { padding: 80px 56px 60px; display: flex; flex-direction: column; justify-content: space-between; }
@media (max-width: 720px) { .hero-left { padding: 56px 28px 48px; } }
.hero-h1 { font-size: clamp(44px, 6vw, 88px); line-height: 0.98; margin: 28px 0 24px; max-width: 12ch; }
.hero-sub { font-size: 17px; max-width: 46ch; color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-row .btn-primary { background: var(--saffron); color: var(--ink); }
.hero-cta-row .btn-primary:hover { background: #FFD64B; }
.hero-cta-row .btn-secondary { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.hero-cta-row .btn-secondary:hover { background: var(--paper); color: var(--ink); }
.hero-meta { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; }
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .num { font-family: 'Cormorant Garamond', serif; font-size: 36px; line-height: 1; }
.hero-meta .lbl { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

.hero-right { position: relative; }
.hero-stamp { position: absolute; bottom: 24px; right: 24px; padding: 10px 14px; background: rgba(20,20,26,0.55); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; color: var(--paper); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 980px) { .hero-bg img { object-position: center; } .hero-bg::after { background: linear-gradient(180deg, rgba(22,22,26,0.7) 0%, rgba(22,22,26,0.55) 60%, rgba(22,22,26,0.85) 100%); } }

.hero-ticker { background: var(--ink-2); color: var(--paper); padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.hero-ticker-track { display: flex; gap: 56px; animation: ticker 60s linear infinite; white-space: nowrap; }
.hero-ticker-track span { font-size: 13px; color: rgba(255,255,255,0.72); display: inline-flex; align-items: center; gap: 14px; }
.hero-ticker-track span::after { content: '·'; color: var(--saffron); margin-left: 56px; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }
.section-dark { background: var(--ink); color: var(--paper); }
.section-paper2 { background: var(--paper-2); }

.section-head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: end; margin-bottom: 56px; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; } }
.section-head h2 { font-size: clamp(36px, 4.4vw, 60px); margin: 14px 0 0; line-height: 1.02; }
.section-head .lede { font-size: 18px; color: var(--muted); max-width: 56ch; }
.section-dark .section-head .lede { color: rgba(255,255,255,0.65); }

/* Firm at a glance */
.glance { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.glance-cell { padding: 28px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.glance-cell:last-child { border-right: 0; }
.glance-cell .num { font-family: 'Cormorant Garamond', serif; font-size: 44px; line-height: 1; }
.glance-cell .lbl { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.glance-cell .attr { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 4px; }
@media (max-width: 980px) { .glance { grid-template-columns: repeat(3, 1fr); }
  .glance-cell:nth-child(3n) { border-right: 0; }
  .glance-cell:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) { .glance { grid-template-columns: repeat(2, 1fr); }
  .glance-cell { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
  .glance-cell:nth-child(2n) { border-right: 0 !important; }
}

/* Practices grid */
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (max-width: 980px) { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .practice-grid { grid-template-columns: 1fr; } }
.practice-card {
  padding: 32px 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px; min-height: 200px;
  position: relative; background: var(--paper); transition: background .2s ease;
  cursor: pointer;
}
.practice-card:hover { background: var(--paper-2); }
.practice-card .pc-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.practice-card .pc-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.05; margin: 0; }
.practice-card .pc-sub { font-size: 13px; color: var(--muted); margin-top: auto; }
.practice-card .pc-arrow { position: absolute; top: 28px; right: 28px; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--ink-2); transition: all .2s ease; }
.practice-card:hover .pc-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.practice-card.is-core { background: var(--ink); color: var(--paper); }
.practice-card.is-core .pc-num, .practice-card.is-core .pc-sub { color: rgba(255,255,255,0.6); }
.practice-card.is-core .pc-arrow { background: var(--saffron); color: var(--ink); border-color: var(--saffron); }
.practice-card.is-core:hover { background: var(--ink-2); }

/* Recent outcomes */
.outcomes { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 980px) { .outcomes { grid-template-columns: 1fr; } }
.outcome { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; gap: 14px; min-height: 280px; }
.outcomes .outcome:last-child { border-right: 0; }
.outcome .stat { font-family: 'Cormorant Garamond', serif; font-size: 54px; line-height: 1; color: var(--saffron); }
.outcome .summary { font-size: 16px; line-height: 1.4; max-width: 38ch; }
.outcome .meta { display: flex; gap: 12px; align-items: center; margin-top: auto; font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.outcome .tag { padding: 4px 8px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; font-size: 11px; color: rgba(255,255,255,0.78); }

/* Experts strip */
.experts-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 980px) { .experts-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .experts-strip { grid-template-columns: repeat(2, 1fr); } }
.expert-card { display: flex; flex-direction: column; gap: 8px; cursor: pointer; }
.expert-card .photo { aspect-ratio: 3/4; overflow: hidden; background: var(--paper-2); position: relative; border-radius: 2px; }
.expert-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.expert-card:hover .photo img { transform: scale(1.04); }
.expert-card .photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%); }
.expert-card .name { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.1; margin-top: 8px; }
.expert-card .role { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

/* Awards strip */
.awards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 820px) { .awards { grid-template-columns: repeat(2, 1fr); } }
.award {
  padding: 28px 24px; background: var(--paper-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px; min-height: 200px;
  border-radius: 2px; position: relative;
}
.award .issuer { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.award .band { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.05; }
.award .cat { font-size: 13px; color: var(--ink-2); margin-top: auto; }
.award .yr { position: absolute; top: 24px; right: 24px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink); }
.award.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.award.dark .issuer { color: var(--saffron); }
.award.dark .cat { color: rgba(255,255,255,0.7); }
.award.dark .yr { color: var(--saffron); }

/* Insights teaser */
.insights-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 980px) { .insights-grid { grid-template-columns: 1fr; } }
.insight-card { display: flex; flex-direction: column; gap: 14px; cursor: pointer; }
.insight-card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.insight-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-card:hover .img img { transform: scale(1.04); }
.insight-card .cat { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron-deep); }
.insight-card .title { font-family: 'Cormorant Garamond', serif; font-size: 26px; line-height: 1.15; }
.insight-card.small .title { font-size: 22px; }
.insight-card .date { font-size: 12px; color: var(--muted); }

/* CTA block */
.cta-block { padding: 80px 56px; background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; border-radius: 4px; position: relative; overflow: hidden; }
@media (max-width: 820px) { .cta-block { grid-template-columns: 1fr; padding: 56px 32px; } }
.cta-block::before { content: ''; position: absolute; right: -120px; top: -120px; width: 400px; height: 400px; border-radius: 50%; background: var(--saffron); opacity: 0.08; }
.cta-block h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); margin: 0; line-height: 1.05; }
.cta-block p { color: rgba(255,255,255,0.7); margin: 14px 0 0; font-size: 16px; max-width: 50ch; }
.cta-block .cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.cta-block .cta-actions .btn { justify-content: space-between; }

/* Offices */
.offices { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .offices { grid-template-columns: 1fr; } }
.office { padding: 48px 40px; border-right: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.office:last-child { border-right: 0; }
.office h4 { font-family: 'Cormorant Garamond', serif; font-size: 36px; margin: 0 0 8px; }
.office .city-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--saffron-deep); }
.office .meta { display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.office .meta strong { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 4px; }
.office .map-plate { background: var(--paper-2); border: 1px solid var(--line); border-radius: 2px; position: relative; overflow: hidden; min-height: 180px; }
.office .map-plate svg { width: 100%; height: 100%; }

/* Footer */
.footer { background: var(--ink); color: var(--paper); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--saffron); letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul a:hover { color: var(--saffron); }
.footer .brand { font-family: 'Cormorant Garamond', serif; font-size: 32px; }
.footer .brand-blurb { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 16px; max-width: 36ch; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12px; color: rgba(255,255,255,0.5); }

/* Generic page header */
.page-head { padding: 80px 0 56px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-head .crumb { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }
.page-head h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 88px); line-height: 1.0; margin: 18px 0 24px; max-width: 18ch; }
.page-head .lede { font-size: 19px; color: var(--ink-2); max-width: 60ch; line-height: 1.5; }

/* Practice page */
.practice-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .practice-hero { grid-template-columns: 1fr; gap: 28px; } }
.practice-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 96px); line-height: 0.98; margin: 16px 0 0; }
.practice-section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.practice-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; margin: 0 0 24px; }
.practice-subs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .practice-subs { grid-template-columns: 1fr; } }
.practice-sub-card { padding: 24px; background: var(--paper-2); border-left: 2px solid var(--saffron); }
.practice-sub-card h4 { margin: 0 0 6px; font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.practice-sub-card p { margin: 0; font-size: 14px; color: var(--muted); }

.practice-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 720px) { .practice-list { grid-template-columns: 1fr; } }
.practice-list-row {
  display: grid; grid-template-columns: 60px 1fr 60px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  align-items: center; cursor: pointer; transition: padding .2s ease;
}
.practice-list-row:hover { padding-left: 12px; background: var(--paper-2); }
.practice-list-row .idx { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.practice-list-row .arrow { text-align: right; color: var(--muted); }

/* Experts filter */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 40px; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font-size: 13px; color: var(--ink-2); cursor: pointer; transition: all .15s ease; }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .ct { color: var(--muted); margin-left: 6px; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.chip.active .ct { color: rgba(255,255,255,0.6); }

.experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .experts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .experts-grid { grid-template-columns: repeat(2, 1fr); } }

/* Lawyer profile */
.profile-grid { display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 56px; padding: 80px 0; }
@media (max-width: 820px) { .profile-grid { grid-template-columns: 1fr; gap: 40px; } }
.profile-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--paper-2); position: relative; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo .verified { position: absolute; top: 16px; left: 16px; padding: 6px 10px; background: var(--paper); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.profile-content h1 { font-family: 'Cormorant Garamond', serif; font-size: 64px; line-height: 1; margin: 0 0 8px; }
.profile-content .title { font-size: 16px; color: var(--muted); margin-bottom: 20px; }
.profile-content .bio { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin-bottom: 28px; max-width: 60ch; }
.profile-block { padding: 24px 0; border-top: 1px solid var(--line); }
.profile-block h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; margin: 0 0 12px; }
.profile-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.profile-block ul li { padding-left: 16px; position: relative; }
.profile-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--saffron-deep); }
.profile-direct { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.profile-direct a { font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.profile-direct a:hover { color: var(--saffron-deep); border-color: var(--saffron-deep); }

/* Insights page */
.insights-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
@media (max-width: 980px) { .insights-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .insights-page-grid { grid-template-columns: 1fr; } }
.insights-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
@media (max-width: 820px) { .insights-feature { grid-template-columns: 1fr; } }
.insights-feature .img { aspect-ratio: 4/3; overflow: hidden; }
.insights-feature .img img { width: 100%; height: 100%; object-fit: cover; }

/* About page */
.about-intro { padding: 80px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro p { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.about-intro .founder { font-size: 15px; color: var(--muted); margin-top: 28px; }
.about-timeline { display: flex; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow-x: auto; }
.timeline-step { flex: 1; min-width: 220px; padding: 32px 28px; border-right: 1px solid var(--line); }
.timeline-step:last-child { border-right: 0; }
.timeline-step .yr { font-family: 'Cormorant Garamond', serif; font-size: 44px; color: var(--saffron-deep); }
.timeline-step .lbl { font-size: 14px; color: var(--ink-2); margin-top: 8px; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 820px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
.value { padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 0 0 8px; }
.value p { font-size: 13px; color: var(--muted); margin: 0; }

/* Contact page */
.contact-grid { padding: 80px 0; display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-form { background: var(--paper-2); padding: 40px; border: 1px solid var(--line); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin: 0 0 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.field input, .field textarea, .field select {
  background: var(--paper); border: 1px solid var(--line); padding: 12px 14px;
  font-family: inherit; font-size: 14px; color: var(--ink);
  border-radius: 2px; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }

/* Consultation modal */
.modal-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(20,20,26,0.55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--paper); max-width: 720px; width: 100%; max-height: 90vh; overflow: auto; transform: translateY(20px); opacity: 0; transition: transform .25s ease, opacity .25s ease; border-radius: 4px; display: grid; grid-template-columns: 1fr 1.3fr; }
.modal-overlay.open .modal { transform: translateY(0); opacity: 1; }
@media (max-width: 720px) { .modal { grid-template-columns: 1fr; } }
.modal-aside { background: var(--ink); color: var(--paper); padding: 36px 32px; }
.modal-aside .eyebrow { color: var(--saffron); }
.modal-aside h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; line-height: 1; margin: 12px 0 16px; }
.modal-aside p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0 0 24px; }
.modal-aside ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }
.modal-aside ul li::before { content: '—'; color: var(--saffron); margin-right: 8px; }
.modal-body { padding: 36px 32px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; cursor: pointer; }

.modal-success { text-align: center; padding: 60px 32px; }
.modal-success h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; margin: 12px 0; }
.modal-success p { color: var(--muted); margin: 0; }

/* RTL */
.rtl { direction: rtl; }
.rtl body, .rtl * { font-family: 'IBM Plex Sans Arabic', 'Noto Kufi Arabic', system-ui, sans-serif; }
.rtl .serif, .rtl .serif-tight, .rtl .practice-card .pc-title, .rtl .hero-h1, .rtl .section-head h2,
.rtl .page-head h1, .rtl .insight-card .title, .rtl .award .band, .rtl .glance-cell .num, .rtl .outcome .stat,
.rtl .expert-card .name, .rtl .footer .brand, .rtl .cta-block h3, .rtl .profile-content h1,
.rtl .modal-aside h2, .rtl .office h4, .rtl .practice-hero h1, .rtl .timeline-step .yr,
.rtl .value h4, .rtl .modal-success h2, .rtl .practice-list-row, .rtl .contact-form h3 {
  font-family: 'IBM Plex Sans Arabic', 'Noto Kufi Arabic', system-ui, sans-serif !important;
  font-weight: 500;
}
.rtl .practice-card .pc-arrow svg, .rtl .btn .arrow { transform: scaleX(-1); }
.rtl .hero-bg::after { background: linear-gradient(-90deg, var(--ink) 0%, rgba(22,22,26,0.85) 30%, rgba(22,22,26,0.4) 65%, rgba(22,22,26,0) 100%); }
.rtl .nav-links { margin-left: 0; margin-right: 20px; }
.rtl .practice-sub-card { border-left: 0; border-right: 2px solid var(--saffron); }
.rtl .profile-block ul li { padding-left: 0; padding-right: 16px; }
.rtl .profile-block ul li::before { left: auto; right: 0; }
.rtl .hero-stamp { right: auto; left: 24px; }
.rtl .practice-card .pc-arrow { right: auto; left: 28px; }
.rtl .modal-close { right: auto; left: 16px; }

/* Misc decorative SVG */
.flourish { position: absolute; pointer-events: none; }

/* Sticky CTA bar (mobile-ish) */
.sticky-cta { display: none; }

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