/* =========================================================
   Fisher & Fisher Solicitors — Concept 4: Editorial
   ========================================================= */

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-normal.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-italic.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: block;
}

@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ----- Variables ----- */
:root {
  --navy:        #1a2744;
  --navy-dark:   #111c38;
  --gold:        #c4972a;
  --gold-dark:   #a87e22;
  --gold-light:  rgba(196,151,42,0.12);
  --cream:       #f8f4ed;
  --cream-dark:  #ede9e0;
  --white:       #ffffff;
  --text-dark:   #1c1c2e;
  --text-mid:    #5c5c6e;
  --border:      #e0dbd0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --radius:    4px;
  --radius-lg: 10px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 72px;
}

/* ----- Base ----- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.register-interest-strip .btn { margin-top: 2rem; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-ghost-cream {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost-cream:hover { border-color: var(--gold); color: var(--gold); }

/* ----- Reveal Animations ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal-stagger] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
[data-reveal-stagger].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] {
    opacity: 1; transform: none; transition: none;
  }
}

/* ----- Section Common ----- */
.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--text-mid);
  font-size: 1.0625rem;
  max-width: 540px;
}

.section-footer-link {
  margin-top: 3rem;
  text-align: center;
}

/* =========================================================
   UTILITY BAR
   ========================================================= */
.utility-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.utility-contact {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.8125rem;
}

.utility-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.utility-link:hover { color: var(--gold); }

.utility-sep { color: var(--border); }

.utility-tagline {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}

.logo { flex-shrink: 0; text-decoration: none; }
.logo img { height: 44px; width: auto; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Trajan Pro', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-family: 'Trajan Pro', serif;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Nav */
.main-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-list > li > a:hover { color: var(--gold); background: rgba(255,255,255,0.08); }

.chevron {
  font-size: 0.75em;
  transition: transform 0.2s;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(26,39,68,0.12);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  z-index: 50;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown li a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
}
.dropdown li a:hover { background: var(--cream); color: var(--navy); }

/* Active nav link on navy header */
.nav-list > li > a[aria-current="page"] { color: var(--gold); }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--gold-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 14px 11px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 0 1.5rem;
}

.mobile-nav ul { padding: 0 2rem; }

.mobile-nav li a {
  display: block;
  padding: 0.625rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav li a:hover { color: var(--gold); }

.mobile-sub-label {
  padding: 0.75rem 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.mobile-sub { padding-left: 1rem !important; }

.mobile-cta-item { padding-top: 1rem !important; }
.mobile-call-btn {
  display: flex !important;
  justify-content: center;
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.875rem !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  border: none !important;
}

/* =========================================================
   HERO: EDITORIAL MASTHEAD
   ========================================================= */
.hero-editorial {
  background: var(--cream);
  padding: 4.5rem 0 5rem;
}

.hero-editorial-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-est {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  margin-bottom: 1rem;
}

.hero-rule {
  height: 2px;
  background: var(--gold);
  width: 100%;
  margin-bottom: 2rem;
}

.hero-masthead-wrap { margin-bottom: 2rem; }

.hero-masthead {
  line-height: 0.92;
}

.masthead-name {
  display: block;
  font-family: 'Trajan Pro', serif;
  font-size: clamp(2.5rem, 10vw, 6.75rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.masthead-type {
  display: block;
  font-family: 'Trajan Pro', serif;
  font-size: clamp(1.75rem, 7vw, 4.75rem);
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 0.15em;
}

.hero-editorial-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.hero-standfirst {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  flex: 1 1 300px;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-shrink: 0;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
  display: grid;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Background image track */
.hero-bg-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

/* White gradient overlay */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 100%);
  pointer-events: none;
}

/* Content slides sit above the bg and overlay */
.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Transparent backgrounds so the image shows through */
.hero-slider .hero-editorial { background: transparent; }
.hero-slide--quote           { background: transparent; }

.hero-slide--quote {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0 5rem;
}

.hero-quote-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 2rem;
  margin: 0 auto;
}

.hero-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.55;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 2rem;
}

.hero-quote-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-quote-stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
}

.hero-quote-author {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.hero-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.25;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.hero-dot.is-active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.35);
}

