/* ============================================================
   site.css — Virtuoso Criminal & DUI Lawyers
   Merged from: styles.css + nav.css + carousel.css + typography.css
   Do NOT minify until site is ready for launch.
   ============================================================ */

/* ── styles.css ─────────────────────────────────────────── */
/* =============================================================
   styles.css — Virtuoso Law
   Global resets, base body, and shared utility classes.
   Imported by every page. Do not duplicate rules from
   nav.css, carousel.css, or typography.css.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap&subset=latin');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3d3d3d;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Container utility ── */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }
}

/* ── Accessibility ── */
:focus-visible {
  outline: 2px solid #c9a84c;
  outline-offset: 3px;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ── nav.css ────────────────────────────────────────────── */
/* =============================================================
   nav.css — Virtuoso Law
   • Dark forest-green top utility bar (social + phone)
   • Dark forest-green main nav bar (logo + links + Español + phone)
   • White nav links, gold accents
   • Desktop: hover-to-open dropdowns
   • Mobile: click-to-open via JS (.nav-open class)
   ============================================================= */

:root {
  --vl-green:       #0d4a1e;
  --vl-green-dark:  #0a3a17;
  --vl-green-hover: #0f5a24;
  --vl-gold:        #c9a84c;
  --vl-gold-btn:    #c9a84c;
  --vl-white:       #ffffff;
  --vl-white-dim:   rgba(255,255,255,0.75);
  --vl-border:      rgba(255,255,255,0.12);
  /* Desktop dropdown colours — near-white bg, dark text */
  --vl-dd-bg:        #f7f8f6;
  --vl-dd-text:      #1a2332;
  --vl-dd-hover-bg:  #e8f0ea;
  --vl-dd-hover-text:#0d4a1e;
  --vl-dd-border:    rgba(13,74,30,0.10);
  /* Mobile submenu colours — lighter green, white text */
  --vl-mob-sub-bg:   #2d8a4e;       /* depth-2: lighter green — white text */
  --vl-mob-sub-bg2:  #ffffff;       /* depth-3: white — dark text */
  --vl-mob-sub-text: #ffffff;       /* depth-2 link color */
  --vl-mob-sub-deep: #1a2332;       /* depth-3 link color — dark on white */
}

/* ═══════════════════════════════════════
   TOP UTILITY BAR
   ═══════════════════════════════════════ */
.nav-topbar {
  background: var(--vl-green-dark);
  border-bottom: 1px solid var(--vl-border);
}
.nav-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 36px;
}
.nav-topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-topbar__social a {
  color: var(--vl-white-dim);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.18s ease;
}
.nav-topbar__social a:hover { color: var(--vl-gold); }
.nav-topbar__phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vl-white-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.18s ease;
}
.nav-topbar__phone:hover { color: var(--vl-gold); }

/* ═══════════════════════════════════════
   MAIN HEADER
   ═══════════════════════════════════════ */
.site-header {
  background: var(--vl-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--vl-border);
}
.header-flex {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  gap: 0;
}

/* Logo */
.logo { flex-shrink: 0; margin-right: 32px; }
.logo img { display: block; }

/* Hidden checkbox for mobile toggle */
.nav-check { display: none; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}
.nav-toggle:hover,
.nav-check:checked + .nav-toggle { border-color: var(--vl-gold); }
.nav-toggle__bar {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--vl-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-check:checked + .nav-toggle .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-check:checked + .nav-toggle .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-check:checked + .nav-toggle .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   MAIN NAV — DESKTOP
   ═══════════════════════════════════════ */
.main-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
}
.main-nav > ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 0;
}
.main-nav > ul > li {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

/* Top-level link */
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--vl-white);
  text-decoration: none;
  padding: 0 14px;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li:hover > a,
.main-nav > ul > li:focus-within > a {
  color: var(--vl-gold);
  background: rgba(255,255,255,0.06);
}

/* Chevron for items with submenus */
.main-nav > ul > li:has(ul) > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 3px;
  transition: transform 0.2s ease;
}
.main-nav > ul > li:has(ul):hover > a::after,
.main-nav > ul > li:has(ul):focus-within > a::after {
  transform: rotate(225deg) translateY(-2px);
}

/* ── Desktop Dropdown ── */
.main-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--vl-dd-bg);
  border-top: 2px solid var(--vl-gold);
  border-bottom: 1px solid var(--vl-dd-border);
  border-left: 1px solid var(--vl-dd-border);
  border-right: 1px solid var(--vl-dd-border);
  min-width: 240px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  z-index: 200;
}
.main-nav > ul > li > ul { margin-top: -2px; }
.main-nav ul ul ul {
  top: -4px;
  left: 100%;
  background: var(--vl-dd-bg);
  border-top: 1px solid var(--vl-dd-border);
  border-left: 2px solid var(--vl-gold);
}

/* Desktop: hover opens submenus */
.main-nav li:hover > ul,
.main-nav li:focus-within > ul { display: block; }

.main-nav ul ul li { position: relative; }
.main-nav ul ul li a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--vl-dd-text);
  text-decoration: none;
  padding: 9px 18px;
  white-space: nowrap;
  border-bottom: 1px solid var(--vl-dd-border);
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}
.main-nav ul ul li:last-child a { border-bottom: none; }
.main-nav ul ul li a:hover {
  background: var(--vl-dd-hover-bg);
  color: var(--vl-dd-hover-text);
  padding-left: 24px;
}

