/* ============================================================
   WORKLY LAW — Redesigned v3 (with logo)
   Clean, white, subtle — elevated law firm aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #0F0F0F;
  --navy-mid:    #1C1C1C;
  --gold:        #4DA2B8;
  --gold-light:  #6BBDCF;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --pale:        #F4F3EF;
  --rule:        #E8E6E0;
  --light-text:  #6B6B6B;
  --mid-text:    #444444;
  --dark-text:   #1A1A1A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;

  --max-width: 1240px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Offset anchor scroll targets to clear the fixed nav (36px utility + 72px main = 108px) */
[id] { scroll-margin-top: 116px; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--mid-text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ============================
   NAVIGATION — Two-tier (matches original)
   ============================ */

/* --- Utility bar (top strip) --- */
.nav-utility {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  height: 36px;
  display: flex;
  align-items: center;
}
.nav-utility-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) { .nav-utility-inner { padding: 0 24px; } }
.nav-utility-left {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--mid-text);
  letter-spacing: 0.2px;
}
.nav-utility-left a {
  font-weight: 600;
  color: var(--dark-text);
  border-bottom: 1px solid var(--dark-text);
  padding-bottom: 0;
  transition: color var(--transition);
}
.nav-utility-left a:hover { color: var(--gold); border-color: var(--gold); }
.nav-utility-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-utility-right a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--mid-text);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-utility-right a:hover { color: var(--dark-text); }
@media (max-width: 900px) { .nav-utility { display: none; } }

/* --- Main nav bar --- */
.site-nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition), top var(--transition);
}
.site-nav.scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(15,15,15,0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid-text);
  padding: 8px 20px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
  letter-spacing: 0.2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--dark-text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 20px; right: 20px;
  height: 2px;
  background: var(--dark-text);
}

/* AI Sign-in link */
.nav-ai-signin {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--light-text);
  white-space: nowrap;
  transition: color var(--transition);
  letter-spacing: 0.2px;
  display: none !important;
}
.nav-divider { display: none !important; }
.nav-ai-signin:hover {
  color: var(--gold);
}

/* Vertical divider inside nav */
.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--rule);
  flex-shrink: 0;
  margin: 0 8px;
}

/* Book a Consultation CTA */
.nav-book-btn {
  font-family: var(--font-ui) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background: var(--dark-text) !important;
  padding: 13px 28px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background var(--transition) !important;
  flex-shrink: 0 !important;
  letter-spacing: 0.2px !important;
}
.nav-book-btn:hover { background: #222 !important; }
.nav-book-btn .book-arrows { font-size: 16px; letter-spacing: -2px; }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); border-radius: 1px;
}

@media (max-width: 1000px) {
  .site-nav { top: 0; }
  .nav-links { display: none; }
  .nav-divider { display: none; }
  .nav-book-btn { display: none !important; }
  .hero-book-btn.nav-book-btn { display: inline-flex !important; }
  .nav-hamburger { display: flex; }
  .nav-ai-signin {
    margin-left: auto;
    margin-right: 16px;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open a { padding: 12px 8px; width: 100%; }
}

/* Push body content below fixed main nav only (utility bar is in normal flow) */
body { padding-top: 0; }
.nav-placeholder { height: 72px; }
@media (max-width: 900px) { .nav-placeholder { height: 72px; } }

/* ============================
   HERO — Carousel
   ============================ */
.hero {
  padding-top: 0;
  min-height: clamp(380px, calc(100vh - 360px), 72vh);
  position: relative;
  overflow: hidden;
}

/* Each slide stacks absolutely, crossfades */
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 55fr 45fr;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
/* Spacer so the section has height (first slide is absolute) */
.hero-sizer {
  min-height: clamp(380px, calc(100vh - 360px), 72vh);
  pointer-events: none;
  visibility: hidden;
  display: grid;
  grid-template-columns: 55fr 45fr;
}
.hero-sizer-half { min-height: clamp(380px, calc(100vh - 360px), 72vh); }

/* Dot navigation */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: max(48px, calc((100vw - 1240px) / 2 + 48px));
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 32px;
  height: 3px;
  border: none;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, width 0.35s ease;
  flex-shrink: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 52px;
}

