:root {
  --cream: #F5F3EE;
  --ink: #0D0B09;
  --navy: #1B3557;
  --navy-light: #2a4a72;
  --muted: #3a3530;
  --hint: #6b6560;
  --border: #0D0B09;
  --serif: 'Fraunces', serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor.expand {
  transform: translate(-50%, -50%) scale(4);
  background: rgba(27,53,87,0.15);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: var(--cream);
  border-bottom: 1.5px solid var(--border);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 0.8rem 2.5rem; }

.nav-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.mark-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.mark-icon svg { width: 100%; height: 100%; }

.nav-wordmark {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--cream) !important;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--navy-light);
  color: var(--cream) !important;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1.5px solid var(--border);
  z-index: 499;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13,11,9,0.12);
}
.mobile-menu a.mobile-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.9rem 1.5rem;
  border: none;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── HERO ── */
.hero {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 60px);
  border-bottom: 1.5px solid var(--border);
}
.hero-left {
  padding: 4rem 3rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1.5px solid var(--border);
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
}
.hero-sub {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  border-top: 1.5px solid var(--border);
  padding-top: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-sub strong { font-weight: 500; color: var(--ink); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

.hero-tag {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  background: var(--cream);
  padding: 0.55rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--cream);
  opacity: 0.6;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.4); opacity: 0.2; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker {
  background: var(--navy);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1.5px solid var(--border);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
.ticker-item span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.85);
}
.ticker-sep {
  width: 3px;
  height: 3px;
  background: rgba(245,243,238,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATEMENT ── */
.statement {
  padding: 5.5rem 2.5rem;
  border-bottom: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: end;
}
.statement-big {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
}
.statement-big em { font-style: italic; color: var(--navy); }
.statement-aside {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  border-left: 2px solid var(--navy);
  padding-left: 1.75rem;
}

/* ── SECTION HEADER ── */
.section-header {
  padding: 1.5rem 2.5rem;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── SERVICES ── */
.services { border-bottom: 1.5px solid var(--border); }

.svc-grid {
  display: flex;
  flex-direction: column;
}
.svc-row {
  display: grid;
  border-top: 1.5px solid var(--border);
}
.svc-row-3 { grid-template-columns: repeat(3, 1fr); }
.svc-row-2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  border-right: 1.5px solid var(--border);
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: rgba(27,53,87,0.03); }

.svc-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1.5px solid var(--border);
  transition: transform 0.5s ease;
  filter: grayscale(15%);
}
.svc-card:hover .svc-card-img { transform: scale(1.04); }

.svc-card-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.svc-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.svc-card-desc {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.svc-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid rgba(13,11,9,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-list li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
}


/* ── LOCATIONS ── */
.locations {
  padding: 3rem 2.5rem;
  border-bottom: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.location-pill {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(13,11,9,0.25);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.location-pill:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(27,53,87,0.05);
}
.location-pill.featured {
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 500;
}

/* ── FULL BLEED ── */
.fullbleed {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border);
}
.fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
  transition: transform 0.8s ease;
}
.fullbleed:hover img { transform: scale(1.03); }
.fullbleed-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
}
.fullbleed-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.45);
  margin-bottom: 1.75rem;
}
.fullbleed-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
  max-width: 900px;
}
.fullbleed-quote em {
  font-style: normal;
  color: #7EB8E8;
}
.fullbleed-attr {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,243,238,0.4);
  text-transform: uppercase;
}

/* ── WHO WE HELP ── */
.who { border-bottom: 1.5px solid var(--border); }
.who-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1.5px solid var(--border);
}
.who-headline {
  padding: 3.5rem 2.5rem;
  border-right: 1.5px solid var(--border);
}
.who-headline h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-top: 1rem;
}
.who-headline h2 em { font-style: italic; color: var(--navy); }
.who-intro {
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
}
.who-intro p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.who-item {
  padding: 2.25rem 2.5rem;
  border-right: 1.5px solid var(--border);
  border-top: 1.5px solid var(--border);
  transition: background 0.3s;
}
.who-item:nth-child(3n) { border-right: none; }
.who-item:hover { background: rgba(27,53,87,0.04); }
.who-item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.who-item-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonials { border-bottom: 1.5px solid var(--border); }
.testi-header {
  padding: 1.5rem 2.5rem;
  border-bottom: 1.5px solid var(--border);
}
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; }

.testi-featured {
  border-right: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.testi-featured-img {
  overflow: hidden;
  border-right: 1.5px solid var(--border);
}
.testi-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.5s;
}
.testi-featured-img:hover img { transform: scale(1.04); }
.testi-featured-content {
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testi-mark {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 0.8;
  margin-bottom: 1rem;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testi-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.testi-biz {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--navy);
  margin-top: 0.2rem;
}
.testi-stack { display: flex; flex-direction: column; }
.testi-mini {
  padding: 2rem 2.5rem;
  border-bottom: 1.5px solid var(--border);
  transition: background 0.3s;
}
.testi-mini:last-child { border-bottom: none; }
.testi-mini:hover { background: rgba(27,53,87,0.04); }
.testi-mini-quote {
  font-family: var(--serif);
  font-size: 0.97rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--muted);
}
.testi-mini-name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testi-mini-biz {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--navy);
  margin-top: 0.15rem;
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1.5px solid var(--border);
}
.stat {
  padding: 3.5rem 2.5rem;
  border-right: 1.5px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
}
.stat-label {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.65;
  border-top: 1.5px solid var(--border);
  padding-top: 1rem;
}