/* ── Right-side header actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: 16px;
  order: 4;
}
.header-actions__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-actions__call-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vl-gold);
}
.header-actions__call-label::before {
  content: '📞';
  font-size: 0.65rem;
}
.header-actions__phone-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vl-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}
.header-actions__phone-number:hover { color: var(--vl-gold); }

/* Español button */
.header-actions__espanol {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a2332;
  background: var(--vl-gold-btn);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.18s ease;
}
.header-actions__espanol:hover { background: #e0bc5a; }

/* ════════════════════════════════════
   MOBILE  ≤ 960px
   ════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-topbar__inner { padding: 0 16px; }
  .header-flex { padding: 0 16px; height: 64px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-actions { margin-left: 0; gap: 10px; display: none; }
  .header-actions__phone { display: none; }

  /* Hide nav from flex flow on mobile — it's fixed positioned */
  .main-nav { flex: 0; min-width: 0; }

  /* Slide-in nav panel */
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    background: var(--vl-green);
    border-top: 2px solid var(--vl-gold);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    order: 10;
    display: block;
    height: auto;
  }
  .nav-check:checked ~ .main-nav { transform: translateX(0); }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
  }
  .main-nav > ul > li {
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .main-nav > ul > li > a {
    height: auto;
    font-size: 1.05rem;
    padding: 16px 56px 16px 24px;
    color: var(--vl-white);
  }
  .main-nav > ul > li:has(ul) > a::after { display: none; }

  /* Mobile submenus — hidden by default, JS adds .nav-open to reveal */
  .main-nav ul ul {
    display: none;
    position: static;
    border-top: none;
    border-left: 3px solid rgba(201,168,76,0.5);
    box-shadow: none;
    background: var(--vl-mob-sub-bg);
    min-width: auto;
    padding: 4px 0;
  }

  /* JS click opens submenus — hover disabled on mobile */
  .main-nav li.nav-open > ul { display: block; }

  /* Depth-2 links */
  .main-nav ul ul li { position: relative; }
  .main-nav ul ul li a {
    font-size: 0.93rem;
    padding: 12px 52px 12px 32px;
    white-space: normal;
    color: var(--vl-mob-sub-text);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav ul ul li:last-child a { border-bottom: none; }
  .main-nav ul ul li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 36px;
  }

  /* Depth-3 links — lighter green bg, white text */
  .main-nav ul ul ul {
    background: var(--vl-mob-sub-bg2);
    border-left: 3px solid #c9a84c;
  }
  .main-nav ul ul ul li a {
    padding-left: 44px;
    font-size: 0.88rem;
    color: var(--vl-mob-sub-deep);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .main-nav ul ul ul li:last-child a { border-bottom: none; }
  .main-nav ul ul ul li a:hover {
    padding-left: 48px;
    color: #0d4a1e;
    background: #e8f0ea;
  }

  /* Active open state highlight */
  .main-nav li.nav-open > a { color: var(--vl-gold); }
}

@media (max-width: 480px) {
  .header-flex { height: 56px; }
  .main-nav { top: 56px; }
  .nav-topbar__inner { height: 30px; }
}

/* ── Mobile expand toggle buttons ── */
@media (max-width: 960px) {
  .nav-expand {
    position: absolute;
    right: 0;
    top: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    color: rgba(255,255,255,0.65);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    transition: color 0.15s, background 0.15s;
    padding: 0;
  }
  .nav-expand:hover { color: var(--vl-gold); background: rgba(255,255,255,0.05); }
  .nav-open > .nav-expand { color: var(--vl-gold); }

  /* Depth-2 expand buttons are smaller */
  .main-nav ul ul li > .nav-expand {
    width: 44px;
    height: 44px;
    border-left: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
    top: 0;
  }
}
@media (min-width: 961px) {
  .nav-expand { display: none; }
}


/* ── carousel.css ───────────────────────────────────────── */
/* =============================================================
   carousel.css — Virtuoso Law
   Carousel / slider component styles.
   (Reserved for future use — no active carousel currently.)
   ============================================================= */

/* ── Carousel wrapper ── */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.carousel__btn:hover { background: #c9a84c; }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d4d0;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel__dot.is-active { background: #c9a84c; }


/* ── typography.css ─────────────────────────────────────── */
/* ============================================================
   typography.css — Virtuoso Law
   Matches the typographic style of virtuosolaw.com
   ============================================================ */

/* --- Google Fonts import (matches site: Montserrat + Open Sans) --- */
/* --- Base Variables --- */
:root {
  --color-dark-navy:   #0d1b2a;   /* primary heading color */
  --color-dark-blue:   #1a2d4a;   /* h2, h3 */
  --color-accent:      #b8952a;   /* gold accent — matches site's gold tones */
  --color-body-text:   #3a3a3a;   /* body copy */
  --color-muted:       #6b7280;   /* secondary / caption text */
  --color-white:       #ffffff;
  --color-bg-light:    #f9f9f9;

  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --line-height-heading: 1.2;
  --line-height-body:    1.75;
}

/* --- Base body typography --- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--line-height-body);
  color: var(--color-body-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   HEADINGS
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-heading);
  color: var(--color-dark-navy);
  margin-top: 0;
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
}

/* H1 — Hero / page title: large, bold, dark navy */
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-dark-navy);
  line-height: 1.15;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

/* H2 — Section headings */
h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.25em;
  display: inline-block;
}

/* H3 — Sub-section headings */
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-top: 1.25em;
  margin-bottom: 0.4em;
}

/* H4 */
h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-dark-navy);
  margin-top: 1em;
  margin-bottom: 0.35em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* H5 */
h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1em;
  margin-bottom: 0.3em;
}

/* H6 — Eyebrow / label text */
h6 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0;
  margin-bottom: 0.4em;
}

/* ============================================================
   BODY COPY
   ============================================================ */

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-height-body);
  color: var(--color-body-text);
  margin-top: 0;
  margin-bottom: 1.25em;
  max-width: 72ch;
}

/* Lead paragraph — slightly larger first paragraph in sections */
.section-lead p:first-of-type,
article > div > p:first-of-type {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-dark-navy);
  font-weight: 500;
}

/* ============================================================
   INLINE TEXT
   ============================================================ */

strong, b {
  font-weight: 700;
  color: var(--color-dark-navy);
}

em, i {
  font-style: italic;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-dark-navy);
  text-decoration: underline;
}

/* ============================================================
   LISTS
   ============================================================ */

ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-body-text);
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.4em;
}

/* ============================================================
   BLOCKQUOTES
   ============================================================ */

blockquote {
  border-left: 4px solid var(--color-accent);
  margin: 1.5em 0;
  padding: 0.75em 1.25em;
  background: var(--color-bg-light);
  font-style: italic;
  color: var(--color-dark-blue);
  font-size: 1.05rem;
}

blockquote p {
  margin-bottom: 0;
}

/* ============================================================
   SECTION SPACING (inside .container sections)
   ============================================================ */

section.container {
  padding: 20px 1.5rem;
  margin: 0 auto;
  max-width: 1100px;
}

/* First section after header — hero-like, slightly more vertical space */
main, article {
  margin-top: 0;
  padding-top: 0;
}