/* ── LEFT half: white bg, text content ── */
.hero-left {
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 64px 52px max(48px, calc((100vw - 1240px) / 2 + 48px));
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(244,243,239,0.7) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.5;
}

/* ── RIGHT half: dark bg, SVG image behind, panel on top ── */
.hero-right {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 36px 40px 36px 40px;
}
.hero-right-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-right-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Geometric photo background — fills the right panel like cover */
.hero-geo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

/* Person photo — anchored to bottom of hero-right */
.hero-person-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 96%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  z-index: 10;
  display: block;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 8%);
  mask-image: linear-gradient(to top, transparent 0%, black 8%);
}
/* Team photo variant — cover instead of contain */
.hero-team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  left: 0;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}
@media (max-width: 768px) {
  .hero-person-photo { height: 75%; }
  .hero-team-photo { height: 100%; }
}

/* Panel floats over the dark bg */
.hero-panel {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 28px 32px;
  position: relative;
  z-index: 10;
  width: 100%;
  backdrop-filter: blur(4px);
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Text content inside left half */
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 36px; height: 1px;
  background: var(--dark-text);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy-mid);
  font-weight: 300;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  position: relative; z-index: 1;
}
.hero-lead {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  position: relative; z-index: 1;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Panel content */
.hero-panel-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.hero-area-list { display: flex; flex-direction: column; }
.hero-area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: all var(--transition);
}
.hero-area-item:last-child { border-bottom: none; }
.hero-area-item:hover .area-name { color: var(--gold); }
.hero-area-item:hover .area-arrow { transform: translateX(4px); }
.area-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.area-arrow { font-size: 14px; color: var(--gold); transition: transform 0.2s ease; }

/* ── Name overlay ── */
.hero-signature {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 22px 36px 18px 28px;
  border-radius: 0 4px 4px 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
}
.signature-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
@keyframes signDraw {
  to { stroke-dashoffset: 0; }
}
.signature-title {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  padding-left: 2px;
}
.signature-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 8px;
}
@keyframes signFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  to { opacity: 0.6; }
}

/* Signature rotate */
.sig-rotate {
  display: grid;
}
.sig-item {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.sig-item.sig-item-active {
  opacity: 1;
}
.sig-lexpert {
  height: 44px;
  width: auto;
  display: block;
}
.sig-google {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sig-google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sig-google-stars {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.sig-google-rating {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.sig-stars {
  font-size: 14px;
  color: #FBBC05;
  letter-spacing: 1px;
}
.sig-google-count {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-left: 2px;
}

/* ── Slide 2 dark overlay (sits between BG image and Practice Areas card) ── */
.hero-right-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


@media (max-width: 1024px) {
  .hero-slide, .hero-sizer { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 48px 40px 48px 40px; }
  .hero-signature { bottom: 28px; left: 24px; }
  .signature-svg { width: 180px; height: 52px; }
}
@media (max-width: 768px) {
  .hero-slide, .hero-sizer { grid-template-columns: 1fr; }
  .hero-sizer { min-height: auto; }
  .hero-left { padding: 60px 24px 64px; }
  .hero-right { min-height: 420px; padding: 40px 24px; }
  .hero-dots { bottom: 24px; left: 24px; }
  .hero-signature { bottom: 20px; left: 20px; }
  .signature-svg { width: 160px; height: 46px; }
  .signature-title { font-size: 9.5px; letter-spacing: 2px; }
}

/* ============================
   MEDIA LOGO TICKER
   ============================ */
.logo-ticker {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Right fade edge only — left is handled by solid label bg */
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, var(--white) 40%, transparent 100%);
}

/* "As Seen In" label — solid white background, logos disappear cleanly behind it */
.logo-ticker-label {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-text);
  white-space: nowrap;
  /* solid white bg so scrolling logos disappear cleanly beneath it */
  background: var(--white);
  padding: 0 40px 0 max(48px, calc((100vw - 1240px) / 2 + 48px));
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  /* subtle right shadow to soften where solid meets track */
  box-shadow: 12px 0 18px 10px var(--white);
}
.logo-ticker-label::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 24px;
  background: var(--rule);
  margin-left: 36px;
  vertical-align: middle;
}

/* Scrolling track */
.logo-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
  flex-shrink: 0;
}
.logo-ticker-track:hover {
  animation-play-state: paused;
}

