/* ═══════════════════════════════════════════════
   0. FONTS
═══════════════════════════════════════════════ */
@font-face {
  font-family: 'Chatime';
  src: url('../fonts/chatime.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nord';
  src: url('../fonts/nord-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:         #103058;
  --navy-deep:    #0A1F3D;
  --navy-darkest: #061833;
  --cream:        #D0C8C0;
  --cream-light:  #EBE5DC;
  --cream-deep:   #B8AFA4;
  --off-white:    #FAF7F2;
  --ink:          #1A1A1A;
  --body:         #5A5A5A;
  --hairline:     #E5E0D8;

  --ff-display: 'Chatime', Georgia, serif;
  --ff-ui:      'DM Sans', system-ui, sans-serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

/* ═══════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
h1, h2, .fl-area-item strong { letter-spacing: 2px !important; }
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }

/* ═══════════════════════════════════════════════
   3. UTILITIES
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.kicker {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25em;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9em 2.2em;
  border: 1.5px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  cursor: pointer;
  font-weight: 600;
}
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-cream { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-deep); border-color: var(--cream-deep); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2em;
  transition: gap 0.22s;
  width: fit-content;
}
.arrow-link:hover { gap: 0.75rem; }
.arrow-link svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   3.5 TOP BAR
═══════════════════════════════════════════════ */
.top-bar {
  background: var(--navy-darkest);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.55rem var(--gutter);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-contact a {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s;
  font-weight: 500;
}
.top-bar-contact a:hover { color: rgba(255,255,255,0.9); }
.top-bar-contact a svg { flex-shrink: 0; opacity: 0.6; }
.top-bar-contact a:hover svg { opacity: 1; }
.top-bar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.top-bar-social a:hover { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════
   4. NAVIGATION
═══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: var(--topbar-h, 40px);
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, padding 0.3s, top 0.3s;
}
.site-nav.scrolled {
  top: 0;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--hairline);
  border-bottom-color: var(--hairline);
  padding: 0.9rem var(--gutter);
}

/* Logo */
.nav-logo { display: flex; align-items: center; position: relative; height: 50px; min-width: 200px; }
.logo-img {
  height: 50px;
  width: auto;
  position: absolute;
  left: 0;
  transition: opacity 0.3s;
}
.logo-light { opacity: 1; }
.logo-dark  { opacity: 0; }
.site-nav.scrolled .logo-light { opacity: 0; pointer-events: none; }
.site-nav.scrolled .logo-dark  { opacity: 1; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links > a:not(.nav-book) {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  font-weight: 600;
}
.nav-links > a:not(.nav-book):hover { color: #fff; }
.site-nav.scrolled .nav-links > a:not(.nav-book) { color: var(--navy); }
.site-nav.scrolled .nav-links > a:not(.nav-book):hover { color: var(--navy-deep); }
.nav-links > a.active:not(.nav-book) { border-bottom: 1px solid currentColor; }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.45em;
  white-space: nowrap;
}
.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  transition: transform 0.22s;
}
.nav-dropdown-toggle:hover { color: #fff; }
.nav-dropdown-toggle.active { border-bottom: 1px solid currentColor; }
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after { transform: rotate(180deg); }
.site-nav.scrolled .nav-dropdown-toggle { color: var(--navy); }
.site-nav.scrolled .nav-dropdown-toggle:hover { color: var(--navy-deep); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 185px;
  padding-top: 0.85rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  inset: 0.85rem 0 0;
  background: var(--navy-darkest);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  padding: 0.85rem 1.25rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  border-left: 2px solid transparent;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); border-left-color: var(--cream); }
.site-nav.scrolled .nav-dropdown-menu::before { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border: 1px solid var(--hairline); }
.site-nav.scrolled .nav-dropdown-menu a { color: var(--navy); }
.site-nav.scrolled .nav-dropdown-menu a:hover { background: var(--cream-light); border-left-color: var(--navy); }

/* Drawer sub-links */
.drawer-pa-group { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.drawer-pa-sub { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.drawer-pa-sub a {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
  font-weight: 500;
}
.drawer-pa-sub a:hover { color: rgba(255,255,255,0.8); }

.nav-book {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7em 1.5em;
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.22s, border-color 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.nav-book:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.85); }
.site-nav.scrolled .nav-book { background: var(--navy); border-color: var(--navy); }
.site-nav.scrolled .nav-book:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 22px; height: 1.5px; background: #fff; display: block; transition: transform 0.3s, opacity 0.3s, background 0.3s; }
.site-nav.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--navy-darkest);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-drawer a:hover { color: #fff; }
.nav-drawer .drawer-book {
  margin-top: 1rem;
  padding: 0.85em 2.5em;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════
   5. PAGE HERO — inner pages
═══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(6,24,51,0.90) 0%,
    rgba(10,31,61,0.78) 55%,
    rgba(16,48,88,0.55) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--topbar-h, 40px) + 120px) var(--gutter) clamp(3rem, 6vw, 5rem);
}
.page-hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.page-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
}
.page-hero-actions { margin-top: 2rem; display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   5.1 HOMEPAGE HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h, 40px));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(6,24,51,0.90) 0%,
    rgba(10,31,61,0.78) 55%,
    rgba(16,48,88,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem var(--gutter) 5rem;
  max-width: min(780px, 90vw);
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2.25rem;
  opacity: 0.85;
}
.hero h1 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1;
}
.hero-h1-anwar {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 10vw, 8.125rem);
  letter-spacing: 0.02em;
  line-height: 0.7;
}
.hero-h1-sub {
  display: block;
  font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.1rem, 2.9vw, 2.275rem);
  letter-spacing: 0.1em;
  margin-top: 0.15em;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-actions .btn { font-size: 0.85rem; }

