/*
Theme Name: Flavor Theme
Theme URI:
Author: LR Paris
Description: A minimalist agency theme template.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor-theme
*/

/* ══════════════════════════════════════════════════════════
   VARIABLES — LR Paris Visual Language V1.3
   ══════════════════════════════════════════════════════════ */
:root {
  /* Spec tokens */
  --color-navy: #021E42;          /* PMS 282 C */
  --color-french-blue: #0024BC;   /* PMS 286 C */
  --color-beige: #F8F5E9;         /* PMS 9064 C */
  --color-white: #FFFFFF;
  --color-chocolate: #52302D;     /* PMS 497 C */
  --color-kraft: #CDA076;         /* PMS 728 C */
  --color-sky: #AAC9E9;           /* PMS 277 C */
  --color-orange: #FF681D;        /* PMS 165 C */

  --text-primary: #021E42;
  --text-secondary: #4a5568;
  --text-muted: #6b7280;

  --surface-page: #FFFFFF;
  --surface-subtle: #F8F5E9;

  --border-color: rgba(2, 30, 66, 0.10);
  --border-color-strong: rgba(2, 30, 66, 0.20);
  --border-width: 0.5px;

  --font-primary: 'trade-gothic-next', 'Arial', sans-serif;
  --font-condensed: 'trade-gothic-next-condensed', 'Arial Narrow', sans-serif;
  --font-accent: 'ivyora-display', 'Baskerville', Georgia, serif;

  --radius-default: 4px;
  --radius-pill: 100px;

  /* Legacy aliases — remapped so existing theme CSS picks up the new brand
     without a 1233-line rewrite. All pre-existing rules that reference
     these vars now render in the V1.3 palette. */
  --bg:              var(--surface-page);
  --fg:              var(--color-navy);
  --muted:           var(--text-muted);
  --border:          var(--border-color);
  --accent:          var(--color-beige);
  --placeholder-bg:  var(--surface-subtle);
  --placeholder-x:   var(--border-color-strong);
  --section-gap: 0;
  --pad-x: clamp(24px, 5vw, 80px);
  --max-w: 1920px;
  --serif: var(--font-accent);     /* editorial / accent italic use */
  --sans:  var(--font-primary);    /* all default sans usage */
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
   FRONT-PAGE SCROLL-JACK SYSTEM
   ══════════════════════════════════════════════════════════ */
/* body.home overflow removed for blink scroll */
/* body.home overflow removed for blink scroll */

.scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.panel {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.panel--top { justify-content: flex-start; }

/* ── Reveal animations ── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(.25,.46,.45,.94),
              transform 0.9s cubic-bezier(.25,.46,.45,.94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }
.reveal-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.72s; }
.reveal-stagger.is-visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.84s; }
.reveal-stagger.is-visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.96s; }

.clip-reveal {
  clip-path: none;
  transition: clip-path 1.2s cubic-bezier(.25,.46,.45,.94);
}
.clip-reveal.is-visible { clip-path: inset(0% 0% round 0px); }

.scale-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 1s cubic-bezier(.25,.46,.45,.94),
              transform 1s cubic-bezier(.25,.46,.45,.94);
}
.scale-reveal.is-visible { opacity: 1; transform: scale(1); }

.fade-reveal {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(.25,.46,.45,.94);
}
.fade-reveal.is-visible { opacity: 1; }




/* ── Section dot navigation ── */
.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
  padding: 0;
}
.section-dots button.active {
  background: var(--fg);
  border-color: var(--fg);
  transform: scale(1.3);
}
.section-dots button:hover { border-color: var(--fg); }

/* ── Progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--fg);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── Scroll-down hint ── */
.hero-scroll-hint {
  text-align: center;
  padding: 10px 0 20px;
  animation: floatHint 2s ease-in-out infinite;
}
.hero-scroll-hint span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  opacity: 0.5;
}
@keyframes floatHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.img-placeholder {
  background: var(--placeholder-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider {
  border: none;
  margin: 0;
  display: none;
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0;
}
body.home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(247, 246, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: 56px;
}
.header-logo .img-placeholder,
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 8px 18px;
  border: var(--border-width) solid var(--color-navy);
  border-radius: var(--radius-default);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover { background: var(--color-navy); color: #fff; }
.site-nav a.active,
.site-nav a.current-menu-item { background: var(--color-navy); color: #fff; }
.site-nav a.nav-contact {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.site-nav a.nav-contact:hover {
  background: var(--color-french-blue);
  border-color: var(--color-french-blue);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--border); }
body.home .site-footer { background: transparent; }

.footer-contact {
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.footer-contact h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  border-radius: 12px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: block;
  transition: all 0.2s;
}
.footer-col ul li a:hover { color: var(--fg); border-color: var(--fg); }

.footer-locations {
  padding: 32px 0;
  text-align: center;
}
.footer-locations h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.location-item {
  padding: 12px 24px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  background: #fff;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — HERO CAROUSEL
   ══════════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; }
body.home .hero { padding-top: 82px; }
.hero-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-slide { min-width: 100%; position: relative; }
.hero-slide .img-placeholder { width: 100%; aspect-ratio: 16 / 7; }
body.home .hero-slide .img-placeholder {
  aspect-ratio: unset;
  height: calc(100vh - 70px - 70px);
}
.hero-slide .hero-title {
  position: absolute;
  top: 66.66%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.85);
  padding: 20px 48px;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 48px);
  white-space: nowrap;
  pointer-events: none;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: transparent;
  transition: background 0.3s;
  cursor: default;
}
.hero-dots span.active { background: var(--fg); border-color: var(--fg); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — ABOUT (The Momento)
   ══════════════════════════════════════════════════════════ */
.about { padding: 80px 0; }
body.home .panel .about-grid { padding: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}
.about-text .about-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 2px;
  font-weight: 500;
}
.about-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 65vh;
  border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — SERVICES PREVIEW
   ══════════════════════════════════════════════════════════ */
.services { padding: 80px 0; }
body.home .panel .services-card .img-placeholder { border-radius: 12px; }
.services-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.services-card .img-placeholder { width: 100%; aspect-ratio: 16 / 10; }
.services-card-text h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
}
.services-card-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — BRAND TICKER
   ══════════════════════════════════════════════════════════ */
.ticker {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
body.home .ticker {
  border-top: none;
  border-bottom: none;
}
.ticker-track {
  display: flex;
  gap: 64px;
  animation: tickerScroll 20s linear infinite;
  width: max-content;
}
.ticker-item {
  flex-shrink: 0;
  width: 120px;
  height: 40px;
  background: var(--placeholder-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — PROCESS
   ══════════════════════════════════════════════════════════ */
.process { padding: 80px 0; }
body.home .panel .process { padding: 40px 0; }
.process h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
.process .img-placeholder { width: 100%; aspect-ratio: 16 / 8; border-radius: 16px; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — THE WORK
   ══════════════════════════════════════════════════════════ */
.work { padding: 80px 0; }
body.home .panel.work { padding: 0; }
.work h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.work-card { text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; }
.work-card .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.work-card:hover .img-placeholder { transform: scale(1.03); }
.work-card h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.work-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — CASE STUDIES GRID
   ══════════════════════════════════════════════════════════ */
.case-studies { padding: 80px 0; }
body.home .panel.case-studies { padding: 0; }
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.case-feature .img-placeholder { width: 100%; aspect-ratio: 3 / 4; max-height: 70vh; border-radius: 16px; }
.case-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-thumbnails .img-placeholder { width: 100%; aspect-ratio: 1; border-radius: 8px; }

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE — SPLIT HERO
   ══════════════════════════════════════════════════════════ */
.services-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.services-hero .img-placeholder { width: 100%; height: 100%; min-height: 480px; }
.services-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px var(--pad-x);
}
.services-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
}
.services-hero-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE — SERVICE CARDS GRID
   ══════════════════════════════════════════════════════════ */
.service-cards { padding: 80px 0; }
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { border-color: var(--fg); }
.service-card .card-thumb { flex-shrink: 0; width: 80px; height: 80px; }
.service-card .card-thumb .img-placeholder { width: 100%; height: 100%; }
.service-card-text h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.service-card-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.service-cards-grid .service-card:last-child:nth-child(odd) { grid-column: 1; }

/* ══════════════════════════════════════════════════════════
   SHARED — HORIZONTAL SCROLL CASE STUDIES
   ══════════════════════════════════════════════════════════ */
.case-scroll-section { padding: 80px 0; }
.case-scroll-section .section-label { margin-bottom: 12px; }
.case-scroll-header { margin-bottom: 48px; max-width: 760px; }
.case-scroll-title {
  font-family: var(--font-condensed, 'trade-gothic-next-condensed', 'Arial Narrow', sans-serif);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.case-scroll-intro {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  margin: 0;
}
.case-scroll-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.case-scroll-track::-webkit-scrollbar { height: 6px; }
.case-scroll-track::-webkit-scrollbar-track { background: transparent; }
.case-scroll-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.case-scroll-card {
  flex-shrink: 0;
  width: 420px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.case-scroll-card .img-placeholder { width: 100%; aspect-ratio: 4 / 3; margin-bottom: 16px; }
.case-scroll-card h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.case-scroll-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   SERVICE DETAIL — OVERLAY HERO
   ══════════════════════════════════════════════════════════ */
.service-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: calc(100vh - 70px);
  overflow: hidden;
}
.service-hero .img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.service-hero .hero-overlay-title { display: none; }

/* Title + intro below the hero, top-aligned (Jackie 4/20) */
.service-intro {
  padding: clamp(48px, 7vh, 96px) var(--pad-x) clamp(24px, 4vh, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-intro-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 112px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--color-navy);
  margin: 0 0 24px;
}
.service-intro-text {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}

.service-description { padding: 80px 0; }
.service-description p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}

/* ══════════════════════════════════════════════════════════
   PROJECTS PAGE
   ══════════════════════════════════════════════════════════ */
.projects-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.projects-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}
.projects-hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 24px;
  border: 1px solid var(--border);
}

.case-block { padding: 60px 0; }
.case-block-header { margin-bottom: 32px; }
.case-block-header h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  display: inline-block;
}
.case-block-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  padding: 8px 16px;
  border: 1px solid var(--border);
}
.case-block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-block-grid .img-placeholder { width: 100%; aspect-ratio: 4 / 3; }