/* Individual logo item */
.ticker-logo {
  padding: 0 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ticker-logo img {
  height: 118px;
  width: 118px;
  max-width: 118px;
  display: block;
  object-fit: contain;
  /* Already grayscale — just blend white bg away and show at full clarity */
  mix-blend-mode: multiply;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.ticker-logo:hover img {
  opacity: 1;
}

/* Divider between logos */
.ticker-logo + .ticker-logo {
  border-left: 1px solid var(--rule);
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause-on-focus for accessibility */
.logo-ticker:focus-within .logo-ticker-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logo-ticker-label { padding: 0 20px 0 24px; font-size: 9px; }
  .ticker-logo { padding: 0 32px; }
  .ticker-logo img { height: 85px; width: 85px; max-width: 85px; mix-blend-mode: multiply; }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-bracket {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  text-transform: none;
  letter-spacing: 0.2px;
  padding: 14px 0 0 16px;
  border: none;
  border-top: 2px solid var(--dark-text);
  border-left: 2px solid var(--dark-text);
  background: none;
  display: inline-block;
  transition: color var(--transition), border-color var(--transition);
}
.btn-bracket:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-sm { padding: 10px 22px; font-size: 11px; letter-spacing: 0.8px; }
.btn-lg { padding: 17px 40px; font-size: 13px; }

/* ============================
   TYPOGRAPHY
   ============================ */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--light-text);
  line-height: 1.8;
  max-width: 580px;
}
.section-lead.centered { margin: 0 auto; text-align: center; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

/* ============================
   SECTIONS
   ============================ */
section { padding: 140px 0; }
.bg-pale { background: var(--pale); }
.bg-white { background: var(--white); }

/* ============================
   SERVICES GRID
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: 44px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: var(--white);
  transition: background var(--transition);
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:hover { background: var(--pale); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-style: italic;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--light-text);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; }

/* ============================
   ABOUT
   ============================ */
.about-light {
  background: var(--pale);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 140px 0;
}

/* ── About split (hero-style rows) ── */
.about-split {
  padding: 0;
}
.about-split-row {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 520px;
}
.about-split-row-reverse {
  grid-template-columns: 45fr 55fr;
  direction: rtl;
}
.about-split-row-reverse > * {
  direction: ltr;
}
.about-split-left {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px max(48px, calc((100vw - 1240px) / 2 + 48px));
}
.about-split-row-reverse .about-split-left {
  padding: 80px max(48px, calc((100vw - 1240px) / 2 + 48px)) 80px 64px;
}
.about-split-left .lead-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--mid-text);
  margin-bottom: 18px;
}
.about-split-left p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 16px;
}
.about-split-attribution {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin-top: 8px;
}
.about-split-right {
  position: relative;
  overflow: hidden;
}
.about-split-dark {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 80px 64px;
}
.about-split-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/4workly_law_employment_HR_rotonto.png') center/cover no-repeat;
  opacity: 0.12;
}
.about-split-right-content {
  position: relative;
  z-index: 1;
}
.about-split-right-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-split-right-content p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.about-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.6) 0%, transparent 45%, transparent 55%, rgba(15,15,15,0.5) 100%);
}
@media (max-width: 768px) {
  .about-split-row,
  .about-split-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .about-split-row-reverse > * {
    direction: ltr;
  }
  .about-split-left {
    padding: 64px 24px;
  }
  .about-split-row-reverse .about-split-left {
    padding: 64px 24px;
  }
  .about-split-dark {
    padding: 64px 24px;
    min-height: 360px;
  }
  .about-split-image {
    min-height: 300px;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-left p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--mid-text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-left p.lead-text {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  background: var(--white);
}
.stat-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat-cell:nth-child(2n) { border-right: none; }
.stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-text);
  line-height: 1.5;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ============================
   WHO WE SERVE
   ============================ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
}
@media (max-width: 900px) { .serve-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .serve-grid { grid-template-columns: 1fr; } }
.serve-card {
  padding: 44px 32px;
  border-right: 1px solid var(--rule);
  transition: background var(--transition);
}
.serve-card:last-child { border-right: none; }
.serve-card:hover { background: var(--pale); }
.serve-icon { font-size: 26px; margin-bottom: 20px; display: block; }
.serve-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.serve-card p { font-size: 14.5px; color: var(--light-text); line-height: 1.75; margin-bottom: 20px; }
.serve-link {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.serve-link:hover { gap: 10px; }

/* ============================
   TEAM
   ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card {
  border-right: 1px solid var(--rule);
  overflow: hidden;
  background: var(--white);
  transition: background var(--transition);
}
.team-card:last-child { border-right: none; }
.team-card:hover { background: var(--pale); }
.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(175deg, var(--pale) 0%, var(--rule) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-initials {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: rgba(15,15,15,0.25);
  font-style: italic;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(15,15,15,0.5) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.team-info { padding: 24px 24px 28px; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-ui);
  font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.team-info p { font-family: var(--font-body); font-size: 14.5px; color: var(--light-text); line-height: 1.7; margin-bottom: 14px; }
.team-link {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  padding-bottom: 2px; border-bottom: 1px solid var(--rule);
  transition: border-color var(--transition), color var(--transition);
}
.team-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================
   NEWS
   ============================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  border-right: 1px solid var(--rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.news-card:last-child { border-right: none; }
.news-card:hover { background: var(--pale); }
.news-tag {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700;
  color: var(--navy); line-height: 1.3; margin-bottom: 12px;
}
.news-card p {
  font-family: var(--font-body);
  font-size: 15px; color: var(--light-text); line-height: 1.75;
  flex: 1; margin-bottom: 24px;
}
.news-read {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.news-read:hover { gap: 10px; }

/* ============================
   CTA STRIP
   ============================ */
.cta-strip {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(28,28,28,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 0% 50%, rgba(77,162,184,0.12) 0%, transparent 50%);
}
.cta-strip > .container { position: relative; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  max-width: 560px;
}
.cta-strip h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.cta-strip-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================
   LET'S TALK
   ============================ */
.lets-talk {
  background: var(--white);
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.lets-talk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lets-talk-heading {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.lets-talk-heading em {
  font-style: italic;
  color: var(--gold);
}
.lets-talk-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--mid-text);
  line-height: 1.7;
  margin-bottom: 36px;
}
.lets-talk-link {
  color: var(--dark-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  transition: color var(--transition);
}
.lets-talk-link:hover {
  color: var(--gold);
}
.lets-talk-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lets-talk { padding: 80px 0; }
  .lets-talk-inner { grid-template-columns: 1fr; gap: 40px; }
  .lets-talk-heading { font-size: 64px; }
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
/* Footer logo — white version via invert */
.footer-logo {
  height: 24px;
  width: auto;
  filter: invert(1) brightness(2);
  opacity: 0.85;
  margin-bottom: 20px;
  display: block;
}
.footer-about {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.footer-address {
  font-family: var(--font-body);
  font-size: 14.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 8px;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 14.5px; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 14px;
  padding: 24px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a {
  font-family: var(--font-ui);
  font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.3px;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom .links { display: flex; gap: 20px; }

/* ============================
   MEDIA STRIP
   ============================ */
.media-strip {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.media-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.media-label {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--light-text);
  padding-right: 40px; border-right: 1px solid var(--rule); margin-right: 40px;
  flex-shrink: 0;
}
.media-item {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: rgba(15,15,15,0.4);
  padding: 0 28px; border-right: 1px solid var(--rule);
  white-space: nowrap;
}
.media-item:last-child { border-right: none; }

/* ============================
   IN THE NEWS — Fasken-style cards
   ============================ */
.in-the-news { padding: 140px 0; }
.itn-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.itn-marker {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.itn-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.itn-desc {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--light-text);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.itn-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .itn-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .itn-grid { grid-template-columns: 1fr; } }
.itn-card { display: flex; flex-direction: column; }
.itn-card:hover .itn-card-title { color: var(--gold); }
.itn-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--navy-mid);
  position: relative;
}
.itn-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--card-gradient, linear-gradient(135deg, rgba(15,15,15,0.8) 0%, rgba(77,162,184,0.5) 50%, rgba(28,28,28,0.85) 100%));
  opacity: 1;
  transition: opacity 0.4s ease;
}
.itn-card:hover .itn-card-img::after {
  opacity: 0.5;
}
/* Featured card taller image */
.itn-grid .itn-card:first-child .itn-card-img { aspect-ratio: 16/10; }
.itn-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.itn-card:hover .itn-card-img img { transform: scale(1.03); }
/* Placeholder gradient for cards without photos */
.itn-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.itn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.itn-cat {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-text);
}
.itn-date {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--light-text);
  letter-spacing: 0.3px;
}
.itn-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  transition: color var(--transition);
}
.itn-card:not(:first-child) .itn-card-title { font-size: 20px; }
.itn-excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--light-text);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}
/* Media badge on blog cards */
.itn-card-img .media-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 56px;
  width: auto;
  border-radius: 0 4px 0 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.itn-read-more {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--dark-text);
  padding-bottom: 1px;
  width: fit-content;
  transition: color var(--transition), border-color var(--transition);
}
.itn-read-more:hover { color: var(--gold); border-color: var(--gold); }
.itn-all-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.btn-all-news {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  border: 1.5px solid var(--dark-text);
  padding: 12px 32px;
  border-radius: 100px;
  background: transparent;
  transition: all var(--transition);
  display: inline-block;
}
.btn-all-news:hover { background: var(--dark-text); color: var(--white); }