.hero-trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.trust-item:last-child { border-right: none; }
.trust-stars { color: #f5c518; font-size: 0.88rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════
   6. INTRO / FIRM POSITIONING
═══════════════════════════════════════════════ */
.section-intro {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.intro-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.intro-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.intro-text p { color: var(--body); margin-bottom: 1.1rem; }
.intro-text p:last-of-type { margin-bottom: 2.25rem; }
.intro-photo { position: relative; }
.intro-photo::before {
  content: '';
  position: absolute;
  top: -1.25rem; right: -1.25rem;
  width: 0; height: 0;
  border: 1.5px solid var(--cream);
  pointer-events: none;
}
@keyframes draw-corner-lines {
  0%   { width: 0;   height: 0; }
  50%  { width: 65%; height: 0; }
  100% { width: 65%; height: 65%; }
}
.intro-photo.visible::before {
  animation: draw-corner-lines 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.55s;
}
.intro-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  max-height: 460px;
}
.intro-photo-caption {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 500;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   7. SERVICES — COMPACT 2×2 IMAGE TILES
═══════════════════════════════════════════════ */
.services-section { }

.services-header {
  background: var(--navy);
  padding: clamp(3.5rem, 7vw, 5rem) var(--gutter);
}
.services-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
}
.services-header .kicker { color: var(--cream); border-color: var(--cream); }
.services-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.services-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.75;
  padding-bottom: 0.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.service-tile {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.service-tile-bg { position: absolute; inset: 0; }
.service-tile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-tile:hover .service-tile-bg img { transform: scale(1.06); }
.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,24,51,0.93) 0%, rgba(6,24,51,0.55) 45%, rgba(6,24,51,0.15) 100%);
  transition: opacity 0.4s;
}
.service-tile:hover .service-tile-overlay {
  background: linear-gradient(to top, rgba(6,24,51,0.96) 0%, rgba(6,24,51,0.62) 50%, rgba(6,24,51,0.22) 100%);
}
.service-tile-content {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2.5rem;
  color: #fff;
  width: 100%;
}
.service-tile-num {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.service-tile h3 {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  text-transform: none;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.service-tile-tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.9rem;
}
.service-tile p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  max-width: 380px;
}
.service-tile .arrow-link { color: var(--cream); }