/* =========================================================
   SERVICE SPLIT
   ========================================================= */
.service-split {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.service-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-card {
  display: block;
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.service-card:hover { background: var(--cream-dark); transform: translateY(-2px); }

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

.service-card-label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.service-list { margin-bottom: 1.75rem; }

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.9375rem;
}
.service-list li:last-child { border-bottom: none; }

.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: gap 0.15s;
}

/* =========================================================
   TRUST STATS
   ========================================================= */
.trust-stats {
  background: var(--navy);
  padding: 3.5rem 0;
}

.trust-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.trust-stat {
  text-align: center;
  flex: 1;
}

.trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.trust-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

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

.practice-list {
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

.practice-row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr 1.5rem;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: padding-left 0.3s var(--ease-out), background 0.2s;
  overflow: hidden;
}

.practice-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
  pointer-events: none;
}

.practice-row:hover { padding-left: 1rem; background: rgba(248,244,237,0.6); }
.practice-row:hover::before { width: 4px; }

.practice-num {
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
  width: clamp(1.75rem, 3vw, 2.25rem);
  height: clamp(1.75rem, 3vw, 2.25rem);
}

.practice-row-name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.practice-row-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

.practice-row-arrow {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
  justify-self: end;
}
.practice-row:hover .practice-row-arrow { transform: translateX(5px); }

/* =========================================================
   ABOUT SPLIT
   ========================================================= */
.about-split {
  background: var(--white);
  padding: 4rem 0;
}

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-split-image {
  overflow: hidden;
  border-radius: 2px;
}

.about-split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}


.about-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-split-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-split-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}

.about-split-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
   OFFICES GRID
   ========================================================= */
.offices-section { background: var(--white); }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.office-card {
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  transition: background 0.15s;
}
.office-card:hover { background: var(--cream-dark); }

.office-card-photo {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.office-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.office-card:hover .office-card-photo img { transform: scale(1.04); }

.office-card-body {
  padding: 1.25rem 1.5rem 1.5rem 1.375rem;
}

.office-card-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.office-card-name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
}

.office-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.1875rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
}

.office-card-address {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.office-card-phone {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.15s;
  margin-bottom: 0.1875rem;
}
.office-card-phone:hover { color: var(--gold); }

.office-card-phone-alt {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.office-card-phone-alt:hover { color: var(--gold); }

.offices-shared-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.offices-shared-email svg { color: var(--gold); flex-shrink: 0; }
.offices-shared-email a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.offices-shared-email a:hover { color: var(--gold); }

/* =========================================================
   TESTIMONIALS EDITORIAL
   ========================================================= */
.testimonials-editorial { background: var(--cream); }

.tquotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tquote-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border-bottom: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.tquote-service {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tquote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 0.75rem;
  opacity: 0.35;
  user-select: none;
}

.tquote-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.tquote-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.tquote-stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.tquote-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.tquote-location {
  font-weight: 400;
  color: var(--text-mid);
}

/* =========================================================
   CONTACT CTA
   ========================================================= */
.contact-cta { background: var(--navy); }

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-eyebrow { color: var(--gold); }
.contact-title { color: var(--white); }
.contact-cta-intro { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: background 0.18s, border-color 0.18s;
}
.contact-method:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.method-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.125rem;
}

.method-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* Form on navy */
.form-header { margin-bottom: 1.5rem; }

.form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group select { color: rgba(255,255,255,0.7); }
.form-group select option { background: var(--navy); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }

/* =========================================================
   BLOG ARTICLE
   ========================================================= */
.blog-article-img {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.blog-article-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.blog-back:hover { color: var(--gold); }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.blog-article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.blog-article-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.blog-article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--navy);
}
.blog-article-body figcaption {
  font-size: 0.8125rem;
  color: var(--text-mid);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #111827; }

.footer-top { padding: 4rem 0 3rem; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand { }
.footer-brand > a { display: block; }
.footer-brand img { display: block; margin-bottom: 1.25rem; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-est {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.125rem;
}

.footer-nav-col ul li a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.footer-nav-col ul li a:hover { color: var(--gold); }

.footer-offices-list { }
.footer-offices-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
}
.footer-offices-list li:last-child { border-bottom: none; }
.footer-offices-list li strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer-offices-list li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-offices-list li a:hover { color: var(--gold); }

.footer-email {
  display: block;
  font-size: 0.875rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: opacity 0.15s;
}
.footer-email:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal, .footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }

.footer-privacy-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-left: 0.75rem;
  transition: color 0.15s;
}
.footer-privacy-link:hover { color: var(--gold); }