/* ============================
   ON THE RADIO
   ============================ */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.radio-card {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.radio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.radio-card-embed {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.radio-card-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.radio-card-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.radio-card-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.radio-card-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.radio-card-info p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .radio-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .radio-card { grid-template-columns: 1fr; min-height: auto; }
  .radio-card-embed { min-height: 200px; }
  .radio-card-info { padding: 24px 20px; }
  .radio-card-info h3 { font-size: 18px; }
}

/* ============================
   PAGE HERO
   ============================ */
.page-hero {
  padding-top: 0;
  background: var(--pale);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.page-hero-inner { padding: 40px 0 72px; position: relative; }
.breadcrumb {
  font-family: var(--font-ui);
  font-size: 11.5px; color: var(--light-text); letter-spacing: 0.3px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--light-text); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.page-hero .page-lead {
  font-family: var(--font-body);
  font-size: 19px; color: var(--light-text);
  max-width: 600px; line-height: 1.8;
}

/* ============================
   CONTENT / TWO-COL
   ============================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1024px) { .two-col { grid-template-columns: 1fr; } }
.content-aside {
  position: sticky;
  top: 120px;
}
.aside-card {
  background: var(--pale);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.aside-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.aside-list {
  list-style: none;
  padding: 0;
}
.aside-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--mid-text);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.5;
}
.aside-list li:last-child {
  border-bottom: none;
}
.aside-cta {
  background: var(--navy);
  padding: 32px 28px;
  margin-top: 24px;
}
.aside-cta p {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.aside-cta .btn {
  margin-top: 0;
}
.content-body {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.85; color: var(--mid-text);
}
.content-body h2 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 600;
  color: var(--navy); margin-top: 56px; margin-bottom: 18px;
  padding-top: 40px; border-top: 1px solid var(--rule);
  letter-spacing: -0.3px;
}
.content-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-body h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: var(--navy); margin-top: 36px; margin-bottom: 12px;
}
.content-body p { margin-bottom: 20px; }
.content-body ul { list-style: none; padding: 0; margin-bottom: 20px; }
.content-body ul li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--rule);
  position: relative; font-size: 16.5px;
}
.content-body ul li:first-child { border-top: 1px solid var(--rule); }
.content-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 1px; background: var(--gold);
}
.content-body strong { color: var(--navy); font-weight: 600; }
.sticky-sidebar { position: sticky; top: 100px; }
.sidebar-box {
  border: 1px solid var(--rule); border-top: 2px solid var(--gold);
  padding: 32px 28px; background: var(--white); margin-bottom: 20px;
}
.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--rule);
}
.sidebar-box ul li {
  font-family: var(--font-body);
  font-size: 15px; padding: 9px 0;
  border-bottom: 1px solid var(--rule); color: var(--mid-text);
}
.sidebar-box ul li:last-child { border-bottom: none; }
.sidebar-box ul li::before { content: '— '; color: var(--gold); font-family: var(--font-display); }
.sidebar-cta { background: var(--navy); padding: 32px 28px; margin-bottom: 20px; }
.sidebar-cta h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.sidebar-cta p {
  font-family: var(--font-body);
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 20px;
}
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ============================
   CONTACT
   ============================ */
.contact-form { max-width: 680px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--rule); border-radius: 0;
  font-family: var(--font-body); font-size: 16px;
  color: var(--dark-text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(77,162,184,0.08);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.contact-info-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); margin-bottom: 80px;
}
@media (max-width: 900px) { .contact-info-row { grid-template-columns: 1fr 1fr; } }
.contact-info-cell { padding: 36px 28px; border-right: 1px solid var(--rule); }
.contact-info-cell:last-child { border-right: none; }
.contact-info-cell h4 {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.contact-info-cell p, .contact-info-cell a {
  font-family: var(--font-body);
  font-size: 15.5px; color: var(--mid-text); line-height: 1.65;
}

/* ============================
   TEAM PROFILES
   ============================ */
.lawyer-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.lawyer-profile:last-child { border-bottom: none; }
.lawyer-photo {
  width: 220px; height: 280px;
  background: var(--pale); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300; font-style: italic;
  color: rgba(15,15,15,0.2);
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.lawyer-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lawyer-initials {
  position: relative; z-index: 1;
}
.lawyer-avatar-circle {
  width: 220px; height: 280px;
  background: var(--pale); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300; font-style: italic;
  color: rgba(15,15,15,0.2);
  position: relative; overflow: hidden;
}
.lawyer-avatar-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lawyer-links { display: flex; flex-direction: column; gap: 8px; }
.lawyer-links a {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--navy);
  padding: 10px 16px; border: 1px solid var(--rule);
  text-align: center;
  transition: all var(--transition); background: var(--white);
}
.lawyer-links a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lawyer-bio h2 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px; letter-spacing: -0.5px;
}
.lawyer-bio .role {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule); display: block;
}
.lawyer-bio p {
  font-family: var(--font-body);
  font-size: 16.5px; line-height: 1.85; color: var(--mid-text); margin-bottom: 18px;
}
.practice-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ptag {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--navy); background: var(--pale);
  border: 1px solid var(--rule); padding: 5px 14px;
}
@media (max-width: 768px) { .lawyer-profile { grid-template-columns: 1fr; gap: 32px; } }