main > article > div > div > section.container:first-of-type:not(.has-hero),
main > article > section.container:first-child:not(.has-hero) {
  padding-top: 20px;
}

/* ============================================================
   SPAN HIGHLIGHTS (law-specific label chips seen on the site)
   ============================================================ */

span > span {
  /* Resets nested spans used as content wrappers */
  display: inline;
}

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

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  section.container {
    padding: 20px 1rem;
  }

  p {
    max-width: 100%;
  }
}

/* ============================================================
   Clips of Counsel section (.coc)
   ============================================================ */

.coc {
  --navy:      #1a2332;
  --navy-soft: #2c3e55;
  --gold:      #c9a84c;
  --gold-dark: #a8873a;
  --white:     #ffffff;
  --off-white: #f8f8f6;
  --border:    #e4e4e0;
  --text:      #3d3d3d;
  --muted:     #757575;
  --radius:    4px;
  --fh:        'Montserrat', sans-serif;
  --fb:        'Open Sans', sans-serif;
  background: var(--off-white);
  padding: 72px 24px 80px;
  font-family: var(--fb);
  color: var(--text);
  box-sizing: border-box;
}

.coc *, .coc *::before, .coc *::after { box-sizing: inherit; }

.coc__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.coc__head { margin-bottom: 48px; }

.coc__label {
  display: block;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.coc__title {
  font-family: var(--fh);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.coc__rule {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0;
}

.coc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

@media (max-width: 900px) { .coc__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .coc__grid { grid-template-columns: 1fr; gap: 20px; } }

.coc__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.coc__card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.coc__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.coc__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.coc__card:hover .coc__thumb img {
  transform: scale(1.04);
  filter: brightness(0.82);
}

.coc__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.coc__play-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.coc__card:hover .coc__play-circle {
  opacity: 1;
  transform: scale(1);
}

.coc__play-circle::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--white);
  margin-left: 3px;
}

.coc__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.coc__episode {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

.coc__card-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.4;
}

.coc__quote {
  font-family: var(--fb);
  font-size: 13.5px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
  flex: 1;
}

.coc__watch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 2px;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.coc__watch::after { content: '\2192'; }

.coc__card:hover .coc__watch {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.coc__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.coc__footer-label {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-soft);
}

.coc__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.coc__btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.coc__btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

.coc__btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.coc__btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   Page Hero Banner (.page-hero)
   ============================================================ */

/*
 * .has-hero is added to the section.container that wraps each hero.
 * Removes its constraints so the hero can bleed edge to edge.
 * The hero itself uses 100vw + negative margins to escape any
 * remaining ancestor max-width or padding.
 */

section.container.has-hero {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box;
}

.page-hero {
  /* Full-bleed: escape any ancestor padding/max-width */
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  min-height: 600px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-color: #1a2d4a; /* fallback while image loads */
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  /* Strong left fade so H1 text is always legible;
     fades to near-transparent on the right to show the image */
  background: linear-gradient(
    100deg,
    rgba(10, 21, 32, 0.84) 0%,
    rgba(13, 27, 42, 0.68) 40%,
    rgba(13, 27, 42, 0.38) 70%,
    rgba(13, 27, 42, 0.12) 100%
  );
  z-index: 1;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  /* Re-establish the site's content width inside the full-bleed hero */
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  box-sizing: border-box;
}

/* H1 inside hero — white, large, bold, left-aligned */
.page-hero__inner h1 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 60%;
  white-space: normal;
  word-wrap: break-word;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* Gold accent bar above H1 — matches site's gold rule pattern */
.page-hero__inner h1::before {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: #c9a84c;
  margin-bottom: 22px;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 300px;
  }
  .page-hero__inner {
    padding: 60px 32px;
  }
  .page-hero__inner h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    max-width: 90%;
  }
}

@media (max-width: 580px) {
  .page-hero {
    min-height: 240px;
  }
  .page-hero__inner {
    padding: 44px 20px;
  }
  .page-hero__inner h1 {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
    max-width: 100%;
  }
}


/* H1 subtitle line (content after —) */
.page-hero__h1-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #c9a84c;
  margin-top: 8px;
}

/* Breadcrumb inside hero */
.page-breadcrumb {
  margin-bottom: 14px;
}
.bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.bc-list li + li::before {
  content: '›';
  margin: 0 6px;
  color: rgba(255,255,255,0.45);
}
.bc-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s ease;
}
.bc-list a:hover { color: #c9a84c; }
.bc-list .bc-current {
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   Hero subtitle + CTA (inside .page-hero__inner)
   ============================================================ */

.page-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 16px 0 28px;
  max-width: 560px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.page-hero__cta {
  margin-top: 28px;
  display: inline-block;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a2332;
  background: #c9a84c;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.page-hero__cta:hover {
  background: #a8873a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
  color: #ffffff;
  text-decoration: none;
}


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

.site-footer {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #c8d8e8;
  background: #0d1b2a;
  position: relative;
  overflow: hidden;
}

/* ── CTA band (dark navy gradient strip at top of footer) ── */
.site-footer__cta-band {
  background: transparent;
  border-top: 3px solid #c9a84c;
  padding: 48px 24px;
}

.site-footer__cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer__cta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 10px;
}

.site-footer__cta-tagline {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}

.site-footer__cta-tagline strong {
  font-weight: 800;
  color: #ffffff;
}

.site-footer__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.site-footer__phone-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0;
}

.site-footer__phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}

.site-footer__phone:hover {
  color: #c9a84c;
}

.site-footer__consult-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a2332;
  background: #c9a84c;
  padding: 11px 24px;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__consult-btn:hover {
  background: #a8873a;
  color: #ffffff;
}

/* ── Footer main body ── */
.site-footer__body {
  padding: 56px 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__body-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo {
  width: 140px;
  height: auto;
  opacity: 0.92;
  filter: brightness(1.1);
}

.site-footer__tagline {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(200, 216, 232, 0.42);
  margin: 0;
}

/* ── Nav columns ── */
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}

.site-footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col ul li {
  margin-bottom: 8px;
}

.site-footer__col ul li a {
  font-size: 0.8rem;
  color: rgba(200, 216, 232, 0.72);
  text-decoration: none;
  transition: color 0.18s ease;
  line-height: 1.5;
}