/* Office hours */
.office-hours {
  font-size: 0.85rem;
  color: var(--text-mid) !important;
}
.office-hours span { font-weight: 400; }

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 1rem 2rem;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  flex: 1 1 400px;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cookie-btn-accept {
  color: var(--gold);
  border: 2px solid var(--gold);
}
.cookie-btn-accept:hover { background: var(--gold); color: var(--white); }

.cookie-btn-decline {
  color: var(--white);
  border: 2px solid var(--white);
}
.cookie-btn-decline:hover { background: rgba(255,255,255,0.1); }

.cookie-policy-inline {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-policy-inline:hover { color: var(--gold-dark); }

@media (max-width: 640px) {
  #cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner-inner { gap: 1rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; justify-content: center; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .service-split-inner { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .tquotes-grid { grid-template-columns: 1fr; }

  .contact-cta-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-stats-inner { flex-wrap: wrap; }
  .trust-stat { flex: 0 0 calc(50% - 2rem); }
  .trust-divider:nth-child(2) { display: none; }
  .trust-divider:nth-child(4) { display: none; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .utility-bar { display: none; }

  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }

  .hero-slider { min-height: calc(100svh - var(--header-h)); }

  .hero-editorial {
    min-height: calc(100svh - var(--header-h));
    padding: 4rem 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-editorial-inner { padding: 0 1.25rem; width: 100%; }
  .hero-est { margin-bottom: 0.5rem; }
  .hero-rule { margin-bottom: 1rem; }
  .hero-masthead-wrap { margin-bottom: 1rem; }

  .hero-editorial-body {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
  }
  .hero-standfirst { max-width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  /* Quote slides become absolutely positioned so they don't inflate the grid height */
  .hero-slide--quote {
    position: absolute;
    inset: 0;
  }

  .hero-slide--quote { padding: 3rem 0 3.5rem; }
  .hero-quote-inner { padding: 0 1.25rem; }
  .hero-quote-mark { font-size: 5rem; margin-bottom: 1.25rem; }

  .service-split { padding: 3rem 0; }
  .service-card { padding: 1.75rem 1.5rem; }

  .trust-stats { padding: 2.5rem 0; }
  .trust-stats-inner { gap: 1rem; }
  .trust-stat { flex: 0 0 calc(50% - 0.5rem); }
  .trust-divider { display: none; }

  .practice-row {
    grid-template-columns: 3.5rem 1fr 1.25rem;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .practice-num { font-size: 1.5rem; }

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

  .about-split-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-split-image img { height: 260px; }
  .about-split-content { padding: 0; }
  .about-split-actions { flex-direction: column; }
  .about-split-actions .btn { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 2rem; }
}

/* Very small */
@media (max-width: 380px) {
  .masthead-name { letter-spacing: -0.03em; }
}

/* =========================================================
   INNER PAGES — SHARED COMPONENTS
   ========================================================= */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: var(--gold); font-weight: 600; }

/* Page Hero */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: rgba(196,151,42,0.04);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero-standfirst {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.7;
}

/* Inner Sections */
.inner-section { padding: 5rem 0; }
.inner-section--cream { background: var(--cream); }
.inner-section--white { background: var(--white); }
.inner-section--navy { background: var(--navy); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 5rem;
  align-items: start;
}
.two-col--even { grid-template-columns: 1fr 1fr; }
.two-col--reverse > *:first-child { order: 2; }
.two-col--reverse > *:last-child { order: 1; }

/* Image placeholders */
.img-placeholder {
  background: var(--cream-dark);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-mid);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  aspect-ratio: 4/3;
}
.img-placeholder svg { color: var(--border); opacity: 0.7; }
.img-placeholder--portrait { aspect-ratio: 3/4; }
.img-placeholder--wide { aspect-ratio: 16/9; }
.img-placeholder--square { aspect-ratio: 1; }

/* Lead / italic intro */
.lead-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Prose */
.prose p {
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

/* Key facts card (navy sidebar) */
.key-facts-card {
  background: var(--navy);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.key-facts-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.key-fact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.key-fact-row:first-of-type { padding-top: 0; }
.key-fact-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.key-fact-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 4rem;
}
.key-fact-label { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.4; padding-top: 0.25rem; }
.key-fact-label strong { display: block; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.125rem; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(196,151,42,0.15));
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.3125rem;
  top: 0.5rem;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.timeline-event { font-size: 0.9375rem; color: var(--text-dark); line-height: 1.6; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s var(--ease-out);
}
.value-card:hover { transform: translateY(-3px); }
.value-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
}
.value-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* Director cards */
.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.director-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gold);
  transition: box-shadow 0.2s;
}
.director-card:hover { box-shadow: 0 12px 40px rgba(26,39,68,0.18); }
.director-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #1e2e52 0%, #0d1526 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.director-photo svg { color: rgba(255,255,255,0.15); }
.director-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.director-info { padding: 2rem; }
.director-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.director-role {
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.director-bio { font-size: 0.9375rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 1.25rem; }
.director-specialisms { border-top: 1px solid var(--border); padding-top: 1rem; }
.director-specialisms-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.director-specialisms ul { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.director-specialisms li {
  font-size: 0.8rem;
  background: var(--cream);
  color: var(--navy);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  font-weight: 500;
}

/* Team member grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(196,151,42,0.15);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  aspect-ratio: 3/4;
  background: var(--navy);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(196,151,42,0.4), 0 16px 40px rgba(0,0,0,0.3);
}
.team-card-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e2e52 0%, #0d1526 100%);
}
.team-card-photo svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); color: rgba(255,255,255,0.15); }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.92) 0%, rgba(10,18,40,0.4) 45%, transparent 70%);
  pointer-events: none;
}
.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.875rem 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.3s var(--ease-out);
}
.team-card[data-member] .team-card-info {
  transform: translateY(28px);
}
.team-card[data-member]:hover .team-card-info,
.team-card[data-member]:focus-visible .team-card-info {
  transform: translateY(0);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}
.team-card-role {
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0;
  line-height: 1.35;
}

/* Practice area detail */
.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.coverage-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Why choose us — 3-col */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--gold);
}
.why-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
  user-select: none;
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-card-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* FAQ accordion */
.faq-list { margin-top: 2rem; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1rem 1.5rem 0; font-size: 0.9375rem; color: var(--text-mid); line-height: 1.8; }