/* ── CTA + FORM ── */
.cta-section {
  border-bottom: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-left {
  padding: 5rem 2.5rem;
  border-right: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
}
.cta-headline em { font-style: italic; color: var(--navy); }
.cta-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 2rem;
  max-width: 420px;
}
.cta-assurances {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cta-assurance {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
}
.cta-assurance-dot {
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}
.cta-right { padding: 5rem 2.5rem; }
.form-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: none; height: 80px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%230D0B09'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 1.1rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-light); }
.form-success {
  display: none;
  padding: 2rem;
  border: 1.5px solid var(--navy);
  text-align: center;
}
.form-success p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
}

/* ── DOWNLOAD SECTION ── */
.download-section {
  border-bottom: 1.5px solid var(--border);
  background: var(--navy);
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.download-left {
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid rgba(245,243,238,0.12);
}
.download-left .section-label { color: #7EB8E8; }
.download-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
}
.download-headline em { font-style: italic; color: #7EB8E8; }
.download-sub {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,243,238,0.7);
}
.download-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.download-bullets li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,243,238,0.75);
  padding-left: 1.1rem;
  position: relative;
}
.download-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: #7EB8E8;
  border-radius: 50%;
}
.download-right {
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-card {
  background: var(--cream);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}
.download-card-preview {
  background: var(--ink);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1.5px solid var(--border);
}
.pdf-mock-header {
  height: 18px;
  background: var(--navy);
  margin-bottom: 0.5rem;
}
.pdf-mock-line {
  height: 6px;
  background: rgba(245,243,238,0.15);
  border-radius: 2px;
}
.pdf-mock-line.w80 { width: 80%; }
.pdf-mock-line.w60 { width: 60%; }
.pdf-mock-line.w90 { width: 90%; }
.pdf-mock-line.w50 { width: 50%; }
.pdf-mock-line.w70 { width: 70%; }
.pdf-mock-line.w85 { width: 85%; }
.pdf-mock-line.w65 { width: 65%; }
.pdf-mock-check {
  width: 10px;
  height: 10px;
  border: 1px solid #7EB8E8;
  margin-top: 0.25rem;
  border-radius: 1px;
}
.pdf-mock-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.4);
  margin-top: 0.5rem;
}
.download-form-wrap { padding: 2rem; }
.download-form-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.download-success {
  display: none;
  padding: 1rem 0;
  text-align: center;
}
.download-success-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.download-success-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.download-direct {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
}

/* ── FORM CHECKBOX ── */
.form-check-group { margin-bottom: 0; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}
.check-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  border: 1.5px solid var(--border);
  background: transparent;
  appearance: none;
  cursor: pointer;
  margin-top: 0.1rem;
  border-radius: 0;
  transition: background 0.2s;
}
.check-label input[type="checkbox"]:checked {
  background: var(--navy);
  border-color: var(--navy);
}
.check-label span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

/* ── LEGAL ACCORDIONS ── */
.legal-accordions { border-bottom: 1.5px solid var(--border); }
.accordion-item { border-bottom: 1.5px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: rgba(27,53,87,0.03); }
.accordion-trigger[aria-expanded="true"] { background: rgba(27,53,87,0.04); }
.accordion-label {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.accordion-date {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--hint);
  letter-spacing: 0.06em;
}
.accordion-icon {
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  display: none;
  border-top: 1.5px solid var(--border);
}
.accordion-body.open { display: block; }

/* ── LEGAL CONTENT (shared) ── */
.legal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.legal-col {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legal-col:first-child { border-right: 1.5px solid var(--border); }
.legal-heading {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.1rem;
}
.legal-heading:first-child { margin-top: 0; }
.legal-col p {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.legal-col a { color: var(--navy); text-decoration: none; }
.legal-col a:hover { text-decoration: underline; }

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,11,9,0.6);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.popup {
  background: var(--cream);
  max-width: 860px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.visible .popup { transform: translateY(0); }
.popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0.35rem;
  z-index: 1;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--ink); }