/* ============================
   MISC
   ============================ */
.filters { display: flex; gap: 4px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.5px;
  padding: 9px 18px; border: 1px solid var(--rule);
  background: var(--white); color: var(--mid-text); cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.disclaimer-strip {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  background: var(--off-white);
}
.disclaimer-strip p {
  font-family: var(--font-ui);
  font-size: 12px; color: var(--light-text); line-height: 1.7;
}
.form-success {
  display: none;
  background: var(--pale); border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  font-family: var(--font-body); font-size: 16px; color: var(--navy);
  margin-top: 16px;
}

/* ============================
   GEO DECORATION — Triangle motif
   ============================ */
@keyframes geo-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(2deg); }
  66%       { transform: translateY(4px) rotate(-1.5deg); }
}
@keyframes geo-pulse {
  0%, 100% { opacity: 0.12; }
  50%       { opacity: 0.22; }
}
@keyframes geo-drift {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  50%       { transform: translateX(6px) translateY(-10px) rotate(3deg); }
}

.geo-deco {
  position: absolute;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.geo-deco svg {
  display: block;
  overflow: visible;
}
/* individual triangle animations */
.geo-t1 { animation: geo-float 9s ease-in-out infinite; animation-delay: 0s; }
.geo-t2 { animation: geo-drift 12s ease-in-out infinite; animation-delay: -3s; }
.geo-t3 { animation: geo-float 8s ease-in-out infinite; animation-delay: -5s; }
.geo-t4 { animation: geo-pulse 11s ease-in-out infinite; animation-delay: -2s; }
.geo-t5 { animation: geo-drift 14s ease-in-out infinite; animation-delay: -7s; }
.geo-t6 { animation: geo-float 10s ease-in-out infinite; animation-delay: -4s; }

/* Placement variants */
.geo-deco--hero-right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  opacity: 0.85;
}
.geo-deco--cta {
  left: 0;
  top: 0;
  width: 320px;
  height: 320px;
  opacity: 0.6;
}
.geo-deco--page-hero {
  right: 0;
  bottom: 0;
  width: 280px;
  height: 280px;
  opacity: 0.7;
}
.geo-deco--footer {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  opacity: 0.45;
}