/* Related areas */
.related-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.related-area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.related-area-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* News */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 3rem;
}
.news-featured-img {
  background: var(--cream-dark);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-mid);
  font-size: 0.875rem;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.news-featured-img svg { color: var(--border); opacity: 0.7; }
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.news-featured:hover .news-featured-img img { transform: scale(1.04); }
.news-featured-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.news-featured-date { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.news-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.news-featured-title:hover { color: var(--gold); }
.news-featured-excerpt { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,39,68,0.1); }
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-mid);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.news-card-img svg { color: var(--border); opacity: 0.7; }
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.news-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-card-date { font-size: 0.8125rem; color: var(--text-mid); }
.news-read-time { font-size: 0.8125rem; color: var(--text-mid); }
.news-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.news-card-title:hover { color: var(--gold); }
.news-card-excerpt { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.news-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  transition: gap 0.15s;
}
.news-card-link:hover { gap: 0.625rem; }

/* Careers */
.vacancy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vacancy-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(196,151,42,0.1); }
.vacancy-info { flex: 1; }
.vacancy-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.vacancy-meta { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.vacancy-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 2px;
}
.vacancy-tag--type { background: var(--gold-light); color: var(--gold-dark); }
.vacancy-tag--loc { background: var(--cream); color: var(--text-mid); border: 1px solid var(--border); }
.no-vacancies {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.no-vacancies h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.no-vacancies p { color: var(--text-mid); font-size: 0.9375rem; }

/* Offices page */
.offices-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.office-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.office-detail-card:hover { box-shadow: 0 8px 32px rgba(26,39,68,0.1); border-color: var(--gold); }
.office-detail-map-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-mid);
  font-size: 0.8125rem;
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
}
.office-detail-map-ph svg { color: var(--border); opacity: 0.7; }
.office-detail-map-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.office-detail-card:hover .office-detail-map-ph img { transform: scale(1.04); }
.office-detail-body { padding: 1.75rem; }
.office-detail-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.office-detail-address { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; margin: 0.875rem 0 1rem; }
.office-detail-contacts {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.office-detail-contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.office-detail-contact svg { color: var(--gold); flex-shrink: 0; }
.office-detail-contact:hover { color: var(--gold); }
.office-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.875rem;
  transition: gap 0.15s;
}
.office-directions:hover { gap: 0.625rem; }