/* Shared filter dropdown */
.filter-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 32px 8px 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 48px 0;
}
.pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}
.pagination span.active { background: var(--fg); border-color: var(--fg); }

/* ══════════════════════════════════════════════════════════
   CASE STUDY DETAIL
   ══════════════════════════════════════════════════════════ */
.cs-hero { position: relative; width: 100vw; margin-left: calc(50% - 50vw); height: calc(100dvh - 70px); max-height: calc(100dvh - 70px); overflow: hidden; }
.cs-hero .img-placeholder { width: 100%; height: 100%; aspect-ratio: auto; }
.cs-hero .hero-overlay-title {
  position: absolute;
  bottom: 48px;
  left: var(--pad-x);
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}

.cs-content {
  padding: clamp(48px, 7vh, 96px) var(--pad-x) !important;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cs-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  width: 100%;
}
.cs-content-text {
  border: 0;
  padding: 0;
}
.cs-content-text h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-navy);
  margin-bottom: 20px;
}
.cs-content-text p { color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; margin-bottom: 1em; }
.cs-content-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 20px);
  max-height: 80vh;
}
.cs-mini-card { display: flex; flex-direction: column; min-height: 0; }
.cs-mini-card .img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;          /* shorter than before so both cards fit */
  max-height: 32vh;
  margin-bottom: 10px;
  border-radius: 10px;
}
.cs-mini-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--color-navy); }
.cs-mini-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Shared play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--fg);
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--fg);
  margin-left: 4px;
}

.cs-video {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: clamp(40px, 6vh, 80px);
}
.cs-video .img-placeholder {
  width: 100%;
  aspect-ratio: 21 / 9;            /* shorter — was 16/8 (= 2/1) */
  max-height: 50vh;
}
.cs-video-caption {
  padding: clamp(32px, 4.5vw, 56px) clamp(24px, 5vw, 80px);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.cs-video-caption h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-navy);
  margin: 0 0 16px;
  text-align: left;
}
.cs-video-caption p {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  text-align: left;
  max-width: 760px;
  margin: 0;
}

.cs-gallery { padding: 60px 0 80px; }
.cs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-gallery-grid .img-placeholder { width: 100%; aspect-ratio: 4 / 3; }

/* ══════════════════════════════════════════════════════════
   TEAM PAGE
   ══════════════════════════════════════════════════════════ */
.team-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.team-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px var(--pad-x);
}
.team-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
}
.team-hero-text p { color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 420px; }
.team-hero .img-placeholder { width: 100%; height: 100%; min-height: 400px; }

.team-members { padding: 80px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.team-member { text-align: center; }
.avatar-placeholder {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--placeholder-bg);
  position: relative;
  overflow: hidden;
}
.avatar-placeholder::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--placeholder-x);
  border-radius: 50% 50% 0 0;
}
.avatar-placeholder::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  background: var(--placeholder-x);
  border-radius: 60px 60px 0 0;
}
.team-member h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  display: inline-block;
}
.team-member p { font-size: 12px; color: var(--muted); margin-top: 4px; }

.team-cards { padding: 0 0 80px; }
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card { border: 1px solid var(--border); }
.team-card .img-placeholder { width: 100%; aspect-ratio: 4 / 3; }
.team-card-text { padding: 12px 16px; }
.team-card-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.team-card-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   CAREERS PAGE
   ══════════════════════════════════════════════════════════ */
.careers-hero { position: relative; }
.careers-hero .img-placeholder { width: 100%; aspect-ratio: 16 / 8; }
.careers-hero .hero-overlay-title {
  position: absolute;
  bottom: 48px;
  left: var(--pad-x);
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}

.life-section { padding: 80px 0; }
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.life-card .img-placeholder { width: 100%; aspect-ratio: 4 / 3; margin-bottom: 12px; }
.life-card h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.life-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

.jobs-section { padding: 80px 0; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.2s;
  cursor: pointer;
}
.job-card:hover { border-color: var(--fg); }
.job-card .card-thumb { flex-shrink: 0; width: 64px; height: 64px; }
.job-card .card-thumb .img-placeholder { width: 100%; height: 100%; }
.job-card-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.job-card-text p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-intro {
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.contact-intro h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-intro p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 480px; margin: 0 auto; }

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg);
  padding: 4px 8px;
  border: 1px solid var(--fg);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--fg); color: var(--fg); }
.form-input::placeholder { color: var(--border); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-submit {
  align-self: flex-start;
  padding: 12px 36px;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #333; }

.calendly-embed {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  position: relative;
}
.calendly-embed .img-placeholder { width: 100%; height: 100%; position: absolute; inset: 0; }
.calendly-label {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════
   PRESS PAGE
   ══════════════════════════════════════════════════════════ */
.press-title { padding: 48px 0 40px; }
.press-title h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-bottom: 80px;
}
.press-card {
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.2s;
  cursor: pointer;
}
.press-card:hover { border-color: var(--fg); }
.press-card .img-placeholder { width: 100%; aspect-ratio: 16 / 10; }
.press-card-text { padding: 16px 20px; }
.press-card-text h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.press-card-text p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.load-more { text-align: center; padding: 32px 0 80px; }
.load-more .spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--fg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.load-more p {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ══════════════════════════════════════════════════════════ */
.policy-title { padding: 48px 0 32px; }
.policy-title h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}
.policy-body {
  border: 1px solid var(--border);
  background: #fff;
  padding: clamp(32px, 5vw, 64px);
  margin-bottom: 80px;
}
.policy-body p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .section-dots { right: 12px; gap: 8px; }
  .section-dots button { width: 8px; height: 8px; }
  .footer-columns { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }

  /* Homepage */
  .about-grid,
  .services-card,
  .case-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-hero { grid-template-columns: 1fr; }
  .services-hero .img-placeholder { min-height: 280px; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .case-scroll-card { width: 300px; }

  /* Service detail */
  .service-hero .hero-overlay-title { font-size: clamp(32px, 8vw, 56px); bottom: 24px; }

  /* Projects */
  .case-block-grid { grid-template-columns: 1fr 1fr; }

  /* Case study */
  .cs-content-grid { grid-template-columns: 1fr; }
  .cs-gallery-grid { grid-template-columns: 1fr 1fr; }
  .cs-hero .hero-overlay-title { font-size: clamp(32px, 8vw, 56px); bottom: 24px; }

  /* Team */
  .team-hero { grid-template-columns: 1fr; }
  .team-hero .img-placeholder { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-cards-grid { grid-template-columns: 1fr 1fr; }

  /* Careers */
  .life-grid { grid-template-columns: 1fr 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .careers-hero .hero-overlay-title { font-size: clamp(32px, 8vw, 56px); bottom: 24px; }

  /* Contact */
  .contact-body { grid-template-columns: 1fr; }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .case-thumbnails { grid-template-columns: repeat(2, 1fr); }
  .case-block-grid { grid-template-columns: 1fr; }
  .cs-gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-cards-grid { grid-template-columns: 1fr; }
  .life-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   LR PARIS V1.3 — SPEC OVERRIDES
   Appended 2026-04-22 to apply the visual language on top of
   the existing Flavor Theme without a full rewrite.
   ══════════════════════════════════════════════════════════ */

/* Global typography baseline */
body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-navy);
  background: var(--surface-page);
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* Label/section-label — per spec
   NOTE: Typekit kit vxp4fjq ships Trade Gothic Next in Light (300) + Bold (700)
   only. "Regular" (400) is not in the kit so we use Light instead. */
.section-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero display type — Trade Gothic Next Condensed HEAVY (Adobe labels
   the Heavy cut as weight 800 for this family, not 900). */
.hero-title,
.hero .hero-title,
.home .hero-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--color-navy);
  background: rgba(248, 245, 233, 0.88);
}

/* IvyOra accent helper (editorial/italic only) */
.accent,
.type-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-navy);
}

/* Global border weight — 0.5px per spec. Covers the existing 1px rules
   without touching every individual selector. */
.site-header,
.site-footer,
.footer-contact,
.footer-columns,
.footer-col h4,
.footer-locations h4,
.location-item,
.ticker,
.divider,
.work-card,
.team-card,
.card,
.img-placeholder,
.section-dots button,
.hero-dots span,
.site-nav a {
  border-width: var(--border-width);
}
.divider { border-top: var(--border-width) solid var(--border-color); }

/* Card radius — spec mandates 4px on all UI elements; tame the 8/12/16 */
.work-card,
.team-card,
.case-feature .img-placeholder,
.case-thumbnails .img-placeholder,
.process .img-placeholder,
.services-card .img-placeholder,
body.home .panel .services-card .img-placeholder,
.img-placeholder,
.card {
  border-radius: var(--radius-default);
}

/* ── BUTTONS (spec: primary / secondary / ghost) ── */
.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-default);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn--primary {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.btn--primary:hover {
  background: var(--color-french-blue);
  border-color: var(--color-french-blue);
}
.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--secondary:hover {
  background: var(--color-navy);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 6px 0;
}

/* ── FORM INPUTS — French Blue focus ring per spec ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-navy);
  background: var(--surface-page);
  border: var(--border-width) solid var(--border-color-strong);
  border-radius: var(--radius-default);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s ease, border-width 0.15s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: var(--color-french-blue);
  border-width: 1.5px;
  /* keep perceived padding stable */
  padding: 9.5px 13.5px;
}