.site-footer__col ul li a:hover {
  color: #c9a84c;
}

/* ── Offices ── */
.site-footer__offices-wrap {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__offices-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 20px;
}

.site-footer__offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.site-footer__office {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.90);
}

.site-footer__office p { margin: 0 0 4px; color: rgba(255,255,255,0.90); }

.site-footer__office-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px !important;
}

.site-footer__office-label {
  font-size: 0.72rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: rgba(200, 216, 232, 0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__map-link:hover { color: #c9a84c; }

/* ── Bottom bar ── */
.site-footer__bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px 24px;
}

.site-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(200, 216, 232, 0.4);
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copyright {
  font-size: 0.72rem;
  color: rgba(200, 216, 232, 0.4);
}

.site-footer__bottom-links a {
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: rgba(200, 216, 232, 0.5);
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__bottom-links a:hover { color: #c9a84c; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .site-footer__body-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-footer__cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
  .site-footer__offices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }
  .site-footer__offices-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Locations Page
   ============================================================ */

/* Shared button styles */
.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.loc-btn--gold  { background: #c9a84c; color: #1a2332; border-color: #c9a84c; }
.loc-btn--gold:hover { background: #a8873a; border-color: #a8873a; color: #fff; transform: translateY(-1px); }
.loc-btn--outline { background: transparent; color: #1a2332; border-color: #1a2332; }
.loc-btn--outline:hover { background: #1a2332; color: #fff; }
.loc-btn--white { background: #fff; color: #1a2332; border-color: #fff; }
.loc-btn--white:hover { background: #f0f0f0; }

/* Eyebrow label (reused across sections) */
.loc-intro__eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

/* ── Intro band ── */
.loc-intro {
  padding: 64px 48px;
  background: #fff;
}
.loc-intro__inner { max-width: 740px; }
.loc-intro__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.loc-intro__body {
  font-size: 1rem;
  line-height: 1.75;
  color: #3d3d3d;
  margin: 0 0 32px;
  max-width: 65ch;
}
.loc-intro__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Office cards ── */
.loc-offices {
  padding: 0 0 64px;
  background: #f8f8f6;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #fff;
  border-bottom: 1px solid #e4e4e0;
}
.loc-card--reverse { direction: rtl; }
.loc-card--reverse > * { direction: ltr; }

.loc-card__map {
  position: relative;
  overflow: hidden;
  background: #1a2d4a;
}
.loc-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.loc-card__info {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.loc-card__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #c9a84c;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  width: fit-content;
}

.loc-card__city {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.loc-card__region {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 24px;
}

.loc-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: #3d3d3d;
  line-height: 1.55;
}
.loc-card__detail em { color: #888; font-style: italic; font-size: 0.82rem; }
.loc-card__detail a { color: #1a2332; font-weight: 600; text-decoration: none; transition: color 0.15s; }
.loc-card__detail a:hover { color: #c9a84c; }

.loc-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #c9a84c;
}

.loc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px;
}

.loc-card__areas {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
  border-top: 1px solid #e4e4e0;
  padding-top: 14px;
}

/* ── Service area band ── */
.loc-service-area {
  background: #fff;
  padding: 64px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.loc-service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.loc-service-area__text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.loc-service-area__text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3d3d3d;
  margin: 0 0 20px;
}
.loc-county-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.loc-county-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a2332;
  padding-left: 14px;
  position: relative;
}
.loc-county-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a84c;
}
.loc-service-area__map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.loc-service-area__map iframe { display: block; }

/* ── Why cards ── */
.loc-why {
  background: #f8f8f6;
  padding: 64px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.loc-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.loc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-why__card {
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.loc-why__card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.loc-why__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5edd8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #c9a84c;
}
.loc-why__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.loc-why__card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ── Final CTA band ── */
.loc-cta-band {
  background: #1a2332;
  padding: 64px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.loc-cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.loc-cta-band__inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.loc-cta-band__inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(200,216,232,0.8);
  margin: 0 0 32px;
}
.loc-cta-band .loc-intro__cta-row { justify-content: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .loc-service-area__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .loc-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .loc-card,
  .loc-card--reverse { grid-template-columns: 1fr; direction: ltr; }
  .loc-card__map { height: 260px; position: relative; }
  .loc-card__info { padding: 32px 24px; }
  .loc-intro { padding: 40px 24px; }
  .loc-service-area, .loc-why, .loc-cta-band { padding: 48px 0; }
  .loc-section__inner, .loc-service-area__inner, .loc-cta-band__inner { padding: 0 24px; }
}
@media (max-width: 520px) {
  .loc-why__grid { grid-template-columns: 1fr; }
  .loc-county-list { grid-template-columns: 1fr; }
  .loc-card__actions { flex-direction: column; }
  .loc-btn { text-align: center; justify-content: center; }
}

/* ============================================================
   Contact Page (.ct-*)
   ============================================================ */

.ct-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

/* ── Intro split ── */
.ct-intro {
  background: #fff;
  padding: 72px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ct-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ct-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ct-body-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3d3d3d;
  margin: 0 0 28px;
}
.ct-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a2332;
  background: #f5edd8;
  border: 1px solid #e0c87a;
  padding: 8px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.ct-chip:hover { background: #c9a84c; color: #fff; border-color: #c9a84c; }
.ct-chip--plain { cursor: default; }
.ct-chip--plain:hover { background: #f5edd8; color: #1a2332; border-color: #e0c87a; }

/* ── Form ── */
.ct-form-wrap {
  background: #f8f8f6;
  border: 1px solid #e4e4e0;
  border-radius: 6px;
  overflow: hidden;
}
.ct-form-header {
  background: #1a2332;
  padding: 24px 32px;
}
.ct-form-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}
.ct-form-header p {
  font-size: 0.8rem;
  color: rgba(200,216,232,0.75);
  margin: 0;
}
.ct-form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-form__field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a2332;
}
.ct-req { color: #c9a84c; }
.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #1a2332;
  background: #fff;
  border: 1px solid #d4d4d0;
  border-radius: 4px;
  padding: 10px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
  box-sizing: border-box;
}
.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  outline: none;
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.ct-form__field textarea { resize: vertical; }
.ct-form__field--check { flex-direction: row; align-items: flex-start; }
.ct-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}
.ct-checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: #c9a84c; }
.ct-checkbox a { color: #c9a84c; text-decoration: none; font-weight: 600; }
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2332;
  background: #c9a84c;
  border: none;
  border-radius: 4px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ct-submit:hover { background: #a8873a; transform: translateY(-1px); }
.ct-form__disclaimer {
  font-size: 0.72rem;
  color: #999;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

/* ── Detail cards ── */
.ct-details {
  background: #f8f8f6;
  padding: 64px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ct-details .ct-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.ct-detail-card {
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ct-detail-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
.ct-detail-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #f5edd8;
  display: flex; align-items: center; justify-content: center;
  color: #c9a84c;
  margin-bottom: 4px;
}
.ct-detail-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0;
}
.ct-detail-card p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.ct-detail-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2332;
  text-decoration: none;
  transition: color 0.18s ease;
}
.ct-detail-link:hover { color: #c9a84c; }
.ct-detail-sub { font-size: 0.75rem !important; color: #999 !important; }

/* ── Map + social ── */
.ct-map-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 440px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ct-map-embed { background: #1a2d4a; position: relative; overflow: hidden; }
.ct-map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.ct-map-aside {
  background: #1a2332;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.ct-map-aside h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.ct-map-aside address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(200,216,232,0.8);
}
.ct-map-hours { font-size: 0.85rem; color: rgba(200,216,232,0.7); margin: 0; }
.ct-map-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a2332;
  background: #c9a84c;
  padding: 11px 20px;
  border-radius: 3px;
  width: fit-content;
  margin-top: 4px;
  transition: background 0.2s ease;
}
.ct-map-btn:hover { background: #a8873a; color: #fff; }
.ct-social { margin-top: 12px; }
.ct-social__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 10px;
}
.ct-social__links { display: flex; gap: 12px; flex-wrap: wrap; }
.ct-social__link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,216,232,0.8);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.ct-social__link:hover { background: #c9a84c; color: #fff; }

/* ── Responsive (contact page) ── */
@media (max-width: 1024px) {
  .ct-details .ct-inner { grid-template-columns: repeat(2, 1fr); }
  .ct-map-section { grid-template-columns: 1fr; }
  .ct-map-embed { min-height: 300px; position: relative; }
}
@media (max-width: 768px) {
  .ct-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .ct-intro { padding: 48px 0; }
  .ct-details { padding: 48px 0; }
  .ct-details .ct-inner { grid-template-columns: 1fr 1fr; }
  .ct-form__row--2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ct-details .ct-inner { grid-template-columns: 1fr; }
}


/* ============================================================
   Sitewide Contact Strip (.ct-strip)
   ============================================================ */

.ct-strip {
  background: #1a2332;
  padding: 64px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ct-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ct-strip__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 10px;
}
.ct-strip__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ct-strip__sub {
  font-size: 0.88rem;
  color: rgba(200,216,232,0.72);
  line-height: 1.7;
  margin: 0 0 24px;
}
.ct-strip__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ct-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.ct-strip__btn--gold { background: #c9a84c; color: #1a2332; border-color: #c9a84c; }
.ct-strip__btn--gold:hover { background: #a8873a; border-color: #a8873a; color: #fff; }
.ct-strip__btn--outline { background: transparent; color: rgba(200,216,232,0.85); border-color: rgba(200,216,232,0.35); }
.ct-strip__btn--outline:hover { border-color: #c9a84c; color: #c9a84c; }

/* Strip form */
.ct-strip__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-strip__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ct-strip__form input,
.ct-strip__form select,
.ct-strip__form textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: #1a2332;
  background: rgba(255,255,255,0.97);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.ct-strip__form input:focus,
.ct-strip__form select:focus,
.ct-strip__form textarea:focus {
  outline: none;
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.ct-strip__form textarea { resize: vertical; }
.ct-strip__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2332;
  background: #c9a84c;
  border: none;
  border-radius: 4px;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}
.ct-strip__submit:hover { background: #a8873a; color: #fff; transform: translateY(-1px); }
.ct-strip__fine {
  font-size: 0.7rem;
  color: rgba(200,216,232,0.4);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .ct-strip__inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .ct-strip { padding: 48px 0; }
}
@media (max-width: 480px) {
  .ct-strip__form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Image placeholders
   ============================================================ */

.img-placeholder {
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(80,160,80,0.12) 50%,
    transparent 70%
  );
}

.img-placeholder__label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(120,190,120,0.7);
}

/* ============================================================
   Container padding (body content)
   ============================================================ */

section.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  box-sizing: border-box;
}

/* Ensure all direct content elements inside container are readable */
section.container > div p,
section.container > div h1,
section.container > div h2,
section.container > div h3,
section.container > div h4,
section.container > div h5,
section.container > div h6,
section.container > div ul,
section.container > div ol,
section.container > div li,
section.container > div a:not(.page-hero__cta):not(.loc-btn):not(.ct-chip):not(.ct-submit) {
  max-width: 100%;
}

@media (max-width: 768px) {
  section.container {
    padding: 28px 20px;
  }
}






/* ============================================================
   Client Reviews Page
   ============================================================ */
.reviews-intro { margin-bottom: 2.5rem; }
.reviews-intro p { font-size:1.05rem; line-height:1.8; color:#3d3d3d; }

.reviews-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.reviews-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f4f5f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  min-width: 160px;
}
.reviews-badge__stars { font-size: 1.3rem; color: #c9a84c; }
.reviews-badge__label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: #1a2332; margin-top: 0.3rem; }
.reviews-badge__source { font-size: 0.78rem; color: #666; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.review-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-card__stars { color: #c9a84c; font-size: 1.1rem; }
.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  flex: 1;
  font-style: italic;
  border-left: 3px solid #c9a84c;
  padding-left: 0.85rem;
}
.review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}
.review-card__name { font-weight: 600; font-family: 'Montserrat', sans-serif; color: #1a2332; }
.review-card__source { color: #888; }

.reviews-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: #1a2332;
  border-radius: 8px;
  margin-top: 2rem;
  color: #fff;
}
.reviews-cta h2 { color: #fff; margin-bottom: 0.75rem; }
.reviews-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.reviews-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}
.reviews-links p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.85rem; }
.reviews-links a {
  color: #c9a84c;
  font-size: 0.85rem;
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
}
.reviews-links a:hover { color: #fff; }

/* Videos page */
.videos-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 2rem;
}
.video-topic {
  background: #0d4a1e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-badges { flex-direction: column; }
}


/* ============================================================
   Video Library Page
   ============================================================ */
.vlib-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.vlib-filter-btn {
  background: #f4f5f7;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a2332;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.vlib-filter-btn:hover { background: #e8f0ea; border-color: #0d4a1e; color: #0d4a1e; }
.vlib-filter-btn.active { background: #0d4a1e; color: #fff; border-color: #0d4a1e; }

.vlib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.vlib-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.15s, box-shadow 0.15s;
}
.vlib-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.vlib-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a2332;
}
.vlib-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s;
}
.vlib-card:hover .vlib-card__thumb img { opacity: 0.85; }
.vlib-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  padding-left: 3px;
  transition: background 0.15s;
}
.vlib-card:hover .vlib-card__play { background: #c9a84c; }
.vlib-card__body {
  padding: 0.85rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vlib-card__cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d4a1e;
}
.vlib-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2332;
  line-height: 1.4;
  margin: 0;
}

.vlib-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 1rem 0 2rem;
}
.vlib-page-btn {
  background: #f4f5f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.4rem 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2332;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-width: 38px;
}
.vlib-page-btn:hover { background: #e8f0ea; color: #0d4a1e; border-color: #0d4a1e; }
.vlib-page-btn.active { background: #0d4a1e; color: #fff; border-color: #0d4a1e; }

@media (max-width: 600px) {
  .vlib-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Avvocato Sidebar + Content Layout
   ============================================================ */
.avl-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3.5rem; padding: 3rem 0 2.5rem; align-items: start; }
.avl-sidebar__heading { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #1a2332; margin: 0; padding-bottom: 0.75rem; border-bottom: 2px solid #1a2332; }
.avl-sidebar__list { list-style: none; padding: 0; margin: 0; }
.avl-sidebar__item { border-bottom: 1px solid #e8e8e8; }
.avl-sidebar__item a { display: block; padding: 0.6rem 0.75rem; font-family: 'Open Sans', sans-serif; font-size: 0.875rem; color: #3d3d3d; text-decoration: none; line-height: 1.4; transition: color 0.15s, background 0.15s; }
.avl-sidebar__item a:hover { color: #0d4a1e; background: #f7f8f6; }
.avl-sidebar__item--active a { background: #1a2332; color: #fff; font-weight: 600; }
.avl-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; color: #1a2332; line-height: 1.2; margin: 0 0 1.75rem; letter-spacing: -0.01em; }
.avl-body { font-size: 0.97rem; color: #3d3d3d; line-height: 1.85; margin: 0 0 1.1rem; }
.avl-body a { color: #0d4a1e; text-decoration: underline; }
.avl-body a:hover { color: #c9a84c; }
.avl-hr { border: none; border-top: 1px solid #ddd; margin: 1.75rem 0; }
.avl-topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0.5rem 0 1.5rem; border-top: 1px solid #ddd; }
.avl-topic-item { padding: 0.7rem 0; border-bottom: 1px solid #ddd; font-size: 0.9rem; color: #1a2332; font-family: 'Open Sans', sans-serif; line-height: 1.4; }
.avl-topic-item:nth-child(odd) { padding-right: 2rem; border-right: 1px solid #ddd; }
.avl-topic-item:nth-child(even) { padding-left: 1.5rem; }
.avl-topic-item a { color: #1a2332; text-decoration: none; transition: color 0.15s; }
.avl-topic-item a:hover { color: #0d4a1e; }
.avl-pullquote { background: #f0ede6; padding: 2.25rem 2.5rem 2rem; margin: 2rem 0 0; border-radius: 3px; }
.avl-pullquote__marks { font-family: Georgia, serif; font-size: 5rem; line-height: 0.6; color: #1a2332; letter-spacing: -0.05em; margin-bottom: 1.25rem; display: block; opacity: 0.85; }
.avl-pullquote__text { font-family: 'Montserrat', sans-serif; font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 700; color: #1a2332; line-height: 1.55; margin: 0 0 1.75rem; }
.avl-pullquote__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid rgba(26,35,50,0.15); }
.avl-pullquote__btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #1a2332; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.7rem 1.4rem; border-radius: 3px; text-decoration: none; transition: background 0.15s; }
.avl-pullquote__btn:hover { background: #0d4a1e; color: #ffffff; }
.avl-pullquote__btn svg { width: 14px; height: 14px; }
.avl-pullquote__area { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }
.avl-sub-heading { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: #1a2332; margin: 1.75rem 0 0.75rem; }
.avl-inline-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.avl-inline-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; font-size: 0.9rem; color: #3d3d3d; line-height: 1.5; }
.avl-inline-list li:last-child { border-bottom: none; }
.avl-inline-list li a { color: #0d4a1e; text-decoration: none; }
.avl-inline-list li a:hover { text-decoration: underline; }
@media (max-width: 900px) { .avl-layout { grid-template-columns: 1fr; gap: 0; padding: 2rem 0 1.5rem; } .avl-sidebar { margin-bottom: 2rem; } }
@media (max-width: 640px) { .avl-topic-grid { grid-template-columns: 1fr; } .avl-topic-item:nth-child(odd) { padding-right: 0; border-right: none; } .avl-topic-item:nth-child(even) { padding-left: 0; } .avl-pullquote { padding: 1.5rem; } .avl-pullquote__marks { font-size: 3.5rem; } .avl-pullquote__footer { flex-direction: column; align-items: flex-start; } }

/* ── Footer background illustration ── */
.footer-illustration {
  position: absolute;
  bottom: -5%;
  left: -5%;
  height: 110%;
  width: auto;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.site-footer__cta-band,
.site-footer__body,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   SCROLL-DRIVEN ANIMATIONS — pure CSS, no JavaScript
   ═══════════════════════════════════════════════════════ */

@keyframes vl-fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vl-fade-left {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes vl-fade-right {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes vl-scale-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.vl-fade-up {
  animation: vl-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}
.vl-fade-left {
  animation: vl-fade-left 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}
.vl-fade-right {
  animation: vl-fade-right 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}
.vl-scale-in {
  animation: vl-scale-in 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}
.vl-stagger > *:nth-child(1) { animation-delay: 0.00s; }
.vl-stagger > *:nth-child(2) { animation-delay: 0.07s; }
.vl-stagger > *:nth-child(3) { animation-delay: 0.14s; }
.vl-stagger > *:nth-child(4) { animation-delay: 0.21s; }
.vl-stagger > *:nth-child(5) { animation-delay: 0.28s; }
.vl-stagger > *:nth-child(6) { animation-delay: 0.35s; }
.vl-stagger > *:nth-child(7) { animation-delay: 0.42s; }
.vl-stagger > *:nth-child(8) { animation-delay: 0.49s; }

/* Card lifts */
.avl-sidebar__card,
.coc__card,
.hp-practice-card,
.hp-pillar,
.hp-area {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
}
.avl-sidebar__card:hover,
.coc__card:hover,
.hp-practice-card:hover,
.hp-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}
.hp-area:hover { transform: translateY(-3px); }

/* Button hover glow */
.site-footer__consult-btn,
.hp-btn-primary,
.page-hero__cta-btn {
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease !important;
}
.hp-btn-primary:hover,
.page-hero__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Split image zoom */
.hp-split__img { overflow: hidden; border-radius: 4px; }
.hp-split__img img { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.hp-split__img:hover img { transform: scale(1.04); }

/* ── Spanish CTA Banner (sitewide) ─────────────────────────────────────── */
.spanish-banner {
  position: relative;
  background-image: url('../images/Ana-Spanish-Banner.webp');
  background-size: cover;
  background-position: top left;
  overflow: hidden;
}
.spanish-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 50, 20, 0.05) 0%, rgba(10, 50, 20, 0.10) 50%, rgb(10 31 50 / 75%) 100%);
}
.spanish-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px;
}
.spanish-banner__content { max-width: 560px; margin-left: auto; text-align: left; }
.spanish-banner__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 12px;
}
.spanish-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.spanish-banner__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  margin: 0 0 28px;
  line-height: 1.75;
}
.spanish-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.spanish-banner__btn {
  display: inline-flex;
  align-items: center;
  background: #c9a84c;
  color: #0a1520;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.spanish-banner__btn:hover { background: #e0bc5a; color: #0a1520; }
.spanish-banner__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}
.spanish-banner__btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 640px) {
  .spanish-banner__inner { padding: 48px 20px; }
  .spanish-banner__content { max-width: 100%; }
  .spanish-banner__actions { flex-direction: column; }
  .spanish-banner__btn { width: 100%; justify-content: center; }
}

/* ── YouTube embed ──────────────────────────────────── */
.yt-embed-wrap {
  margin: 0 0 36px;
}
.yt-embed-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 10px;
}
.yt-embed-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.yt-embed-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}


/* ============================================================
   Inline CTAs — Layouts 1 / 3 / 4 / 5 / 6
   ============================================================ */

/* ── LAYOUT 1: Cinematic Full-Bleed ──────────────────────── */
.cta-cinematic {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1012 center/cover no-repeat;
  margin: 48px 0;
}
.cta-cinematic__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.42) 0%, rgba(0,0,0,.65) 100%);
}
.cta-cinematic__inner {
  position: relative; z-index: 1;
  text-align: center; padding: 64px 40px;
}
.cta-cinematic__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.48); margin: 0 0 16px; display: block;
}
.cta-cinematic__headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 800; color: #fff;
  line-height: 1.05; letter-spacing: -.035em; margin: 0 0 22px;
}
.cta-cinematic__headline em { font-style: italic; color: #c9a84c; }
.cta-cinematic__sub {
  font-size: .9rem; color: rgba(255,255,255,.6);
  max-width: 460px; margin: 0 auto 30px; line-height: 1.75;
}
.cta-cinematic__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #c9a84c; color: #0a1012;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: 14px 36px;
  border-radius: 40px; transition: background .2s, transform .15s;
}
.cta-cinematic__btn:hover { background: #e0bc5a; transform: translateY(-2px); }

/* ── LAYOUT 3: Split Card ────────────────────────────────── */
.cta-split {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  margin: 48px 0;
}
.cta-split__body {
  background: #0d4a1e; padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-split__label {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #c9a84c; margin: 0 0 12px;
}
.cta-split__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800; color: #fff; margin: 0 0 12px; line-height: 1.2;
}
.cta-split__sub {
  font-size: .87rem; color: rgba(255,255,255,.72);
  line-height: 1.75; margin: 0 0 26px;
}
.cta-split__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-split__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; padding: 12px 22px;
  border-radius: 4px; border: 2px solid transparent; transition: all .2s;
}
.cta-split__btn--gold { background: #c9a84c; color: #1a2332; border-color: #c9a84c; }
.cta-split__btn--gold:hover { background: #e0bc5a; }
.cta-split__btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-split__btn--outline:hover { border-color: #c9a84c; color: #c9a84c; }
.cta-split__image {
  min-height: 260px; position: relative; overflow: hidden;
  background: center/cover no-repeat #0a3a17;
}
.cta-split__image-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: .07;
}
@media (max-width: 700px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__image { min-height: 180px; }
}

/* ── LAYOUT 4: Banner Hero ───────────────────────────────── */
.cta-banner-hero {
  position: relative; border-radius: 8px; overflow: hidden;
  padding: 64px 52px; background: center/cover no-repeat #0a1520;
  min-height: 280px; margin: 48px 0;
}
.cta-banner-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(10,21,32,.97) 0%, rgba(10,21,32,.84) 50%, rgba(10,21,32,.22) 100%);
}
.cta-banner-hero__inner {
  position: relative; z-index: 1; max-width: 520px;
}
.cta-banner-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #c9a84c; margin: 0 0 12px; display: block;
}
.cta-banner-hero__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.15;
}
.cta-banner-hero__sub {
  font-size: .88rem; color: rgba(255,255,255,.72);
  line-height: 1.75; margin: 0 0 26px;
}
.cta-banner-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-banner-hero__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 13px 24px;
  border-radius: 4px; border: 2px solid transparent; transition: all .2s;
}
.cta-banner-hero__btn--gold { background: #c9a84c; color: #1a2332; border-color: #c9a84c; }
.cta-banner-hero__btn--gold:hover { background: #e0bc5a; }
.cta-banner-hero__btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-banner-hero__btn--outline:hover { border-color: #c9a84c; color: #c9a84c; }
@media (max-width: 640px) {
  .cta-banner-hero { padding: 40px 20px; }
  .cta-banner-hero__inner { max-width: 100%; }
}

/* ── LAYOUT 5: Abstract / Illustration BG ────────────────── */
.cta-abstract {
  background: #06100a; border-radius: 8px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 260px; margin: 48px 0; position: relative;
}
.cta-abstract__body {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.cta-abstract__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #c9a84c; margin: 0 0 14px; display: block;
}
.cta-abstract__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 800; color: #fff; margin: 0 0 14px;
  line-height: 1.15; letter-spacing: -.02em;
}
.cta-abstract__sub {
  font-size: .87rem; color: rgba(255,255,255,.52);
  line-height: 1.75; margin: 0 0 26px; max-width: 340px;
}
.cta-abstract__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-abstract__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; padding: 12px 22px;
  border-radius: 40px; border: 2px solid transparent; transition: all .2s;
}
.cta-abstract__btn--gold { background: #c9a84c; color: #06100a; border-color: #c9a84c; }
.cta-abstract__btn--gold:hover { background: #e0bc5a; }
.cta-abstract__btn--outline { background: transparent; color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.2); }
.cta-abstract__btn--outline:hover { border-color: #c9a84c; color: #c9a84c; }
.cta-abstract__art {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #06100a;
}
.cta-abstract__art-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; opacity: .12;
  object-fit: cover;
}
@media (max-width: 680px) {
  .cta-abstract { grid-template-columns: 1fr; }
  .cta-abstract__art { min-height: 180px; }
}

/* ── LAYOUT 6: Checklist Card ────────────────────────────── */
.cta-checklist {
  background: #fff; border: 2px solid #e0e8f0;
  border-radius: 8px; padding: 36px 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: center; margin: 48px 0;
}
.cta-checklist__label {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: #0d4a1e; display: block; margin: 0 0 10px;
}
.cta-checklist__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.95rem, 1.7vw, 1.2rem);
  font-weight: 800; color: #1a2332; margin: 0 0 14px; line-height: 1.3;
}
.cta-checklist__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.cta-checklist__list li {
  font-size: .86rem; color: #3a4a5a;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.cta-checklist__list li::before {
  content: '✓'; color: #0d4a1e; font-weight: 800;
  font-size: .88rem; flex-shrink: 0; margin-top: 1px;
}
.cta-checklist__action {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.cta-checklist__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: #0d4a1e; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 13px 24px;
  border-radius: 4px; white-space: nowrap; transition: background .2s;
}
.cta-checklist__btn:hover { background: #0a3a17; }
.cta-checklist__note { font-size: .72rem; color: #8a9aaa; text-align: center; line-height: 1.4; }
@media (max-width: 640px) {
  .cta-checklist { grid-template-columns: 1fr; }
  .cta-checklist__action { align-items: flex-start; }
}

/* ============================================================
   Styled Content Lists (.content-list-grid)
   Checklist-style cards for inline <ul> / <ol> content
   ============================================================ */
.content-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 2px solid #e0e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin: 28px 0;
}
.content-list-grid--two-col {
  grid-template-columns: 1fr 1fr;
}
.content-list-grid__header {
  grid-column: 1 / -1;
  background: #f4f7fa;
  border-bottom: 2px solid #e0e8f0;
  padding: 14px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0d4a1e;
}
.content-list-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 22px;
  border-bottom: 1px solid #edf1f6;
  font-size: .9rem;
  color: #2a3a4a;
  line-height: 1.55;
}
.content-list-grid__item:last-child { border-bottom: none; }
.content-list-grid--two-col .content-list-grid__item:nth-last-child(-n+2):not(:nth-child(odd)) {
  border-bottom: none;
}
.content-list-grid__item::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #0d4a1e;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 1px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .content-list-grid--two-col { grid-template-columns: 1fr; }
  .content-list-grid--two-col .content-list-grid__item:nth-last-child(-n+2):not(:nth-child(odd)) {
    border-bottom: 1px solid #edf1f6;
  }
  .content-list-grid--two-col .content-list-grid__item:last-child { border-bottom: none; }
}

/* ── content-list-grid inside CTA — remove outer border ── */
.content-list-grid--no-border {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* About page — first mission: content left, image right */
.about-mission__inner--body-first {
  direction: rtl;
}
.about-mission__inner--body-first > * {
  direction: ltr;
}

/* ── Mobile language switcher — between logo and hamburger ── */
.nav-lang-mobile {
  display: none;
}
@media (max-width: 960px) {
  .nav-lang-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 8px;
    height: 32px;
    min-width: 40px;
    padding: 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a2332 !important;
    background: #c9a84c !important;
    border-radius: 3px;
    border: none;
    transition: background 0.18s ease;
    flex-shrink: 0;
    cursor: pointer;
  }
  .nav-lang-mobile:hover,
  .nav-lang-mobile:active {
    background: #e0bc5a !important;
    color: #1a2332 !important;
  }
  .nav-toggle { margin-left: 0; }
}

/* ════════════════════════════════════════════════
   STICKY MOBILE CALL BAR
   Fixed bottom bar on mobile — call + consult
   ════════════════════════════════════════════════ */
.sticky-call {
  display: none;
}
@media (max-width: 960px) {
  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 56px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
  }
  .sticky-call__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: filter 0.15s ease;
  }
  .sticky-call__btn:active { filter: brightness(0.92); }
  .sticky-call__btn--call {
    background: #0d4a1e;
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .sticky-call__btn--consult {
    background: #c9a84c;
    color: #1a2332;
  }
  .sticky-call__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  /* Push page content up so footer isn't hidden behind bar */
  body { padding-bottom: 56px; }
}

/* ── Related pages block ─────────────────────────────────────────────── */
.related-pages {
  margin: 40px 0;
  padding: 24px 28px;
  background: #f4f7f5;
  border-left: 4px solid #0d4a1e;
  border-radius: 0 6px 6px 0;
}
.related-pages__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d4a1e;
  margin: 0 0 14px;
}
.related-pages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.related-pages__list a {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0d4a1e;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #0d4a1e;
  border-radius: 3px;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
}
.related-pages__list a:hover {
  background: #0d4a1e;
  color: #fff;
}