/* ═══════════════════════════════════════════════
   7.5 SECTION DIVIDER
═══════════════════════════════════════════════ */
.section-divider {
  background: var(--off-white);
  padding: 2.25rem var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.section-divider-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section-divider-rule { flex: 1; height: 1px; background: var(--cream-deep); }
.section-divider-text {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════════
   8. WHY CHOOSE US
═══════════════════════════════════════════════ */
.why-us {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9rem) var(--gutter);
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-us-veil { position: absolute; inset: 0; background: rgba(6,24,51,0.92); }
.why-us-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-us-text {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.why-us .kicker { color: var(--cream); border-color: var(--cream); }
.why-us h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.why-us-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.pillar {
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.pillar-num {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.pillar h4 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  text-transform: none;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.pillar p { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.7; }
.why-us-cta { text-align: center; }

/* ═══════════════════════════════════════════════
   9. TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  background: var(--cream-light);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.testimonials-head {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  text-align: center;
}
.testimonials-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tcard {
  background: #fff;
  padding: 2.5rem 2.25rem;
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.tcard-quote {
  font-style: italic;
  color: var(--body);
  line-height: 1.8;
  font-size: 1rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.tcard-author {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}
.testimonials-footer {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  text-align: center;
}
.testimonials-footer a { color: var(--navy); }

/* ═══════════════════════════════════════════════
   10. CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.contact-left > p { color: var(--body); margin-bottom: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1.5px solid var(--hairline);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.22s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 130px; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 2.5rem; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--body);
  pointer-events: none;
}
.contact-right { padding-top: 1rem; }
.cinfo-block { margin-bottom: 2.5rem; }
.cinfo-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  text-transform: none;
  color: var(--navy);
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}
.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.cinfo-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.25em; color: var(--navy); }
.cinfo-row a { color: var(--body); transition: color 0.2s; }
.cinfo-row a:hover { color: var(--navy); }
.cinfo-row span { color: var(--body); }
.hours-table { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1.25rem; font-size: 0.9rem; }
.hours-day {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  align-self: center;
  font-weight: 500;
}
.hours-time { color: var(--body); }
.cinfo-book { display: block; width: 100%; text-align: center; padding: 1em 0; }

/* ═══════════════════════════════════════════════
   11. FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background-color: var(--navy-darkest);
  background-image: radial-gradient(circle, rgba(208,200,192,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  color: rgba(255,255,255,0.5);
  padding: clamp(4rem, 9vw, 6.5rem) var(--gutter) 2.5rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,24,51,0.55) 0%, transparent 20%, transparent 80%, rgba(6,24,51,0.55) 100%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-member { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-family: var(--ff-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.footer-col h4 {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li { display: flex; align-items: center; gap: 0.45rem; }
.footer-col ul li::before { content: '›'; font-size: 1rem; line-height: 1; color: rgba(255,255,255,0.35); font-family: serif; flex-shrink: 0; }
.footer-col a { font-size: 0.95rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.925rem; line-height: 1.65; color: rgba(255,255,255,0.35); }
.footer-contact-rows { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.65rem; }
.footer-contact-row svg { flex-shrink: 0; margin-top: 0.2em; color: rgba(255,255,255,0.35); }
.footer-contact-row a { font-size: 0.95rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact-row a:hover { color: #fff; }
.footer-contact-row address { font-style: normal; font-size: 0.925rem; line-height: 1.65; color: rgba(255,255,255,0.35); }
.footer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
  max-width: var(--max-w);
  margin: 0 auto 2rem;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-immixart { color: #4b586c; font-weight: 300; transition: color 0.2s; }
.footer-immixart:hover { color: #fff; }
.footer-immixart svg { transition: color 0.2s; }
.footer-immixart:hover svg { color: #3498db; }

/* ═══════════════════════════════════════════════
   12. ABOUT PAGE
═══════════════════════════════════════════════ */
.about-pillars-section {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.about-pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-pillars-head {
  max-width: 100%;
  margin-bottom: 3.5rem;
}
.about-pillars-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.about-pillars-head p { color: var(--body); }
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-pillar {
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--navy);
  background: #fff;
}
.about-pillar-num {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.about-pillar h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  text-transform: none;
  color: var(--navy);
  letter-spacing: 0;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.about-pillar p { font-size: 1rem; color: var(--body); line-height: 1.75; }

.about-bio-section {
  background: var(--cream-light);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.about-bio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.about-bio-photo { position: relative; }
.about-bio-photo::before {
  content: '';
  position: absolute;
  top: -1.25rem; right: -1.25rem;
  width: 0; height: 0;
  border: 1.5px solid var(--cream-deep);
  pointer-events: none;
}
.about-bio-photo.visible::before {
  animation: draw-corner-lines 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.55s;
}
.about-bio-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  max-height: 580px;
}
.about-bio-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.about-bio-text p { color: var(--body); margin-bottom: 1.1rem; line-height: 1.8; }
.about-bio-text p:last-of-type { margin-bottom: 2rem; }
.about-areas {
  margin: 2.75rem 0 1.75rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-left: 3px solid var(--navy);
}
.about-areas h4 {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.about-areas ul { display: flex; flex-direction: column; gap: 0.4rem; }
.about-areas li {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--body);
  padding-left: 1rem;
  position: relative;
}
.about-areas li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy);
  opacity: 0.5;
}
.about-areas li a {
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-areas li a:hover { opacity: 0.65; }

.about-values-section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  overflow: hidden;
}
.about-values-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-values-veil { position: absolute; inset: 0; background: rgba(6,24,51,0.93); }
.about-values-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.about-values-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.about-values-inner > p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 3.5rem; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.about-value {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.about-value h4 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.about-value p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   13. PRACTICE AREAS HUB
═══════════════════════════════════════════════ */
.pa-hub-section {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.pa-hub-inner { max-width: var(--max-w); margin: 0 auto; }
.pa-hub-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  min-height: 460px;
}
.pa-hub-band.reverse { direction: rtl; }
.pa-hub-band.reverse > * { direction: ltr; }
.pa-hub-img {
  position: relative;
  overflow: hidden;
}
.pa-hub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pa-hub-band:hover .pa-hub-img img { transform: scale(1.04); }
.pa-hub-text {
  padding: clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}
.pa-hub-band:nth-child(even) .pa-hub-text { background: var(--cream-light); }
.pa-hub-num {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.pa-hub-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.pa-hub-text p { color: var(--body); margin-bottom: 1.75rem; line-height: 1.8; }

/* ═══════════════════════════════════════════════
   13.1 PRACTICE AREA DETAIL PAGES
═══════════════════════════════════════════════ */
.pa-detail-section {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}
.pa-detail-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.pa-detail-main h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.pa-detail-main > p { color: var(--body); margin-bottom: 2.5rem; line-height: 1.8; }
.pa-services-list { display: flex; flex-direction: column; gap: 1rem; }
.pa-service-item {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--navy);
  background: #fff;
}
.pa-service-item h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: 0;
}
.pa-service-item p { font-size: 1.05rem; color: var(--body); line-height: 1.7; }

.pa-sidebar {
  position: sticky;
  top: calc(var(--topbar-h, 40px) + 100px);
}
.pa-sidebar-cta {
  background: var(--navy);
  padding: 2.5rem 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.pa-sidebar-cta h4 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  text-transform: none;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}
.pa-sidebar-cta p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; line-height: 1.7; }
.pa-sidebar-cta .btn { width: 100%; text-align: center; display: block; }
.pa-sidebar-contact {
  background: var(--cream-light);
  padding: 2rem;
}
.pa-sidebar-contact h4 {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 500;
}
.pa-sidebar-contact .cinfo-row { font-size: 0.875rem; }

/* Services grid (notary, wills focus list) */
.pa-focus-section {
  background: var(--cream-light);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.pa-focus-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pa-focus-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.pa-focus-inner > p { color: var(--body); margin-bottom: 2.5rem; }
.pa-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.pa-focus-item {
  padding: 1rem 1.25rem;
  background: #fff;
  border-bottom: 2px solid var(--cream-deep);
  font-size: 1rem;
  color: var(--body);
  font-family: var(--ff-body);
}

/* Process steps */
.process-section {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process-section .kicker { color: var(--cream); border-color: var(--cream); }
.process-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  font-weight: 400;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-steps--two { grid-template-columns: repeat(2, 1fr); }
.process-step {
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.process-step-num {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.process-step h4 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.process-step p { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.7; }

/* Guarantee / icon grid */
.guarantee-section {
  background: var(--off-white);
  padding: 1rem var(--gutter) clamp(4rem, 8vw, 7rem);
}
.guarantee-inner { max-width: var(--max-w); margin: 0 auto; }
.guarantee-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.guarantee-inner > p { color: var(--body); margin-bottom: 2.5rem; }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.guarantee-item {
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--cream-deep);
  background: #fff;
  text-align: center;
}
.guarantee-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.guarantee-item h4 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  text-transform: none;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0;
}
.guarantee-item p { font-size: 0.95rem; color: var(--body); line-height: 1.6; }

/* Image break strip between sections */
.img-break {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════════
   14. PAGE CTA BANNER
═══════════════════════════════════════════════ */
.page-cta {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 7rem) var(--gutter);
  text-align: center;
  position: relative;
}
.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(208,200,192,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}
.page-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.page-cta p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.75; }
.page-cta .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   15. FAMILY LAW SPECIFIC
═══════════════════════════════════════════════ */
.fl-empathy {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  text-align: center;
}
.fl-empathy-inner { max-width: 720px; margin: 0 auto; }
.fl-empathy h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.fl-empathy p { color: var(--body); font-style: italic; font-size: 1.05rem; }

.fl-areas-section {
  background: var(--cream-light);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.fl-areas-inner { max-width: var(--max-w); margin: 0 auto; }
.fl-areas-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.fl-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.fl-area-item {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-left: 3px solid var(--navy);
  font-size: 0.9rem;
  color: var(--body);
}
.fl-area-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.fl-deep-section {
  background: var(--off-white);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.fl-deep-inner { max-width: var(--max-w); margin: 0 auto; }
.fl-deep-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.fl-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.fl-deep-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-top: 3px solid var(--navy);
}
.fl-deep-card-num {
  font-family: var(--ff-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.fl-deep-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
}
.fl-deep-card p { font-size: 1.05rem; color: var(--body); line-height: 1.75; }
.fl-deep-card ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.3rem; }
.fl-deep-card li { font-size: 1rem; color: var(--body); padding-left: 1rem; position: relative; }
.fl-deep-card li::before { content: '—'; position: absolute; left: 0; color: var(--navy); opacity: 0.5; }

/* ═══════════════════════════════════════════════
   16. RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .guarantee-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-bio-grid { grid-template-columns: 340px 1fr; }
  .about-pillars-grid { grid-template-columns: 1fr 1fr; }
  .pa-focus-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-book { display: none; }
  .nav-toggle { display: flex; }
  .top-bar-contact a span { display: none; }
  .hero-trust { display: none; }
  .hero-content { padding-top: 5rem; padding-bottom: 4rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { display: none; }
  .services-grid,
  .services-grid--three { grid-template-columns: 1fr; }
  .services-header-inner { grid-template-columns: 1fr; }
  .service-tile { min-height: 340px; }
  .pillars { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pa-hub-band { grid-template-columns: 1fr; min-height: auto; }
  .pa-hub-band.reverse { direction: ltr; }
  .pa-hub-img { min-height: 300px; }
  .pa-detail-grid { grid-template-columns: 1fr; }
  .pa-sidebar { position: static; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-bio-photo { display: none; }
  .about-values-grid { grid-template-columns: 1fr; }
  .pa-focus-grid { grid-template-columns: 1fr; }
  .fl-areas-grid { grid-template-columns: 1fr; }
  .fl-deep-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { text-align: center; }
  .top-bar-contact { gap: 0.75rem; }
  .guarantee-grid { grid-template-columns: 1fr; }
}