/* Badges/tags — pill radius only here, per spec */
.badge,
.tag,
.card__tag--pill {
  border-radius: var(--radius-pill);
}

/* Ticker: light beige surface, white cards inside */
.ticker { background: var(--surface-subtle); }

/* ── Hide tiny section eyebrows per Giovanni 2026-04-22 ──
   "remove the tiny titles everywhere — services / who we work with / etc." */
.bk-label,
.section-label { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   Global page hero — full-screen banner used on every non-home page.
   Matches front-page.php .bk-hero visual language (beige plate, navy
   Trade Gothic Condensed title, 0.5px borders, 4px radius).
   Added 2026-04-22 per Giovanni: "fix the headers on the other pages
   to be the header from the main page."
   ─────────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  background: #021E42;
  display: block;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e0ddd6;
}
.page-hero__video,
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: rgba(248, 245, 233, 0.88);
  padding: 20px 48px;
  font-family: 'trade-gothic-next-condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: #021E42;
  text-align: center;
  max-width: 90vw;
  border-radius: 4px;
  pointer-events: none;
}
.page-hero__play {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 6;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 0.5px solid #021E42;
  background: rgba(248, 245, 233, 0.88);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.page-hero__play:hover { background: #F8F5E9; }
.page-hero__play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid #021E42;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.page-hero__play.is-playing::before {
  border: none;
  width: 12px;
  height: 14px;
  background:
    linear-gradient(#021E42, #021E42) left/4px 100% no-repeat,
    linear-gradient(#021E42, #021E42) right/4px 100% no-repeat;
  margin-left: 0;
}



/* ══════════════════════════════════════════════════════════
   GLOBAL NAV — promote homepage nav design to every page.
   Added 2026-04-22 per Giovanni: "change the nav bar to the
   new one, the same design made on the home page."
   ══════════════════════════════════════════════════════════ */

/* Site header — fixed, 100px tall (Giovanni 4/30, blur on non-home 5/15) */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 150 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 0 !important;
  transition: background 0.2s ease !important;
}
/* Blurred background on all pages except home */
body:not(.home) .site-header {
  background: rgba(247, 246, 243, 0.7) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

/* Interior pages: push content below the 100px fixed header */
body:not(.home) {
  padding-top: 70px;
}

/* Header row: logo left, nav center, contact CTA right */
.header-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 clamp(20px, 3vw, 40px) !important;
  height: 70px !important;
  gap: 0 !important;
  position: relative !important;
}

.header-logo {
  display: flex !important;
  align-items: center !important;
  grid-column: 1 !important;
  justify-self: start !important;
  width: auto !important;
  height: auto !important;
  text-decoration: none !important;
  margin-right: 0 !important;
}
.header-logo img,
.header-logo .bk-logo-img {
  height: 28px !important;
  width: auto !important;
  object-fit: contain !important;
}
.header-logo .img-placeholder { display: none !important; }

.site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-column: 2 !important;
  flex: 0 0 auto !important;
  gap: clamp(8px, 2vw, 28px) !important;
}

/* Flat text links, no border pills */
.site-nav a {
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 16px !important;
  background: transparent !important;
  color: #1a1a1a !important;
  font-family: var(--font-primary) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  white-space: nowrap !important;
  transition: opacity 0.2s !important;
}
.site-nav a:hover {
  opacity: 0.6 !important;
  background: transparent !important;
  color: #1a1a1a !important;
}
.site-nav a.active,
.site-nav a.current-menu-item {
  background: transparent !important;
  color: #1a1a1a !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}
.site-nav a.nav-contact {
  position: absolute !important;
  right: clamp(20px, 3vw, 40px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-left: 0 !important;
  background: var(--color-navy, #021E42) !important;
  color: #fff !important;
  padding: 12px 32px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  font-size: 13px !important;
  border: none !important;
  transition: background 0.2s ease !important;
}
.site-nav a.nav-contact:hover {
  background: #0024BC !important;
  color: #fff !important;
  opacity: 1 !important;
}
.site-nav a.nav-contact.current-menu-item,
.site-nav a.nav-contact.active {
  background: #0024BC !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════════════
   BODY SIDE PADDING — small inset on interior pages only.
   Added 2026-04-22 per Giovanni: "add a little padding on
   both the left and right sides of the bodies."
   .page-hero uses negative margin to stay full-bleed.
   ══════════════════════════════════════════════════════════ */
body:not(.home) {
  padding-left: 0;
  padding-right: 0;
}
body:not(.home) .page-hero {
  margin-left: calc(-1 * clamp(16px, 2.5vw, 40px));
  margin-right: calc(-1 * clamp(16px, 2.5vw, 40px));
  width: auto;
}


/* ══════════════════════════════════════════════════════════
   FOOTER — V1.3 redesign.
   Added 2026-04-22 per Giovanni + design team notes:
   - no box borders on any footer links (incl. Connect)
   - condensed contact form: single email input + Send button
   - cleaner column rhythm, transparent bg, matches nav language
   ══════════════════════════════════════════════════════════ */

.site-footer {
  background: transparent !important;
  color: var(--color-navy);
  border-top: 0.5px solid var(--border-color);
  padding: 80px 0 32px;
  margin-top: 80px;
}
body.home .site-footer { background: transparent; margin: 0; padding: 0; min-height: 0; }
body.home .site-footer .footer-inner { width: 100%; }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
  display: grid;
  gap: 64px;
}

/* ── Condensed contact form ── */
.footer-contact {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--border-color);
}
.footer-contact-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  color: var(--color-navy);
  margin: 0 0 24px;
}
.footer-contact-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border: 0.5px solid var(--color-navy);
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
}
.footer-contact-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-navy);
  outline: none;
}
.footer-contact-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.footer-contact-submit {
  border: none;
  border-left: 0.5px solid var(--color-navy);
  background: var(--color-navy);
  color: #fff;
  padding: 0 28px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-contact-submit:hover { background: var(--color-french-blue); }

/* ── 3-column link grid ── */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--border-color);
}
.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border-color);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* FLAT link style — no border, no pill, no background */
.footer-col ul li a {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--color-navy);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover {
  opacity: 0.6;
  color: var(--color-navy) !important;
  border: none !important;
  background: transparent !important;
}

/* ── Locations ── */
.footer-locations {
  text-align: left;
}
.footer-locations h4 {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border-color);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-item {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-navy);
}