/* Sections with geo-deco must be position:relative / overflow:hidden */
.hero          { position: relative; overflow: hidden; }
.cta-strip     { position: relative; overflow: hidden; }
.page-hero     { position: relative; overflow: hidden; }
.site-footer   { position: relative; overflow: hidden; }

@media (max-width: 768px) {
  .geo-deco--hero-right { width: 240px; height: 240px; opacity: 0.5; }
  .geo-deco--cta        { width: 180px; height: 180px; }
  .geo-deco--page-hero  { width: 160px; height: 160px; }
  .geo-deco--footer     { display: none; }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE — iPad & Mobile
   ============================================================ */

/* ── iPad / Tablet (768px–1024px) ── */
@media (max-width: 1024px) {
  section { padding: 100px 0; }
  .about-split-row,
  .about-split-row-reverse { min-height: 420px; }

  .lets-talk { padding: 100px 0; }
  .lets-talk-heading { font-size: 80px; }

  .hero-signature { bottom: 24px; left: 0; padding: 18px 24px 14px 20px; }
  .signature-name { font-size: 22px; }
  .sig-lexpert { height: 38px; }

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

  .lawyer-page-hero-inner { grid-template-columns: 320px 1fr; gap: 48px; }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
  /* Global */
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Hero — keep 2-panel split on mobile, stacked vertically */
  .hero { min-height: auto; }
  .hero-slide, .hero-sizer { grid-template-columns: 1fr 1fr; }
  .hero-sizer { min-height: 360px; }
  .hero-sizer-half { min-height: 360px; }
  .hero-left { padding: 36px 20px 36px 20px; }
  .hero-left::after { display: none; }
  .hero h1 { font-size: 24px; }
  .hero-subtitle { font-size: 13px; margin-bottom: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-right { min-height: auto; padding: 24px 16px; }
  .hero-person-photo { height: 75%; left: 50%; transform: translateX(-50%); }
  .hero-signature { bottom: 12px; left: 0; padding: 14px 20px 12px 16px; }
  .signature-name { font-size: 14px; }
  .signature-title { font-size: 8px; letter-spacing: 1.5px; }
  .sig-lexpert { height: 32px; }
  .sig-google-icon { width: 16px; height: 16px; }
  .sig-google-rating { font-size: 14px; }
  .sig-stars { font-size: 11px; }
  .sig-google-count { font-size: 9px; }
  .hero-dots { bottom: 12px; left: 20px; }
  .hero-panel { padding: 16px 18px; }
  .hero-panel-title { font-size: 8px; margin-bottom: 10px; padding-bottom: 8px; }
  .area-name { font-size: 12px; }
  .area-arrow { font-size: 11px; }
  .hero-area-item { padding: 6px 0; }
  .hero-eyebrow { font-size: 8px; letter-spacing: 2px; margin-bottom: 10px; }
  .hero-eyebrow::before { width: 20px; }

  /* Logo ticker */
  .logo-ticker { padding: 20px 0; }
  .logo-ticker-label { padding: 0 16px 0 20px; font-size: 8px; }
  .ticker-logo { padding: 0 24px; }

  /* About split */
  .about-split-row,
  .about-split-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .about-split-row-reverse > * { direction: ltr; }
  .about-split-left { padding: 48px 20px; }
  .about-split-row-reverse .about-split-left { padding: 48px 20px; }
  .about-split-dark { padding: 48px 20px; min-height: 300px; }
  .about-split-image { min-height: 260px; }

  /* Practice areas */
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 32px 24px; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none; border-bottom: 1px solid var(--rule); }

  /* News / Blog cards */
  .itn-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Lets talk */
  .lets-talk { padding: 72px 0; }
  .lets-talk-inner { grid-template-columns: 1fr; gap: 32px; }
  .lets-talk-heading { font-size: 56px; }
  .lets-talk-actions { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom .links { justify-content: center; }

  /* CTA strip */
  .cta-strip-inner { text-align: center; }
  .cta-strip-actions { justify-content: center; flex-wrap: wrap; }

  /* Page hero */
  .page-hero-inner h1 { font-size: 36px; }

  /* Two-col layout (practice area pages) */
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .content-aside { position: static; }

  /* Lawyer profile pages */
  .lawyer-page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .lawyer-page-photo { max-width: 280px; }
  .lawyer-page-meta h1 { font-size: 36px; }
  .lawyer-page-body { grid-template-columns: 1fr; gap: 48px; }
  .lawyer-page-contacts { flex-direction: column; align-items: flex-start; }

  /* Lawyer nav strip (sticky bottom) */
  .lawyer-nav-strip-inner { flex-direction: column; text-align: center; gap: 16px; }

  /* Team page profiles */
  .lawyer-profile { grid-template-columns: 1fr; gap: 24px; }
  .lawyer-photo { max-width: 240px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  /* Blog pages */
  .blog-hero-img { max-height: 260px; }
  .blog-body { padding: 40px 0 60px; }

  /* Nav */
  .btn-bracket { font-size: 12px; padding: 10px 0 0 12px; }
}

/* ── Small phones (max 400px) ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 20px; }
  .hero-subtitle { font-size: 11px; }
  .hero-left { padding: 28px 14px; }
  .hero-right { padding: 16px 12px; }
  .hero-panel { padding: 12px 14px; }
  .area-name { font-size: 11px; }
  .hero-person-photo { height: 65%; }
  .signature-name { font-size: 12px; }
  .lets-talk-heading { font-size: 44px; }
  .about-stats { grid-template-columns: 1fr; }
  .page-hero-inner h1 { font-size: 28px; }
}

/* ============================
   Practice-Area Accordion
   ============================ */
.practice-accordion { margin-top: 12px; }
.practice-accordion .accordion-item {
  border-top: 1px solid var(--rule);
  overflow: hidden;
}
.practice-accordion .accordion-item:last-child { border-bottom: 1px solid var(--rule); }
.practice-accordion .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.2px;
  line-height: 1.3;
  transition: color var(--transition);
}
.practice-accordion .accordion-title:hover { color: var(--gold); }
.practice-accordion .accordion-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background var(--transition), border-color var(--transition), color var(--transition);
  font-size: 18px; line-height: 1;
  color: var(--navy);
}
.practice-accordion .accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.practice-accordion .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.practice-accordion .accordion-item.open .accordion-panel { max-height: 800px; }
.practice-accordion .accordion-content {
  padding: 0 4px 26px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid-text);
}
.practice-accordion .accordion-content p { margin: 0; }