.popup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.popup-left {
  background: var(--navy);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.popup-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.5);
}
.popup-headline {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
}
.popup-headline em { font-style: italic; color: #7EB8E8; }
.popup-sub {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,243,238,0.7);
}
.popup-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.popup-points li {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,243,238,0.7);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.popup-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: #7EB8E8;
  border-radius: 50%;
}
.popup-right {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-form-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.popup-disclaimer {
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--hint);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.popup-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.popup-success-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.popup-success-sub {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}



/* ── FOOTER ── */
.footer-full {
  background: var(--ink);
  color: var(--cream);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(245,243,238,0.12);
}
.footer-brand {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(245,243,238,0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-strapline {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,243,238,0.55);
}
.footer-email {
  font-size: 0.82rem;
  font-weight: 400;
  color: #7EB8E8;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-email:hover { text-decoration: underline; }

.footer-nav-col {
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(245,243,238,0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav-col:last-child { border-right: none; }
.footer-nav-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.4);
  margin-bottom: 0.25rem;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav li,
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,243,238,0.7);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-legal-name {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(245,243,238,0.5);
  letter-spacing: 0.02em;
}
.footer-legal-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245,243,238,0.35);
}
.footer-legal-copy a {
  color: rgba(245,243,238,0.5);
  text-decoration: none;
}
.footer-legal-copy a:hover { color: var(--cream); }
.footer-placeholder {
  color: #E24B4A;
  font-style: italic;
}
.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245,243,238,0.35);
  white-space: nowrap;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1.5px solid rgba(245,243,238,0.15);
  z-index: 600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 2.5rem;
}
.cookie-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,243,238,0.7);
  line-height: 1.6;
}
.cookie-text a {
  color: #7EB8E8;
  text-decoration: none;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--navy-light); }
.cookie-decline {
  background: transparent;
  color: rgba(245,243,238,0.5);
  border: 1px solid rgba(245,243,238,0.2);
  padding: 0.55rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-decline:hover {
  color: var(--cream);
  border-color: rgba(245,243,238,0.4);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }

  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; margin-top: 57px; }
  .hero-left { padding: 2.5rem 1.5rem; border-right: none; border-bottom: 1.5px solid var(--border); gap: 2rem; }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.5rem); line-height: 1.0; }
  .hero-right { height: 55vw; min-height: 260px; }
  .hero-scroll-hint { display: none; }

  .statement { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .statement-big { font-size: clamp(1.7rem, 5.5vw, 2.2rem); }

  .svc-row { grid-template-columns: 1fr !important; }
  .svc-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }
  .svc-card-img { height: 48vw; }

  .locations { grid-template-columns: 1fr; gap: 1.25rem; padding: 2rem 1.5rem; }

  .fullbleed { height: 60vw; min-height: 320px; }
  .fullbleed-quote { font-size: clamp(1.4rem, 5vw, 2rem); }
  .fullbleed-content { padding: 0 1.5rem; }

  .who-header { grid-template-columns: 1fr; }
  .who-headline { padding: 2.5rem 1.5rem; border-right: none; border-bottom: 1.5px solid var(--border); }
  .who-intro { padding: 2rem 1.5rem; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .who-item { padding: 1.5rem; }
  .who-item:nth-child(3n) { border-right: 1.5px solid var(--border); }
  .who-item:nth-child(2n) { border-right: none; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-featured { grid-template-columns: 1fr; border-right: none; border-bottom: 1.5px solid var(--border); }
  .testi-featured-img { min-height: 55vw; }
  .testi-featured-content { padding: 2rem 1.5rem; }
  .testi-mini { padding: 1.5rem; }

  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1.5px solid var(--border); padding: 2.5rem 1.5rem; }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: clamp(3.5rem, 12vw, 5rem); }

  .cta-section { grid-template-columns: 1fr; }
  .cta-left { padding: 3rem 1.5rem; border-right: none; border-bottom: 1.5px solid var(--border); gap: 2rem; }
  .cta-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .cta-right { padding: 2.5rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }

  .legal-body { grid-template-columns: 1fr; }
  .legal-col { padding: 2rem 1.5rem; border-right: none !important; }
  .legal-col:first-child { border-bottom: 1.5px solid var(--border); }
  .accordion-trigger { padding: 1.25rem 1.5rem; }
  .accordion-label { flex-direction: column; align-items: flex-start; gap: 0.25rem; }

  .download-inner { grid-template-columns: 1fr; }
  .download-left { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(245,243,238,0.12); }
  .download-right { padding: 2rem 1.5rem; }

  .popup-inner { grid-template-columns: 1fr; }
  .popup-left { padding: 2.5rem 1.5rem; }
  .popup-right { padding: 2rem 1.5rem; }
  .popup-headline { font-size: 1.8rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; border-right: none; border-bottom: 1px solid rgba(245,243,238,0.12); padding: 2.5rem 1.5rem; }
  .footer-nav-col { padding: 2rem 1.5rem; }
  .footer-nav-col:last-child { border-right: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .footer-copy { white-space: normal; }

  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

@media (max-width: 540px) {
  .hero-headline { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .who-grid { grid-template-columns: 1fr; }
  .who-item { border-right: none !important; }
  .fullbleed { height: 75vw; min-height: 280px; }
  .section-header { padding: 1.25rem 1.5rem; }
  nav { padding: 0.9rem 1.25rem; }
  .mobile-menu { top: 53px; }
}