/* ── Bottom bar ── */
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 0.5px solid var(--border-color);
  gap: 24px;
}
.footer-logo img {
  height: 20px;
  width: auto;
  display: block;
}
.footer-copyright {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .site-footer { padding: 48px 0 24px; margin-top: 48px; }
  .footer-inner { gap: 40px; padding: 0 20px; }
  .footer-contact-form { flex-direction: column; border: none; gap: 12px; }
  .footer-contact-input {
    border: 0.5px solid var(--color-navy);
    border-radius: 4px;
  }
  .footer-contact-submit {
    border: none;
    border-radius: 4px;
    padding: 14px 20px;
  }
  .footer-columns { grid-template-columns: 1fr; gap: 32px; }
  .locations-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-bar { flex-direction: column; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════
   PAGE-LEVEL TWEAKS — 2026-04-22
   Team header / Services header / Work grid / Pinterest projects
   Strip tiny subtitles site-wide.
   ═══════════════════════════════════════════════════════════ */

/* ── Strip lorem-ipsum subtitles under hero headings and section
      titles across every page. Hidden via CSS so markup stays
      reversible. ── */
.team-hero-text p,
.projects-hero > p,
.contact-intro > p,
.case-block-header p,
.bk-wk p,
.press-title ~ p { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   TEAM PAGE — title on the right, bigger
   ═══════════════════════════════════════════════════════════ */
.team-hero {
  grid-template-columns: 1fr 1fr !important;
  align-items: stretch !important;
  height: calc(100dvh - 70px) !important;
  max-height: calc(100dvh - 70px) !important;
  min-height: 0 !important;
  gap: 0 !important;
  padding: clamp(24px, 4vh, 56px) 0 clamp(24px, 4vh, 56px) clamp(24px, 5vw, 80px) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.team-hero > .img-placeholder { border-radius: 16px !important; }
.team-hero .team-hero-text {
  order: 2 !important;
  text-align: left !important;
  padding: clamp(32px, 5vh, 80px) clamp(32px, 5vw, 96px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
.team-hero > .img-placeholder {
  order: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  display: block !important;
}
/* Mobile single-column — image fills full width, taller */
@media (max-width: 768px) {
  .team-hero > .img-placeholder {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    height: auto !important;
    min-height: 60vh !important;
  }
}
.team-hero-text h1 {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(56px, 8vw, 120px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 0.95 !important;
  color: var(--color-navy) !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .team-hero { grid-template-columns: 1fr !important; height: auto !important; max-height: none !important; min-height: auto !important; }
  .team-hero > .img-placeholder { min-height: 280px !important; order: 1 !important; }
  .team-hero .team-hero-text { order: 2 !important; padding: 40px 24px !important; }
  .team-hero-text h1 { font-size: clamp(48px, 14vw, 80px) !important; }
}

/* Per-member name + role below each circular photo (Jackie 4/24) */
.team-grid .team-member { text-align: center; }
.team-member-name {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: var(--color-navy) !important;
  margin: 18px 0 6px !important;
}
.team-member-role {
  color: var(--muted) !important;
  font-size: clamp(13px, 1vw, 15px) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  max-width: 240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — centered + enlarged header
   ═══════════════════════════════════════════════════════════ */
.services-hero {
  grid-template-columns: 1fr 1fr !important;
  min-height: 70vh !important;
  align-items: stretch !important;
  gap: 0 !important;
}
.services-hero > .img-placeholder {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-height: calc(70vh - 48px) !important;
  margin: 24px 0 24px clamp(24px, 5vw, 80px) !important;
  border-radius: 16px !important;
  align-self: stretch !important;
  background-clip: border-box !important;
  background-origin: border-box !important;
}
.services-hero-text {
  padding: 80px clamp(24px, 5vw, 80px) !important;
  max-width: none !important;
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: center !important;
}
.services-hero-text h1 {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(56px, 8vw, 120px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 0.95 !important;
  color: var(--color-navy) !important;
  margin: 0 !important;
}
.services-hero-text p {
  display: block !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.7 !important;
  color: var(--muted) !important;
  max-width: 480px !important;
  margin-top: 24px !important;
}

/* Service cards — consistent heights (Jackie 4/24) */
.service-card {
  height: 100% !important;
  align-items: stretch !important;
  min-height: 120px !important;
}
.service-card-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}


/* 3×2 grid for 6 service cards (Jackie 4/24) */
.service-cards-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
.service-cards-grid .service-card:last-child:nth-child(odd) { grid-column: auto !important; }
@media (max-width: 1100px) { .service-cards-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 768px)  { .service-cards-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 520px)  { .service-cards-grid { grid-template-columns: 1fr !important; } }

/* Homepage Work section — 2 rows × 3 cols */
.bk-wk .bk-g3 {
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, auto) !important;
  gap: 32px 24px !important;
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS PAGE — Pinterest-style timeline masonry
   ═══════════════════════════════════════════════════════════ */
.projects-hero {
  text-align: center !important;
  padding: 80px clamp(24px, 5vw, 80px) 48px !important;
}
.projects-hero h1 {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(56px, 8vw, 120px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 0.95 !important;
  color: var(--color-navy) !important;
  margin: 0 !important;
}

/* Filter row — centered above the grid */
.projects-filter-row {
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
}

/* Masonry columns (Pinterest pattern) */
.projects-pin-grid {
  column-count: 3;
  column-gap: 16px;
  padding-bottom: 80px;
}
.pin-card {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 16px;
  text-decoration: none;
  color: inherit;
}
.pin-card .img-placeholder {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.pin-card .pin-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 0;
}
.pin-card .pin-card-meta h4 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--color-navy);
}
.pin-card .pin-card-meta .pin-card-year {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
}
.pin-card:hover .img-placeholder { opacity: 0.85; transition: opacity 0.2s; }

/* Rotating placeholder aspect ratios to give the masonry real variation */
.pin-card--0 .img-placeholder { aspect-ratio: 3/4; }
.pin-card--1 .img-placeholder { aspect-ratio: 1/1; }
.pin-card--2 .img-placeholder { aspect-ratio: 4/5; }
.pin-card--3 .img-placeholder { aspect-ratio: 16/9; }
.pin-card--4 .img-placeholder { aspect-ratio: 2/3; }
.pin-card--5 .img-placeholder { aspect-ratio: 5/4; }

@media (max-width: 900px) { .projects-pin-grid { column-count: 2; } }
@media (max-width: 520px) { .projects-pin-grid { column-count: 1; } }


/* ═══════════════════════════════════════════════════════════
   SHORT-SCREEN AUDIT — 2026-04-22
   Target: MacBook 14" w/ notch (≈828–900px viewport height)
   and any 13" laptop running expanded browser chrome.
   ═══════════════════════════════════════════════════════════ */

/* ── CAREERS HERO: subtract fixed-nav height so the video
      hero fits the visible viewport instead of overflowing
      by 82px. Use dvh so Safari chrome toggles don't jitter. ── */
.page-hero {
  height: calc(100dvh - 70px) !important;
  min-height: 520px !important;
}
body.home .page-hero { height: 100dvh !important; }

/* ── HOMEPAGE PANELS: swap vh→dvh to prevent the jump when
      Safari collapses/expands the toolbar on MacBook 14". ── */
.scroll-container { height: 100dvh !important; }
.panel {
  min-height: 100dvh !important;
  height: 100dvh !important;
}
body.home .hero-slide .img-placeholder {
  height: calc(100dvh - 70px - 70px) !important;
}

/* ── PROJECTS HERO: the 80/48 padding + 82px nav ate the
      entire first fold on short screens. Tighten it so at
      least one pin-card row peeks above the fold. ── */
@media (max-height: 900px) {
  .projects-hero {
    padding: 32px clamp(24px, 5vw, 80px) 16px !important;
  }
  .projects-hero h1 { font-size: clamp(48px, 6vw, 80px) !important; }
  .projects-filter-row { padding: 12px 0 20px !important; }
}

/* ── TEAM / SERVICES heroes: cap vh so tall-screen 70/60vh
      doesn't balloon on 4K, and clamp down nicely on short
      screens by using min() of vh and a safe floor. ── */
@media (max-height: 900px) {
  .team-hero { min-height: calc(100dvh - 70px) !important; }
  .team-hero > .img-placeholder { min-height: calc(100dvh - 70px) !important; }
  .services-hero { min-height: 480px !important; }
  .services-hero-text { padding: 48px clamp(24px, 5vw, 80px) !important; }
}

/* ── CASE STUDY feature image: 70vh was fine on big monitors
      but eats too much on short screens. Cap with dvh and a
      sensible max. ── */
@media (max-height: 900px) {
  .case-feature .img-placeholder { max-height: 60dvh !important; }
}


/* ═══════════════════════════════════════════════════════════
   RETIRE DIAGONAL-X PLACEHOLDER — 2026-04-22
   Any .img-placeholder or .bk-ph that has a real background
   image should not show the legacy ::before/::after X overlay.
   ═══════════════════════════════════════════════════════════ */
.img-placeholder[style*="url("]::before,
.img-placeholder[style*="url("]::after,
.bk-ph[style*="url("]::before,
.bk-ph[style*="url("]::after {
  content: none !important;
  display: none !important;
}

/* ═══════════════════════════════════════
   LR PARIS FOOTER (Giovanni 4/30 design refresh)
   ═══════════════════════════════════════ */
.lr-footer {
  background: #f7f6f3 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  width: 100% !important;
  color: var(--color-navy, #021E42) !important;
  position: relative !important;
}
.lr-footer * { box-sizing: border-box; }

.lrf-upper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(56px, 9vh, 120px) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 80px);
  gap: clamp(48px, 8vh, 96px);
}

.lrf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.lrf-left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 65%;
}

.lrf-headline {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-weight: 400 !important;
  font-size: clamp(56px, 8.5vw, 128px) !important;
  color: var(--color-navy, #021E42) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin: 0 !important;
  white-space: nowrap;
}

.lrf-email-row {
  display: flex;
  align-items: center;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.60);
  border: 0.5px solid rgba(2, 30, 66, 0.14);
  border-radius: 4px;
  padding: 13px 18px;
  width: 100%;
}
.lrf-input {
  flex: 1;
  background: transparent;
  border: none;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--color-navy, #021E42);
  outline: none;
  font-family: 'trade-gothic-next', Arial, sans-serif;
}
.lrf-input::placeholder { color: rgba(2, 30, 66, 0.30); }
.lrf-arrow {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 0 12px;
  font-size: 16px;
  color: rgba(2, 30, 66, 0.35);
  cursor: pointer;
  transition: color 0.15s ease;
  line-height: 1;
}
.lrf-arrow:hover { color: #0024BC; }

/* Spinning circular LR PARIS stamp */
.lrf-stamp {
  flex-shrink: 0;
  align-self: flex-start;
  width: clamp(96px, 11vw, 148px);
  height: clamp(96px, 11vw, 148px);
}
.lrf-stamp svg {
  width: 100%;
  height: 100%;
  animation: lrf-spin 18s linear infinite;
  display: block;
}
@keyframes lrf-spin { to { transform: rotate(360deg); } }

/* Columns block */
.lrf-cols-wrap { flex-shrink: 0; }
.lrf-divider {
  border: none;
  border-top: 0.5px solid rgba(2, 30, 66, 0.12);
  margin: 0 0 24px;
}
.lrf-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lrf-col { padding-right: 24px; }
.lrf-col:last-child { padding-right: 0; }
.lrf-col-title {
  display: block;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin-bottom: 14px;
}
.lrf-col-line {
  display: block;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(2, 30, 66, 0.78);
}
.lrf-col-line a {
  color: rgba(2, 30, 66, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(2, 30, 66, 0.45);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.lrf-col-line a:hover {
  color: var(--color-navy, #021E42);
  text-decoration-color: var(--color-navy, #021E42);
}

/* Navy bottom bar */
.lrf-bar {
  background: var(--color-navy, #021E42);
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  margin: 0;
}
.lrf-copy {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
}
.lrf-legal {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lrf-legal a {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.lrf-legal a:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .lrf-top { flex-direction: column; align-items: stretch; }
  .lrf-left { max-width: 100%; }
  .lrf-headline { font-size: clamp(40px, 13vw, 96px) !important; white-space: normal; }
  .lrf-stamp { align-self: flex-end; }
  .lrf-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .lrf-bar { flex-direction: column; height: auto; padding: 24px clamp(20px, 5vw, 40px); gap: 16px; }
  .lrf-legal { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .lrf-cols { grid-template-columns: 1fr; }
}

/* Kill leftover CSS rules from old footer markup */
.site-footer.lr-footer .footer-inner,
.site-footer.lr-footer .footer-contact,
.site-footer.lr-footer .footer-columns,
.site-footer.lr-footer .footer-locations,
.site-footer.lr-footer .footer-bar { display: none !important; }
/* === LR PARIS FOOTER END === */


/* Case study intro (title + subtitle below hero) */
.cs-intro {
  padding: clamp(48px, 7vh, 96px) var(--pad-x) clamp(24px, 3vh, 48px) !important;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cs-intro-eyebrow {
  font-family: var(--font-primary);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.cs-intro-title {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 7vw, 112px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 0.95 !important;
  color: var(--color-navy) !important;
  margin: 0 0 24px !important;
}
.cs-intro-subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--color-navy);
  font-weight: 300;
  max-width: 900px;
  margin: 0;
}

/* ═══════ LR OFFER (Products / Packaging / Services) ═══════ */
.lr-offer-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 140px) clamp(24px, 5vw, 80px) clamp(56px, 8vh, 120px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.lr-offer-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lr-offer-eyebrow {
  font-family: var(--font-primary, 'trade-gothic-next', Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin-bottom: clamp(48px, 8vh, 96px);
}
.lr-offer-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(56px, 9vw, 140px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 clamp(24px, 4vh, 40px) !important;
}
.lr-offer-intro {
  font-family: var(--font-primary, 'trade-gothic-next', Arial, sans-serif);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--text-muted, #555);
  max-width: 440px;
  margin: 0;
}
.lr-offer-hero-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 70vh;
  border-radius: 16px;
  overflow: hidden;
  background: #eae7e0;
}
.lr-offer-hero-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* 5-card row */
.lr-offer-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) clamp(80px, 12vh, 160px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.lr-offer-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(12px, 1vw, 16px) clamp(12px, 1vw, 16px) clamp(20px, 2vw, 28px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lr-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.lr-offer-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: #eae7e0;
  background-size: cover;
  background-position: center;
  margin-bottom: clamp(16px, 2vh, 24px);
}
.lr-offer-card-body {
  flex: 1;
  padding: 0 clamp(8px, 1vw, 14px);
  display: flex;
  flex-direction: column;
}
.lr-offer-card-title {
  font-family: var(--font-primary, 'trade-gothic-next', Arial, sans-serif);
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin: 0 0 12px;
}
.lr-offer-card-text {
  font-family: var(--font-primary, 'trade-gothic-next', Arial, sans-serif);
  font-size: clamp(12px, 0.85vw, 14px);
  line-height: 1.6;
  color: var(--text-muted, #555);
  font-weight: 300;
  margin: 0 0 clamp(24px, 4vh, 40px);
}
.lr-offer-card-cta {
  align-self: flex-start;
  margin: 0 clamp(8px, 1vw, 14px);
  font-family: 'ivyora-display', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--color-navy, #021E42);
  text-decoration: none;
  padding: 6px 18px;
  border: 0.5px solid var(--color-navy, #021E42);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lr-offer-card-cta:hover {
  background: var(--color-navy, #021E42);
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .lr-offer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .lr-offer-hero { grid-template-columns: 1fr; gap: 32px; padding-top: clamp(48px, 8vh, 96px); }
  .lr-offer-hero-card { aspect-ratio: 4 / 3; max-height: 50vh; }
  .lr-offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lr-offer-grid { grid-template-columns: 1fr; }
  .lr-offer-title { font-size: clamp(48px, 14vw, 80px) !important; }
}
/* === LR OFFER END === */


/* Leadership bios under each circular photo (Giovanni 5/26) */
.team-member { max-width: 380px; margin: 0 auto; }
.team-member-bio {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted, #555);
  margin: 14px auto 0;
  max-width: 320px;
  text-align: center;
}

/* ═══════ PRIVACY POLICY (Giovanni 5/26) ═══════ */
.pp-eyebrow-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 64px) clamp(0px, 2vh, 24px);
}
.pp-eyebrow {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(2, 30, 66, 0.78);
}

.pp-title-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px) clamp(40px, 6vh, 80px);
}
.pp-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(64px, 9vw, 140px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 !important;
}

.pp-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px) clamp(80px, 12vh, 160px);
  color: var(--color-navy, #021E42);
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  font-weight: 300;
}
.pp-body p {
  margin: 0 0 18px;
  color: var(--color-navy, #021E42);
}
.pp-body a {
  color: var(--color-navy, #021E42);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(2, 30, 66, 0.5);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.pp-body a:hover {
  color: #0024BC;
  text-decoration-color: #0024BC;
}

.pp-h2 {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--color-navy, #021E42) !important;
  margin: 40px 0 16px !important;
  line-height: 1.4 !important;
}

.pp-list {
  margin: 0 0 18px 24px;
  padding: 0;
  list-style: disc;
}
.pp-list li {
  margin-bottom: 6px;
  color: var(--color-navy, #021E42);
}

.pp-contact-row {
  display: flex;
  gap: clamp(40px, 8vw, 120px);
  flex-wrap: wrap;
  margin: 12px 0 24px;
}
.pp-contact-cell strong {
  font-weight: 700;
  margin-right: 8px;
}

.pp-effective {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-navy, #021E42);
  margin-top: 32px;
}
/* === PP END === */

/* ═══════ ABOUT US (Giovanni 6/01) ═══════ */

/* Hero — group photo left, title right */
.au-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 140px) clamp(24px, 5vw, 80px) clamp(56px, 8vh, 120px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.au-hero-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background-color: #ffffff;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.au-hero-photo:hover {
  background-blend-mode: normal;
  filter: saturate(1);
  transition: background-blend-mode 0.35s ease-in, filter 0.35s ease-in;
}
.au-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.au-eyebrow {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin-bottom: clamp(24px, 4vh, 56px);
}
.au-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
  font-size: clamp(56px, 8vw, 124px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 clamp(20px, 3vh, 32px) !important;
}
.au-title em {
  font-style: italic !important;
  font-weight: 400;
}
.au-intro {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--color-navy, #021E42);
  max-width: 460px;
  margin: 0;
  font-weight: 300;
}

/* Leadership row — 3 portrait cards */
.au-leaders {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 64px) clamp(24px, 5vw, 80px) clamp(56px, 8vh, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.au-leader-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.au-leader-photo {
  width: 100%;
  aspect-ratio: 4 / 5;          /* portrait */
  background-size: cover;
  background-position: center top;
  background-color: #eae7e0;
}
.au-leader-body {
  padding: clamp(20px, 2vw, 32px);
}
.au-leader-name {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 16px !important;
  line-height: 1.2 !important;
}
.au-leader-bio {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.65;
  color: var(--text-muted, #555);
  font-weight: 300;
  margin: 0;
}

/* Mosaic — the headshot grid PNG */
.au-mosaic {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.au-mosaic img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3 showcase sections at bottom */
.au-showcase {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 96px) clamp(24px, 5vw, 80px) clamp(64px, 10vh, 128px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.au-showcase-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.au-showcase-card:hover { transform: translateY(-4px); }
.au-showcase-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 20px !important;
}
.au-showcase-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #eae7e0;
}

/* Responsive */
@media (max-width: 1000px) {
  .au-hero { grid-template-columns: 1fr; gap: 32px; }
  .au-hero-photo { aspect-ratio: 4 / 3; }
  .au-leaders { grid-template-columns: 1fr; gap: 24px; }
  .au-leader-card { max-width: 480px; margin: 0 auto; }
  .au-leader-photo { aspect-ratio: 3 / 4; }
  .au-showcase { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .au-title { font-size: clamp(48px, 14vw, 88px) !important; }
  .au-mosaic { padding: 32px 16px; }
}

/* === ABOUT US END === */

/* ═══════ CAREERS (Giovanni 6/01) ═══════ */

/* Hero — split: text left, group photo right */
.cr-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 160px) clamp(24px, 5vw, 80px) clamp(48px, 7vh, 96px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.cr-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cr-hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #eae7e0;
}
.cr-eyebrow {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin-bottom: clamp(20px, 3vh, 36px);
}
.cr-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
  font-size: clamp(48px, 6.5vw, 104px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 clamp(20px, 3vh, 32px) !important;
}
.cr-title em {
  font-style: italic !important;
  font-weight: 400 !important;
}
.cr-intro {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--color-navy, #021E42);
  max-width: 480px;
  margin: 0 0 clamp(28px, 4vh, 48px);
  font-weight: 300;
}
.cr-cta-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  flex-wrap: wrap;
}
.cr-cta-primary {
  background: var(--color-navy, #021E42);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.cr-cta-primary:hover { background: #0024BC; }
.cr-cta-link {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 14px;
  color: var(--color-navy, #021E42);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(2, 30, 66, 0.5);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.cr-cta-link:hover { color: #0024BC; text-decoration-color: #0024BC; }

/* Stats row */
.cr-stats {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2.5vw, 36px);
  border-top: 0.5px solid rgba(2, 30, 66, 0.12);
  border-bottom: 0.5px solid rgba(2, 30, 66, 0.12);
}
.cr-stat { text-align: center; }
.cr-stat-num {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  color: var(--color-navy, #021E42);
  margin-bottom: 12px;
}
.cr-stat-label {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
}

/* Section eyebrow used across multiple sections */
.cr-section-eyebrow {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin-bottom: clamp(32px, 5vh, 56px);
  text-align: center;
}

/* Why LR Paris — 3x2 value grid with SVG icons */
.cr-why {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 10vh, 128px) clamp(24px, 5vw, 80px);
}
.cr-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 48px);
}
.cr-why-card { text-align: left; }
.cr-why-icon {
  width: 36px;
  height: 36px;
  color: #0024BC;
  margin-bottom: 18px;
}
.cr-why-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cr-why-title {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(16px, 1.3vw, 20px) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
}
.cr-why-body {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--text-muted, #555);
  font-weight: 300;
  margin: 0;
}

/* Life at LR Paris — mosaic gallery */
.cr-life {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) clamp(24px, 5vw, 80px);
}
.cr-life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 22vw, 320px);
  gap: clamp(12px, 1.4vw, 20px);
}
.cr-life-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  background: #eae7e0;
  grid-column: span 1;
}
.cr-life-card--wide {
  grid-column: span 2;
}
.cr-life-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cr-life-card:hover .cr-life-img { transform: scale(1.04); }
.cr-life-cap {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(2, 30, 66, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Offices */
.cr-offices {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) clamp(24px, 5vw, 80px);
  border-top: 0.5px solid rgba(2, 30, 66, 0.12);
}
.cr-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.cr-office { text-align: center; }
.cr-office-city {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 16px !important;
}
.cr-office-addr {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-navy, #021E42);
  font-weight: 300;
  margin: 0 0 16px;
}
.cr-office-region {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(2, 30, 66, 0.78);
}

/* Open Positions */
.cr-open {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(64px, 10vh, 128px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.cr-open-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(40px, 5.5vw, 72px) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 20px !important;
}
.cr-open-intro {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--color-navy, #021E42);
  font-weight: 300;
  margin: 0 0 clamp(32px, 5vh, 56px);
}

/* Portal link card */
.cr-portal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid rgba(2, 30, 66, 0.12);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  text-align: left;
  margin: 0 0 clamp(48px, 8vh, 96px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cr-portal:hover {
  border-color: var(--color-navy, #021E42);
  transform: translateY(-2px);
}
.cr-portal-title {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--color-navy, #021E42);
  margin-bottom: 6px;
}
.cr-portal-sub {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 13px;
  color: rgba(2, 30, 66, 0.78);
}
.cr-portal-arrow {
  font-size: clamp(24px, 2vw, 32px);
  color: var(--color-navy, #021E42);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cr-portal:hover .cr-portal-arrow { transform: translateX(4px); color: #0024BC; }

/* Followup block */
.cr-followup-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 16px !important;
}
.cr-followup-body {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--color-navy, #021E42);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 20px;
}
.cr-followup-email {
  display: inline-block;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--color-navy, #021E42);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s;
}
.cr-followup-email:hover { color: #0024BC; }

/* Responsive */
@media (max-width: 1000px) {
  .cr-hero { grid-template-columns: 1fr; gap: 32px; }
  .cr-hero-photo { aspect-ratio: 16 / 10; order: -1; }
  .cr-life-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(180px, 38vw, 280px); }
  .cr-life-card--wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .cr-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; padding: 32px 24px; }
  .cr-why-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-offices-grid { grid-template-columns: 1fr; gap: 32px; }
  .cr-portal { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 560px) {
  .cr-why-grid { grid-template-columns: 1fr; }
  .cr-life-grid { grid-template-columns: 1fr; }
  .cr-life-card--wide { grid-column: span 1; }
  .cr-title { font-size: clamp(44px, 13vw, 80px) !important; }
  .cr-cta-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .cr-cta-primary { text-align: center; }
}

/* Kill the old page-hero video styles on careers */
body.page-template-page-careers .page-hero { display: none !important; }



.cr-hero-photo--mosaic {
  background: transparent !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cr-hero-photo--mosaic img {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
}
/* === CAREERS END === */

/* ═══════ HOMEPAGE FIGMA REFRESH (Giovanni 6/01) ═══════ */

/* Shared pill button */
.bk-pill {
  display: inline-block;
  padding: 8px 22px;
  border: 0.75px solid var(--color-navy, #021E42);
  border-radius: 999px;
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-navy, #021E42);
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.bk-pill em { font-style: italic; }
.bk-pill:hover { background: var(--color-navy, #021E42); color: #fff; }

/* ═══ p0 — THE AGENCY THAT MAKES / WORTH KEEPING ═══ */
.bk-agy {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 48px);
}
.bk-agy-line {
  font-family: var(--font-condensed, 'trade-gothic-next-condensed', 'Arial Narrow', sans-serif) !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 6vw, 88px) !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 !important;
  text-align: center;
}
/* Sliding-queue carousel — cards 40vw wide bleed past viewport edges */
.bk-agy-carousel {
  position: relative;
  width: 100vw;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.bk-agy-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  will-change: transform;
}
.bk-agy-card {
  flex: 0 0 40vw;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #eae7e0;
  opacity: 0.78;
  transition: opacity 1.2s ease;
}
.bk-agy-card .bk-ph {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  position: relative;
  z-index: 0;
}
.bk-agy-card--center {
  opacity: 1;
  z-index: 2;
  box-shadow: 0 24px 56px -28px rgba(2, 30, 66, 0.25);
}
/* 20% white overlay on the active center card so the italic label reads cleanly */
.bk-agy-card--center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
/* Label lives INSIDE each card so it moves with the card and fades with it */
.bk-agy-card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 124px);
  color: #0024BC;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.0s ease;
}
.bk-agy-card--center .bk-agy-card-label {
  opacity: 1;
}

@media (max-width: 900px) {
  .bk-agy-card { flex: 0 0 60vw; }
}
@media (max-width: 600px) {
  .bk-agy-card { flex: 0 0 75vw; }
  .bk-agy-card-label { font-size: clamp(40px, 12vw, 80px); }
}

/* Hide leftover dot CSS — markup is gone but the rules stay harmless */
.bk-agy-dots { display: none !important; }
/* Dots */
.bk-agy-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.bk-agy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(2, 30, 66, 0.20);
  transition: background 0.25s ease, width 0.25s ease;
  cursor: pointer;
}
.bk-agy-dot--active {
  background: var(--color-navy, #021E42);
  width: 26px;
  border-radius: 999px;
}

/* ═══ p1 — GLOBAL REACH ═══ */
.bk-gr-content {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
.bk-gr {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 80px);
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.bk-gr-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
}
.bk-gr-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-weight: 400 !important;
  font-size: clamp(48px, 7vw, 112px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 !important;
}
.bk-gr-text { display: flex; flex-direction: column; gap: 28px; }
.bk-gr-text p {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--color-navy, #021E42);
  font-weight: 300;
  margin: 0;
  max-width: 460px;
}
.bk-gr-text .bk-pill { align-self: flex-start; }

/* Stats bar (navy at bottom) */
.bk-gr-stats {
  width: 100%;
  background: var(--color-navy, #021E42);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(24px, 3vh, 40px) clamp(24px, 5vw, 80px);
}
.bk-gr-stat { text-align: center; }
.bk-gr-stat-n {
  display: block;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.bk-gr-stat-l {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══ p2 — WHAT WE OFFER ═══ */
.bk-wwo-title {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 6vw, 88px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 clamp(32px, 5vh, 56px) !important;
}
.bk-wwo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.bk-wwo-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.bk-wwo-card:hover { transform: translateY(-4px); }
.bk-wwo-card-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(24px, 2.8vw, 40px) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 18px !important;
}
.bk-wwo-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: #eae7e0;
}
.bk-wwo-ticker {
  margin-top: clamp(32px, 5vh, 64px);
  overflow: hidden;
  width: 100%;
}
.bk-wwo-ticker .bk-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: bkTick 220s linear infinite;
  width: max-content;
}
.bk-wwo-ticker .bk-ticker-item {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  flex-shrink: 0;
  margin-right: clamp(28px, 3vw, 56px);   /* uniform spacing — loop math now exact */
}

/* ═══ p3 — HOW WE WORK ═══ */
.bk-hww-title {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 6vw, 88px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 clamp(32px, 5vh, 56px) !important;
}
.bk-hww-box {
  background: linear-gradient(180deg, rgba(2, 30, 66, 0.04) 0%, rgba(2, 30, 66, 0.10) 100%);
  border: 1px solid rgba(2, 30, 66, 0.10);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 24px 60px -32px rgba(2, 30, 66, 0.18);
  position: relative;
}
.bk-hww-step {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 28px) clamp(14px, 1.5vw, 22px);
  border-radius: 16px;
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
}
/* Arrow connector between steps */
.bk-hww-step + .bk-hww-step::before {
  content: '';
  position: absolute;
  top: clamp(60px, 5vw, 84px);
  left: calc(-1 * clamp(10px, 1vw, 16px));
  width: clamp(8px, 0.8vw, 12px);
  height: 1px;
  background: rgba(2, 30, 66, 0.25);
}
.bk-hww-step:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px -16px rgba(2, 30, 66, 0.18);
}
.bk-hww-step:hover .bk-hww-step-num     { color: rgba(2, 30, 66, 0.9); }
.bk-hww-step:hover .bk-hww-step-icon    { color: #0024BC; transform: scale(1.08); }
.bk-hww-step:hover .bk-hww-step-title   { color: var(--color-navy, #021E42) !important; border-bottom-color: var(--color-navy, #021E42); }
.bk-hww-step:hover .bk-hww-step-body    { color: var(--color-navy, #021E42); }

/* Big italic number */
.bk-hww-step-num {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(2, 30, 66, 0.7);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Lucide icon between number and title */
.bk-hww-step-icon {
  width: 28px;
  height: 28px;
  color: rgba(2, 30, 66, 0.65);
  margin-bottom: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.bk-hww-step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bk-hww-step-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(26px, 2.8vw, 38px) !important;
  line-height: 1 !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 14px !important;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(2, 30, 66, 0.25);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.bk-hww-step-body {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
  color: rgba(2, 30, 66, 0.78);
  font-weight: 300;
  margin: 0;
  transition: color 0.3s ease;
}

/* ═══ p4 — LR PARIS STORY ═══ */
.bk-lrs-title {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 6vw, 88px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 0 clamp(32px, 5vh, 56px) !important;
}
.bk-lrs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.bk-lrs-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bk-lrs-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #d4d0c8;
}
.bk-lrs-body {
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bk-lrs-card-title {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(14px, 1.1vw, 17px) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.bk-lrs-card .bk-pill { align-self: flex-start; }

/* ═══ p5 — SELECTED PROJECTS (with blue border around section) ═══ */

.bk-sp {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 80px);
}
.bk-sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 28px);
}
.bk-sp-card,
.bk-sp-titlebox {
  aspect-ratio: 4 / 3;
}
.bk-sp-titlebox {
  aspect-ratio: auto;
  justify-content: center;
}
.bk-sp-titlebox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(24px, 4vh, 48px);
  padding: clamp(8px, 1vw, 16px) 0;
}
.bk-sp-title {
  font-family: var(--font-condensed) !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 5.5vw, 88px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  line-height: 0.92 !important;
  color: var(--color-navy, #021E42) !important;
  margin: 0 !important;
}
.bk-sp-titlebox .bk-pill { align-self: flex-start; }
.bk-sp-card {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #eae7e0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.bk-sp-card:hover { transform: translateY(-3px); }


/* ═══ p6 — Footer "Book a visit?" line ═══ */
.lrf-bookvisit {
  margin: 16px 0 0;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-navy, #021E42);
}

/* Responsive */
@media (max-width: 1000px) {
  .bk-gr-row { grid-template-columns: 1fr; gap: 32px; }
  .bk-wwo-grid { grid-template-columns: 1fr; }
  .bk-hww-box { grid-template-columns: repeat(2, 1fr); }
  .bk-lrs-grid { grid-template-columns: 1fr; }
  .bk-sp-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-gr-stats { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .bk-agy-cards { grid-template-columns: 1fr; }
  .bk-agy-line { font-size: clamp(32px, 10vw, 56px) !important; }
  .bk-hww-box { grid-template-columns: 1fr; }
  .bk-sp-grid { grid-template-columns: 1fr; }
}

body.home .bk-dots { display: none !important; }
.bk-sp-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(2, 30, 66, 0.75);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}
.bk-sp-card:hover .bk-sp-card-label { background: var(--color-navy, #021E42); }
/* === HOMEPAGE FIGMA END === */


/* ═══════ CONTACT (HubSpot embed) ═══════ */
.contact-intro {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(72px, 11vh, 144px) clamp(24px, 5vw, 80px) clamp(24px, 4vh, 56px);
  text-align: left;
}
.ct-eyebrow {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy, #021E42);
  margin-bottom: clamp(24px, 4vh, 40px);
}
.ct-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(56px, 8vw, 128px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 clamp(20px, 3vh, 32px) !important;
}
.ct-intro {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--color-navy, #021E42);
  max-width: 560px;
  margin: 0;
  font-weight: 300;
}

.contact-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 80px) clamp(80px, 12vh, 160px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.ct-form-wrap { min-width: 0; }
/* HubSpot embed styling — let HubSpot do its thing but tighten typography */
.ct-form-wrap .hs-form,
.ct-form-wrap form { font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important; }
.ct-form-wrap label { color: var(--color-navy) !important; font-weight: 600 !important; font-size: 13px !important; letter-spacing: 0.04em !important; }
.ct-form-wrap input[type=text], .ct-form-wrap input[type=email], .ct-form-wrap input[type=tel],
.ct-form-wrap select, .ct-form-wrap textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(2, 30, 66, 0.20) !important;
  border-radius: 6px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  color: var(--color-navy) !important;
  background: #fff !important;
  transition: border-color 0.2s ease;
}
.ct-form-wrap input:focus, .ct-form-wrap select:focus, .ct-form-wrap textarea:focus {
  outline: none !important;
  border-color: var(--color-navy) !important;
}
.ct-form-wrap .hs-button, .ct-form-wrap input[type=submit] {
  background: var(--color-navy, #021E42) !important;
  color: #fff !important;
  padding: 14px 36px !important;
  border-radius: 6px !important;
  border: 0 !important;
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}
.ct-form-wrap .hs-button:hover, .ct-form-wrap input[type=submit]:hover { background: #0024BC !important; }

/* Right column — office details */
.ct-details {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 48px);
  padding-top: 8px;
}
.ct-detail-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  color: var(--color-navy, #021E42) !important;
  text-transform: none !important;
  margin: 0 0 12px !important;
}
.ct-detail-body {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-navy, #021E42);
  font-weight: 300;
  margin: 0 0 4px;
}
.ct-detail-body a {
  color: var(--color-navy, #021E42);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(2, 30, 66, 0.4);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.ct-detail-body a:hover { color: #0024BC; text-decoration-color: #0024BC; }

@media (max-width: 900px) {
  .contact-body { grid-template-columns: 1fr; gap: 40px; }
}


/* ═══════ TEAM GRID (Giovanni 6/03) ═══════ */
.au-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 96px) clamp(16px, 3vw, 40px);
}
.au-grid-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}
.au-grid-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #7d8a9c;
  overflow: hidden;
  cursor: pointer;
}
.au-grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  mix-blend-mode: luminosity;
  filter: saturate(0.35);
  transition: mix-blend-mode 2s ease-out, transform 2s ease-out, filter 2s ease-out;
}
.au-grid-cell:hover img {
  mix-blend-mode: normal;
  filter: saturate(1);
  transform: scale(1.04);
  transition: mix-blend-mode 2s ease-in, transform 2s ease-in, filter 2s ease-in;
}
.au-grid-cell:hover img {
  mix-blend-mode: normal;
  transform: scale(1.04);
}

@media (max-width: 1200px) {
  .au-grid-inner { grid-template-columns: repeat(10, 1fr); }
}
@media (max-width: 900px) {
  .au-grid-inner { grid-template-columns: repeat(8, 1fr); }
}
@media (max-width: 600px) {
  .au-grid-inner { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 400px) {
  .au-grid-inner { grid-template-columns: repeat(4, 1fr); }
}


/* ═══════ PRODUCTS KEN BURNS BG (Giovanni 6/04) ═══════ */
body.page-template-page-products { position: relative; }
body.page-template-page-products .lr-offer-hero,
body.page-template-page-products .lr-offer-grid {
  position: relative;
  z-index: 1;
}

.lr-kb-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
/* Cream wash gradient — softens the photos so text stays readable, fades to solid bg at the bottom */
.lr-kb-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(247, 246, 243, 0.55) 0%,
    rgba(247, 246, 243, 0.75) 50%,
    rgba(247, 246, 243, 0.95) 85%,
    rgba(247, 246, 243, 1)    100%);
  pointer-events: none;
}
.lr-kb-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: lr-kb 48s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes lr-kb {
  0%   { opacity: 0; transform: scale(1.00) translate(0%, 0%);   }
  3%   { opacity: 1;                                              }
  16%  { opacity: 1;                                              }
  18%  { opacity: 0; transform: scale(1.10) translate(-2%, -1.5%);}
  100% { opacity: 0; transform: scale(1.10) translate(-2%, -1.5%);}
}

/* Projects page — Ken Burns bg behind hero (Giovanni 6/04) */
body.page-template-page-projects { position: relative; }
body.page-template-page-projects .pj-hero,
body.page-template-page-projects .pj-filter-bar,
body.page-template-page-projects .pj-project {
  position: relative;
  z-index: 1;
}

/* ═══════ MOBILE HEADER (Giovanni 6/04) ═══════ */

/* Hamburger button — hidden on desktop, shown on mobile */
.lr-menu-toggle {
  display: none;
  position: absolute;
  right: clamp(16px, 4vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.lr-menu-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-navy, #021E42);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.2s ease,
              background 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X transformation when menu open */
body.lr-menu-open .lr-menu-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: #fff;
}
body.lr-menu-open .lr-menu-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.lr-menu-open .lr-menu-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: #fff;
}

/* ── Mobile breakpoint ── */
@media (max-width: 900px) {
  .lr-menu-toggle { display: flex; }

  /* Hide the desktop nav grid layout — switch to drawer */
  .header-inner {
    grid-template-columns: 1fr !important;       /* logo only on left, hamburger absolute right */
    height: 64px !important;
    padding: 0 clamp(16px, 4vw, 28px) !important;
  }
  .header-logo {
    grid-column: 1 !important;
    justify-self: start !important;
  }
  .header-logo img { height: 22px !important; }

  /* Site nav becomes a fullscreen drawer */
  .site-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: var(--color-navy, #021E42) !important;
    grid-column: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: clamp(16px, 3vh, 32px) !important;
    z-index: 150 !important;
    padding: clamp(80px, 14vh, 140px) clamp(24px, 6vw, 48px) clamp(40px, 8vh, 80px) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1),
                transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
                visibility 0s linear 0.4s;
    pointer-events: none;
  }
  body.lr-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1),
                transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
                visibility 0s linear 0s;
  }

  /* Drawer = flex column. Non-contact links centered with editorial stagger. */
  .site-nav {
    justify-content: flex-start !important;
    padding-top: clamp(96px, 14vh, 140px) !important;
    padding-bottom: clamp(120px, 18vh, 180px) !important;
    overflow-y: auto !important;
    gap: clamp(10px, 2vh, 24px) !important;
  }

  /* Each nav link — big italic ivyora-display */
  .site-nav a {
    position: static !important;
    display: block !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: clamp(32px, 9vw, 60px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
    padding: 0 !important;
    margin: 0 !important;
    text-transform: none !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    color: #fff !important;
    opacity: 1 !important;
    transform: none !important;
    transition: color 0.2s ease;
    align-self: center;
  }
  .site-nav a:hover { color: #fff !important; opacity: 1 !important; }

  /* Override the current page dark color from desktop styles so it stays readable */
  .site-nav a.active,
  .site-nav a.current-menu-item,
  .site-nav a.current_page_item {
    color: #fff !important;
    font-weight: 400 !important;
    background: transparent !important;
    opacity: 1 !important;
  }
  .site-nav a.active::after,
  .site-nav a.current-menu-item::after,
  .site-nav a.current_page_item::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 6px auto 0;
  }

  /* Editorial horizontal stagger — each row off-center for visual rhythm (7 items) */
  .site-nav a:nth-of-type(1) { align-self: flex-end;   margin-right: 8vw  !important; }  /* Home */
  .site-nav a:nth-of-type(2) { align-self: flex-start; margin-left: 6vw   !important; }  /* About Us */
  .site-nav a:nth-of-type(3) { align-self: flex-end;   margin-right: 14vw !important; }  /* Products */
  .site-nav a:nth-of-type(4) { align-self: flex-start; margin-left: 14vw  !important; }  /* Packaging */
  .site-nav a:nth-of-type(5) { align-self: flex-end;   margin-right: 4vw  !important; }  /* Services */
  .site-nav a:nth-of-type(6) { align-self: flex-start; margin-left: 10vw  !important; }  /* Projects */
  .site-nav a:nth-of-type(7) { align-self: flex-end;   margin-right: 8vw  !important; }  /* Careers */

  /* Contact CTA — pinned to the bottom of the drawer */
  .site-nav a.nav-contact {
    position: absolute !important;
    bottom: clamp(48px, 9vh, 96px) !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    align-self: auto !important;
    padding: 14px 36px !important;
    background: #fff !important;
    background-color: #fff !important;
    color: var(--color-navy, #021E42) !important;
    font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border-radius: 999px !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    text-align: center !important;
  }
  .site-nav a.nav-contact:hover { background: #0024BC !important; color: #fff !important; }
  

  /* Stagger reveal removed — links shown immediately with the drawer fade */
  /* Body scroll lock while drawer open */
  body.lr-menu-open {
    overflow: hidden;
    height: 100dvh;
  }

  /* Interior pages compensate the header offset for the smaller mobile header */
  body:not(.home) { padding-top: 64px !important; }

  /* Home page header — keep transparent on mobile too */
  body.home .header-inner { height: 64px !important; }
  body.home .header-logo img { height: 22px !important; }
}
/* === MOBILE HEADER END === */

/* === NAV HOME RULE START === */
/* Hide Home link on desktop (>900px); shown only in mobile drawer. */
@media (min-width: 901px) {
  .site-nav a.nav-home { display: none !important; }
}
/* === NAV HOME RULE END === */

/* === WWO + LOGO HOVER START === */

/* ── 1. Header logo: hover = subtle upward tilt on right side ── */
.header-logo {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left center;
  display: inline-block !important;
}
.header-logo:hover {
  transform: rotate(-3deg);
}

/* ── 2. Home WWO ticker: bigger client names ── */
.bk-wwo-ticker .bk-ticker-item {
  font-size: clamp(20px, 1.8vw, 30px) !important;
  letter-spacing: 0.14em !important;
}

/* ── 3. WWO card image: container is positioned so the overlay can absolute-fill ── */
.bk-wwo-card-img {
  position: relative;
  overflow: hidden;
}
.bk-wwo-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-navy, #021E42);
  color: #fff;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.35s;
  pointer-events: none;
}
.bk-wwo-card:hover .bk-wwo-card-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
}
.bk-wwo-overlay-title {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif !important;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-transform: none;
}
.bk-wwo-overlay-body {
  font-family: var(--font-primary), 'trade-gothic-next', Arial, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: clamp(20px, 3vh, 32px) 0 0;
  max-width: 38ch;
}
.bk-wwo-overlay-cta {
  font-family: 'ivyora-display', 'Baskerville', Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 18px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 9px 24px;
  align-self: flex-start;
  letter-spacing: 0;
  margin-top: auto;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.bk-wwo-card:hover .bk-wwo-overlay-cta {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
/* === WWO + LOGO HOVER END === */

/* === WWO TICKER NICONICO START === */
.bk-wwo-ticker.bk-wwo-ticker-curve {
  padding: 34px 0;             /* compact band — fits wider Y range */
  overflow: visible;
  /* Soft edge fade so names dissolve into bg at left/right */
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to right,
    transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.bk-wwo-ticker.bk-wwo-ticker-curve .bk-ticker-track {
  overflow: visible;
  gap: clamp(28px, 3vw, 56px) !important;   /* less crowded — wider spacing */
}
.bk-wwo-ticker.bk-wwo-ticker-curve .bk-ticker-item {
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* === WWO TICKER NICONICO END === */

/* === MOBILE DRAWER OVERRIDE (forces correct pill + visible white links) === */
@media (max-width: 900px) {
  body.lr-menu-open .site-nav a,
  body.lr-menu-open .site-nav a.active,
  body.lr-menu-open .site-nav a.current-menu-item,
  body.lr-menu-open .site-nav a.current_page_item {
    color: #fff !important;
    opacity: 1 !important;
    background: transparent !important;
  }
  body.lr-menu-open .site-nav a.nav-contact,
  body.lr-menu-open .site-nav a.nav-contact.active,
  body.lr-menu-open .site-nav a.nav-contact.current-menu-item,
  body.lr-menu-open .site-nav a.nav-contact.current_page_item {
    position: absolute !important;
    bottom: clamp(48px, 9vh, 96px) !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 14px 36px !important;
    background: #fff !important;
    background-color: #fff !important;
    color: var(--color-navy, #021E42) !important;
    border-radius: 999px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    text-align: center !important;
    line-height: 1 !important;
    font-family: var(--font-primary), trade-gothic-next, Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    align-self: auto !important;
  }
  body.lr-menu-open .site-nav a.nav-contact:hover {
    background: #0024BC !important;
    color: #fff !important;
  }
}
/* === MOBILE DRAWER OVERRIDE END === */

/* === MOBILE WHAT WE OFFER (Giovanni 6/08) — horizontal swipe carousel === */
/* Scroll-jack keeps each section pinned to 100dvh. To fit the 3 offer cards
   inside that height on mobile, we turn the grid into a horizontal swipe row.
   The ticker drops below at the bottom of the section. */
@media (max-width: 900px) {
  /* Push title clear of the fixed header */
  #p2 .bk-inner {
    padding-top: clamp(56px, 9vh, 88px) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  #p2 .bk-wwo-title {
    font-size: clamp(30px, 8vw, 48px) !important;
    margin-bottom: clamp(20px, 3vh, 32px) !important;
    flex-shrink: 0 !important;
  }
  /* Cards — horizontal swipe row with snap */
  #p2 .bk-wwo-grid {
    grid-template-columns: none !important;
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 4px clamp(24px, 5vw, 80px) 16px !important;
    margin: 0 calc(-1 * clamp(24px, 5vw, 80px)) !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    scrollbar-width: none !important;
  }
  #p2 .bk-wwo-grid::-webkit-scrollbar { display: none !important; }
  #p2 .bk-wwo-card {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    scroll-snap-align: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  #p2 .bk-wwo-card-title {
    font-size: clamp(22px, 6vw, 32px) !important;
    margin-bottom: 12px !important;
    flex-shrink: 0 !important;
  }
  #p2 .bk-wwo-card-img {
    aspect-ratio: 3 / 4 !important;
    border-radius: 12px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
  }
  /* Ticker — pin at the bottom of the section content, flat baseline */
  #p2 .bk-wwo-ticker.bk-wwo-ticker-curve {
    position: static !important;
    padding: 18px 0 4px !important;
    margin-top: clamp(20px, 3vh, 40px) !important;
    flex-shrink: 0 !important;
  }
  #p2 .bk-wwo-ticker.bk-wwo-ticker-curve .bk-ticker-track {
    gap: 28px !important;
  }
  #p2 .bk-wwo-ticker.bk-wwo-ticker-curve .bk-ticker-item {
    font-size: clamp(14px, 3.8vw, 18px) !important;
  }
  #p2 .bk-wwo-ticker.bk-wwo-ticker-curve.bk-wwo-ticker-curve .bk-ticker-item {
    transform: translateY(0) !important;
  }
}
/* === MOBILE WHAT WE OFFER END === */


/* === MOBILE DRAWER MAX-SPECIFICITY (v152) — keeps editorial stagger === */
@media (max-width: 900px) {
  /* Non-contact links: white, fully opaque, big italic, but keep their nth-of-type stagger margins */
  html body.lr-menu-open .site-nav a:not(.nav-contact),
  html body.lr-menu-open .site-nav a:not(.nav-contact).active,
  html body.lr-menu-open .site-nav a:not(.nav-contact).current-menu-item,
  html body.lr-menu-open .site-nav a:not(.nav-contact).nav-home {
    color: #ffffff !important;
    opacity: 1 !important;
    background: transparent !important;
    font-family: ivyora-display, Baskerville, Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: clamp(32px, 9vw, 60px) !important;
    line-height: 1.1 !important;
    text-transform: none !important;
    text-decoration: none !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
    /* margins + align-self come from the existing .site-nav a:nth-of-type(N) stagger rules */
  }
  /* Contact pill — pin to bottom center regardless of .active state */
  html body.lr-menu-open .site-nav a.nav-contact,
  html body.lr-menu-open .site-nav a.nav-contact.active,
  html body.lr-menu-open .site-nav a.nav-contact.current-menu-item {
    position: absolute !important;
    bottom: clamp(48px, 9vh, 96px) !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    align-self: auto !important;
    padding: 14px 36px !important;
    background: #ffffff !important;
    color: var(--color-navy, #021E42) !important;
    font-family: var(--font-primary), trade-gothic-next, Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 999px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    display: inline-block !important;
    text-align: center !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
  }
}
/* === MOBILE DRAWER MAX-SPECIFICITY END === */