/* Full-width map placeholder */
.map-full-placeholder {
  width: 100%;
  height: 400px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.map-full-placeholder svg { color: var(--border); opacity: 0.7; }
.map-full-placeholder p { font-size: 0.9375rem; }

/* Accreditations strip */
.accreditations-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.accreditations-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 1.5rem;
}
.accreditations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.accreditation-badge { display: flex; align-items: center; justify-content: center; }
.accreditation-img {
  max-height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}
.accreditation-badge:hover .accreditation-img { filter: grayscale(0%); opacity: 1; }

/* Contact page */
.contact-page-section { background: var(--white); padding: 5rem 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-info-intro { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-methods-white {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.contact-method-white {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.contact-method-white:hover { border-color: var(--gold); background: var(--cream-dark); }
.contact-method-icon-white {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.method-label-dark { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.125rem; }
.method-value-dark { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); }
.contact-offices-mini { border-top: 1px solid var(--border); padding-top: 2rem; margin-top: 2rem; }
.contact-offices-mini-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 1rem; }
.contact-office-mini-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.contact-office-mini-item:last-child { border-bottom: none; }
.contact-office-mini-name { font-weight: 600; color: var(--navy); }
.contact-office-mini-phone { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.875rem; transition: color 0.15s; }
.contact-office-mini-phone:hover { color: var(--navy); }

/* White-background form */
.form-block-white {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-title-dark { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.form-subtitle-dark { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1.75rem; }
.form-group-white {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.form-group-white label { font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); }
.form-group-white label span { color: var(--gold); }
.form-group-white input,
.form-group-white select,
.form-group-white textarea {
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group-white input::placeholder,
.form-group-white textarea::placeholder { color: var(--text-mid); opacity: 0.6; }
.form-group-white input:focus,
.form-group-white select:focus,
.form-group-white textarea:focus { outline: none; border-color: var(--gold); background: var(--cream); }
.form-group-white textarea { resize: vertical; min-height: 120px; }
.form-group-white select { color: var(--text-dark); }

/* =========================================================
   RESPONSIVE — INNER PAGES
   ========================================================= */
@media (max-width: 960px) {
  .two-col,
  .two-col--even { grid-template-columns: 1fr; gap: 3rem; }
  .two-col--reverse > *:first-child { order: 0; }
  .two-col--reverse > *:last-child { order: 0; }
  .directors-grid { grid-template-columns: 1fr; max-width: 600px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 220px; }
  .offices-detail-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .coverage-list { grid-template-columns: 1fr; }
  .key-facts-card { position: static; }
}
@media (max-width: 640px) {
  .page-hero { padding: 2.5rem 0 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .inner-section { padding: 3.5rem 0; }
  .vacancy-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .offices-detail-grid { grid-template-columns: 1fr; }
  .news-featured-body { padding: 2rem 1.5rem; }
  .form-block-white { padding: 1.75rem 1.25rem; }
  .accreditations-logos { gap: 1.25rem; }
}

/* =========================================================
   PULL QUOTE STRIP
   ========================================================= */
.about-quote-strip {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.quote-source {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.quote-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .about-quote-strip { padding: 3.5rem 0; }
}

/* =========================================================
   I WOULD LIKE TO BAR
   ========================================================= */
.iwlt-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
  background: var(--navy);
}

.iwlt-bar {
  background: var(--navy);
  padding: 1.5rem 0;
}

.iwlt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.iwlt-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.iwlt-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  width: 100%;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.iwlt-select-wrap {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 640px;
}

.iwlt-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.iwlt-select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.iwlt-select option {
  background: var(--navy);
  color: var(--white);
}

.iwlt-chevron {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.1rem;
  pointer-events: none;
}

.iwlt-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .iwlt-label { display: none; }
  .iwlt-inner { gap: 0.75rem; }
}

/* =========================================================
   MOBILE: ACCESSIBILITY & TAP TARGET FIXES
   ========================================================= */

/* Hero slider dots — expand touch target via ::before without visual side effects */
@media (max-width: 960px) {
  .hero-dot {
    position: relative;
    padding: 0;
  }
  .hero-dot::before {
    content: '';
    position: absolute;
    inset: -18px;
  }
  .hero-dot.is-active {
    transform: scale(1.35);
  }
}

@media (max-width: 640px) {
  /* IWLT bar — prevent select from pushing content wider than viewport at 375px */
  .iwlt-select-wrap { min-width: 0; }

  /* Footer nav links — padding was ~4px giving ~33px height; increase to ≥44px */
  .footer-nav-col ul li a { padding: 0.75rem 0; }

  /* Footer offices list — stack phone below name and make each phone tappable */
  .footer-offices-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    padding: 0.75rem 0;
  }
  .footer-offices-list li a {
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  /* Office card phone links — no padding set, touch target was line-height only (~27px) */
  .office-card-phone { padding: 0.625rem 0; }
  .office-card-phone-alt { padding: 0.25rem 0 0.625rem; }
}

/* =========================================================
   TEAM PROFILE MODAL
   ========================================================= */
.team-card[data-member] { cursor: pointer; }
.team-card[data-member]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.team-card-view {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,151,42,0.9);
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transition: opacity 0.2s 0.1s, gap 0.2s;
}
.team-card[data-member]:hover .team-card-view,
.team-card[data-member]:focus-visible .team-card-view { opacity: 1; }
.team-card[data-member]:hover .team-card-view { gap: 0.5rem; }

.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,10,25,0.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.team-modal-overlay.is-open { opacity: 1; }
.team-modal-overlay[hidden] { display: none; }

.team-modal {
  background: rgba(13, 26, 54, 0.88);
  border-radius: 0;
  height: 420px;
  overflow: visible;
  display: inline-flex;
  align-items: stretch;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  max-width: min(1060px, 92vw);
}
.team-modal-overlay.is-open .team-modal { transform: translateY(0); }

.team-modal-photo-col {
  flex-shrink: 0;
  min-width: 180px;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.team-modal-photo-col img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  position: relative;
  z-index: 1;
}

.team-modal-body {
  position: relative;
  z-index: 2;
  padding: 2rem 2.25rem 1.75rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
}

.team-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.team-modal-close:hover { background: rgba(255,255,255,0.32); color: var(--white); }
.team-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.team-modal-name {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.team-modal-quals {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
  letter-spacing: 0;
  text-transform: none;
}
.team-modal-tags { display: none; }
.team-modal-divider { display: none; }

.team-modal-bio p {
  color: rgba(255,255,255,0.88);
  font-size: 0.8125rem;
  line-height: 1.72;
  margin: 0 0 0.625rem;
}
.team-modal-bio p:last-child { margin-bottom: 0; }

.team-modal-panels { display: none; }

@media (max-width: 760px) {
  .team-modal-overlay {
    padding: 1rem;
    align-items: center;
  }
  .team-modal {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    max-height: calc(100svh - 2rem);
    overflow: hidden;
    width: 100% !important;
    max-width: 100%;
  }
  .team-modal-photo-col {
    height: 260px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }
  .team-modal-photo-col img {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
  }
  .team-modal-body {
    flex: 1;
    min-height: 0;
    width: 100% !important;
    padding: 1.25rem 1.25rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .team-modal-body::-webkit-scrollbar { display: none; }
  .team-modal-close { top: 0.75rem; right: 0.75rem; }
}
