/* ---------- Tokens ---------- */
:root {
  --navy: #1c263d;
  --navy-soft: #1c263d29;
  --navy-deep: #06111a;
  --navy-deep-overlay: #062232ab;
  --cream: #f2f3f1;
  --cream-2: #f7f4ef;
  --gold: #c79a5f;
  --gold-2: #c79a7f;
  --gold-3: #caa676;

  --frame-pad: 8px;
  --content-pad: clamp(16px, 5vw, 120px);

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --font-display: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

/* Lenis smooth scroll overrides */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page {
  background: #fff;
  color: var(--navy);
}

.frame {
  padding: var(--frame-pad);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

@media (min-width: 1024px) {
  .container {
    width: 82%;
    max-width: 1440px;
    padding: 0;
  }
}

/* ---------- Typography helpers ---------- */
.display,
.display-2,
.display-3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin: 0;
}

.display {
  font-size: 22px;
  line-height: 1.2;
  color: var(--cream-2);
  font-weight: 500;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .display {
    font-size: 28px;
    line-height: 1.18;
  }
}

@media (min-width: 640px) {
  .display {
    font-size: 38px;
  }
}

@media (min-width: 1024px) {
  .display {
    font-size: 64px;
    line-height: 1.14;
    margin-bottom: 36px;
  }
}

.display-2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
}

@media (min-width: 640px) {
  .display-2 {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .display-2 {
    font-size: 44px;
    line-height: 1.35;
  }
}

.display-3 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 620px;
}

@media (min-width: 1024px) {
  .display-3 {
    font-size: 34px;
    line-height: 1.45;
  }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.eyebrow-dark {
  color: var(--gold);
}

.eyebrow-light {
  color: var(--cream);
  opacity: 0.85;
}

.lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  max-width: 520px;
  margin: 20px 0 0;
}

.lead-on-dark {
  color: #f2f3f1cc;
}

.nowrap {
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn {
    font-size: 15px;
    padding: 15px 26px;
  }
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background: var(--gold);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--gold-3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.3);
  padding: 10px 18px;
  font-size: 13px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid #ffffff26;
  background: var(--navy-deep);
  color: var(--cream);
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero {
    min-height: 660px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh - (var(--frame-pad) * 2));
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.9);
  animation: hero-bg-zoom-in 4s cubic-bezier(0.22, 1, 0.36, 1) both,
    hero-bg-drift 22s ease-in-out 4s infinite alternate;
  will-change: transform;
}

@keyframes hero-bg-zoom-in {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes hero-bg-drift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 34, 50, 0.55);
}

@media (min-width: 640px) {
  .hero-overlay {
    background: rgba(6, 34, 50, 0.3);
  }
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 127, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

/* ---------- Nav ---------- */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--content-pad);
  z-index: 3;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 17, 26, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(199, 154, 95, 0.12);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: none;
  pointer-events: none;
}

@media (min-width: 900px) {
  .sticky-nav {
    display: block;
  }
}

.sticky-nav.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-nav .nav {
  padding-top: 14px;
  padding-bottom: 14px;
}

.sticky-nav .nav-brand-logo {
  height: 30px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.nav-brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .nav-brand-logo {
    height: 36px;
  }
}

.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
  color: var(--cream);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--cream);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

.mobile-menu[hidden] {
  display: flex;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% -10%, rgba(199, 154, 95, 0.12), transparent 40%),
    radial-gradient(circle at 92% 110%, rgba(199, 154, 95, 0.07), transparent 40%);
  pointer-events: none;
}

.mobile-menu-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 40px);
}

.mobile-menu-logo {
  height: 32px;
  width: auto;
  display: block;
}

.mobile-menu-close {
  background: transparent;
  border: 1px solid rgba(243, 239, 230, 0.22);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-menu-close:hover {
  border-color: var(--gold);
  background: rgba(199, 154, 95, 0.08);
  color: var(--gold);
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-list {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px clamp(20px, 6vw, 40px);
  counter-reset: menu-counter;
}

.mobile-menu-list a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.08);
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s ease;
}

.mobile-menu-list a:last-child {
  border-bottom: 0;
}

.mobile-menu-list a::before {
  counter-increment: menu-counter;
  content: counter(menu-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.06em;
  font-weight: 400;
  flex-shrink: 0;
  width: 26px;
  align-self: center;
}

.mobile-menu-list a:active,
.mobile-menu-list a:hover {
  color: var(--gold);
}

.mobile-menu.is-open .mobile-menu-list a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-list a:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu-list a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu-list a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu-list a:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu-list a:nth-child(5) { transition-delay: 0.36s; }

.mobile-menu-foot {
  position: relative;
  z-index: 1;
  padding: 22px clamp(20px, 6vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(243, 239, 230, 0.08);
}

.mobile-menu-foot a {
  color: rgba(243, 239, 230, 0.92);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.mobile-menu-foot a:hover {
  color: var(--gold);
}

.mobile-menu-foot span {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.4);
  font-weight: 500;
}

/* ---------- Hero content ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  align-content: end;
  gap: 24px;
  padding: 0 var(--content-pad) 36px;
}

@media (min-width: 640px) {
  .hero-content {
    gap: 32px;
    padding-bottom: 56px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(28px, 4vw, 72px);
    padding-bottom: 100px;
    align-items: end;
  }
}

.hero-body {
  max-width: 560px;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 640px) {
  .hero-body {
    font-size: 15px;
    line-height: 1.7;
  }
}

.hero-body-desktop {
  display: none;
}

@media (min-width: 640px) {
  .hero-body-mobile {
    display: none;
  }
  .hero-body-desktop {
    display: block;
  }
}

.eyebrow {
  font-size: 11px;
}

@media (min-width: 640px) {
  .eyebrow {
    font-size: 12px;
  }
}

.hero-card-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .hero-card-col {
    align-items: flex-end;
  }
}

.hero-accent {
  display: none;
  margin-bottom: 36px;
  width: 100%;
  border-left: 1px solid rgba(199, 154, 95, 0.55);
  padding: 4px 0 4px 22px;
}

@media (min-width: 1024px) {
  .hero-accent {
    display: block;
    width: 86%;
  }
}

.hero-accent-kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 14px;
}

.hero-accent-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--cream);
  margin: 0;
  opacity: 0.92;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    width: 86%;
    justify-content: flex-end;
  }

  .hero-ctas .btn {
    flex: 1;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
}

@media (min-width: 640px) {
  .section {
    padding: 96px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 140px 0;
  }
}

.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.grid-2 {
  display: grid;
  gap: 44px;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-gap-lg {
    gap: 56px;
  }
}

/* ---------- Foundation ---------- */
.section-foundation {
  background: #fff;
}

@media (min-width: 1024px) {
  .foundation-intro {
    position: sticky;
    top: 32px;
    align-self: start;
  }
}

.feature-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.feature-card {
  min-height: 200px;
  padding: 24px;
  border-top: 1px solid var(--navy-soft);
  color: var(--navy);
  transition: background-color 0.25s ease, color 0.25s ease,
    border-radius 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  border-top-color: transparent;
}

.feature-card-inverse {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid #000;
}

.feature-card-inverse:hover {
  color: var(--gold);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-card-inverse .feature-icon {
  color: currentColor;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 10px;
}

@media (min-width: 1024px) {
  .feature-title {
    font-size: 22px;
  }
}

.feature-body {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 30ch;
  margin: 0;
  opacity: 0.88;
}

.headline-split {
  margin-top: 96px;
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 1200px) {
  .headline-split {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 140px;
    margin-top: 150px;
  }

  .headline-split .display-3 {
    justify-self: end;
  }
}

/* ---------- Services ---------- */
.section-services {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("assets/services-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40px;
}

@media (min-width: 1024px) {
  .section-services {
    padding-top: 56px;
  }
}

.services-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.service-item {
  min-height: 240px;
  padding: 28px 26px;
  border-top: 1px solid var(--navy-soft);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-radius 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
  position: relative;
}

.service-item:hover {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  border-top-color: transparent;
}

.service-item-num {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 20px;
}

.service-item-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

@media (min-width: 1024px) {
  .service-item-title {
    font-size: 24px;
  }
}

.service-item-body {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.82;
  margin: 0;
  flex: 1;
  max-width: 38ch;
}

.service-item-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 20px;
  opacity: 0.6;
  transition: opacity 0.25s ease, gap 0.25s ease;
}

.service-item:hover .service-item-arrow {
  opacity: 1;
  gap: 14px;
}

.service-item-arrow svg {
  width: 22px;
  height: 10px;
}

/* ---------- Expertise ---------- */
.section-expertise {
  background-color: var(--navy-deep);
  background-image: url("assets/expertise-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.section-expertise::before {
  content: none;
}

.section-expertise .container {
  position: relative;
  z-index: 1;
}

.expertise-head {
  margin-bottom: clamp(36px, 3.6vw, 56px);
}

.expertise-head .display-2 {
  color: var(--cream);
  max-width: none;
  margin-bottom: 18px;
}

.expertise-head .lead {
  max-width: 640px;
  font-size: 15px;
  opacity: 0.78;
}

.eyebrow-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow-divider {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.eyebrow-divider::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.expertise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.expertise-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(199, 154, 95, 0.4);
}

.expertise-list li {
  display: grid;
  grid-template-columns: clamp(40px, 4vw, 64px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(14px, 1.6vw, 22px) 0;
  color: var(--cream);
  position: relative;
}

.expertise-list li::before,
.expertise-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  pointer-events: none;
  transition: background 0.4s ease;
}

.expertise-list li::before {
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(199, 154, 95, 0.4);
}

.expertise-list li::after {
  right: -3px;
  bottom: -3px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.expertise-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--gold);
  letter-spacing: 0.06em;
  text-align: left;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.expertise-list li:hover .expertise-num {
  opacity: 1;
}

.expertise-label {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
}

.expertise-list li:hover .expertise-label {
  color: var(--gold);
}

.expertise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.expertise-list li:hover .expertise-icon {
  opacity: 1;
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
}

.expertise-meta {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.62;
  font-weight: 500;
  display: none;
  white-space: nowrap;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.expertise-list li:hover .expertise-meta {
  color: var(--gold);
  opacity: 1;
}

@media (min-width: 1024px) {
  .expertise-list li {
    grid-template-columns: clamp(40px, 4vw, 64px) minmax(0, 1fr) 24px 210px;
  }

  .expertise-meta {
    display: inline-block;
    text-align: left;
  }
}

/* ---------- CTA banner ---------- */
.cta-banner-wrap {
  padding: clamp(40px, 5vw, 60px) 0;
  background: #fff;
}

.cta-banner {
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--cream);
  padding: 48px 32px;
  display: grid;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(199, 154, 95, 0.18),
    transparent 40%
  );
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .cta-banner {
    grid-template-columns: 1.8fr 1fr;
    padding: 40px 36px;
    column-gap: 24px;
  }
}

.cta-title {
  color: var(--cream);
  font-size: 22px;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 24px;
    line-height: 1.25;
  }
}

@media (min-width: 1200px) {
  .cta-title {
    font-size: 25px;
  }
}

@media (min-width: 1440px) {
  .cta-title {
    font-size: 28px;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .cta-actions {
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }

  .cta-banner .btn {
    padding: 12px 18px;
    font-size: 13.5px;
    white-space: nowrap;
  }
}

/* ---------- FAQ ---------- */
.section-faq {
  background: #fff;
}

.faq-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.faq-head .display-2 {
  margin-top: 18px;
}

.faq-list {
  border-top: 1px solid rgba(28, 38, 61, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(28, 38, 61, 0.14);
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: clamp(20px, 2.4vw, 28px) 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  transition: color 0.3s ease;
}

.faq-q {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.4px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.4px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-item.is-open .faq-summary .faq-q {
  color: var(--gold);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  max-width: 76ch;
  overflow: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-a-inner p {
  margin: 0;
  padding: 0 0 clamp(20px, 2.2vw, 28px);
  font-size: 15px;
  line-height: 1.75;
  color: var(--navy);
  opacity: 0.78;
  font-weight: 300;
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon,
  .faq-icon::before,
  .faq-icon::after {
    transition: none;
  }
}

/* ---------- Contact ---------- */
.section-contact {
  background: #f7f6f3;
  color: var(--navy);
  border-top: 1px solid var(--navy-soft);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(180px, 20vw, 300px);
  }
}

.contact-intro .eyebrow {
  color: var(--gold);
}

.contact-intro h2 {
  color: var(--navy);
}

.contact-intro .lead {
  color: var(--navy);
  opacity: 0.75;
  font-weight: 300;
}

.contact-details {
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
  list-style: none;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 95, 0.45);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-row:hover .contact-icon {
  background: rgba(199, 154, 95, 0.08);
  border-color: var(--gold);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-row-content {
  padding-top: 3px;
}

.contact-row-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 6px;
}

.contact-row-value {
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
}

.contact-row-value a {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-row-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-details-wrap {
  position: relative;
}

.contact-map {
  display: none;
}

@media (min-width: 960px) {
  .contact-map {
    display: block;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: clamp(20px, 2.5vw, 44px);
    width: clamp(90px, 9vw, 130px);
    pointer-events: none;
    z-index: 1;
  }
}

.contact-map svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.contact-map-paths {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0.5;
}

.contact-map-marker {
  fill: var(--gold);
}

.contact-map-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  opacity: 0.5;
}

.contact-map-ring-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  opacity: 0;
  transform-origin: 495px 680px;
  animation: mapPulse 2.8s ease-out infinite;
}

@keyframes mapPulse {
  0% {
    opacity: 0.55;
    r: 14;
  }
  100% {
    opacity: 0;
    r: 60;
  }
}

.contact-map-label {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--navy);
}

/* ---- Form ---- */
.contact-form {
  background: transparent;
  border: 1px solid rgba(28, 38, 61, 0.18);
  border-radius: 14px;
  padding: 24px 22px;
  display: grid;
  gap: 24px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}

@media (min-width: 960px) {
  .contact-form {
    border: 0;
    border-radius: 0;
    padding: 0;
    gap: 28px;
  }
  .contact-form-title {
    display: none;
  }
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28, 38, 61, 0.18);
  border-radius: 0;
  padding: 10px 0;
  width: 100%;
  transition: border-color 0.25s ease;
  font-weight: 400;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      var(--gold) 50%
    ),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.field select option {
  background: #fff;
  color: var(--navy);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(28, 38, 61, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: none;
}

.contact-form .btn-block {
  margin-top: 12px;
  justify-self: flex-start;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  padding: 16px 36px;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  width: auto;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-form .btn-block:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.form-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--navy);
  opacity: 0.6;
  margin: 4px 0 0;
  font-weight: 300;
}

.form-note a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(28, 38, 61, 0.4);
  transition: color 0.2s ease;
}

.form-note a:hover {
  color: var(--gold);
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  margin-top: 4px;
}

.form-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-consent-box {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(28, 38, 61, 0.35);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  margin-top: 1px;
  flex-shrink: 0;
}

.form-consent-box svg {
  width: 12px;
  height: 12px;
}

.form-consent:hover .form-consent-box {
  border-color: var(--navy);
}

.form-consent input:checked + .form-consent-box {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.form-consent input:focus-visible + .form-consent-box {
  box-shadow: 0 0 0 3px rgba(199, 154, 95, 0.35);
}

.form-consent-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--navy);
  opacity: 0.72;
  font-weight: 300;
}

.form-consent-text a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(28, 38, 61, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.form-consent-text a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.cf-turnstile {
  margin: 0;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -8px;
}

.form-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  min-height: 0;
}

.form-status:empty {
  display: none;
}

.form-status[data-kind="error"] {
  color: #b85a4a;
}

.form-status[data-kind="success"] {
  color: var(--gold);
}

.form-submit-row .btn-block {
  margin-top: 0;
}

.contact-form-wrap {
  position: relative;
}

.contact-form-wrap .contact-form {
  transition: opacity 0.3s ease;
}

.contact-form-wrap.is-sent .contact-form {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.contact-form-success {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 36px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s,
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s;
}

.contact-form-success[hidden] {
  display: none;
}

.contact-form-wrap.is-sent .contact-form-success {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(199, 154, 95, 0.06);
}

.contact-form-success-icon svg {
  width: 28px;
  height: 28px;
}

.contact-form-success-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

.contact-form-success-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.75;
  margin: 0;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 28px;
  overflow: hidden;
  margin: 0 clamp(8px, 1vw, 16px) clamp(8px, 1vw, 16px);
  border-radius: clamp(12px, 1.4vw, 20px);
}

.footer-top {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  align-self: flex-start;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .footer-logo {
    height: 46px;
  }
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #f2f3f1b8;
  margin: 0;
}

.footer-nav {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-nav h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.footer-nav a {
  display: block;
  font-size: 14px;
  color: #f2f3f1cc;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-wordmark {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.6vw;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 48px 0 32px;
  padding: 0;
  user-select: none;
  text-align: center;
  white-space: nowrap;
  display: block;
  width: 100%;
  transform: translateX(-1.6vw);
  cursor: default;
  --mx: 50%;
  --my: 50%;
}

@media (min-width: 900px) {
  .footer-wordmark {
    font-size: 13vw;
    letter-spacing: -0.04em;
    transform: translateX(-1.9vw);
    margin-bottom: 40px;
  }
}

.footer-wordmark-base,
.footer-wordmark-glow {
  display: block;
  width: 100%;
}

.footer-wordmark-base {
  color: #f2f3f114;
}

.footer-wordmark-glow {
  position: absolute;
  inset: 0;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    circle 240px at var(--mx) var(--my),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0) 70%
  );
  mask-image: radial-gradient(
    circle 240px at var(--mx) var(--my),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-wordmark:hover .footer-wordmark-glow {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .footer-wordmark-glow {
    transition: none;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #f2f3f199;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

/* ---------- Compact hero (sub pages) ---------- */
.hero-compact {
  min-height: 520px;
}

@media (min-width: 1024px) {
  .hero-compact {
    min-height: 620px;
  }
}

.hero-compact .hero-overlay {
  background: rgba(6, 22, 34, 0.55);
}

.hero-content-compact {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 56px;
  max-width: 880px;
}

@media (min-width: 1024px) {
  .hero-content-compact {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 80px;
  }
}

.display-compact {
  font-size: 34px;
  line-height: 1.18;
}

@media (min-width: 640px) {
  .display-compact {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .display-compact {
    font-size: 56px;
    line-height: 1.14;
    margin-bottom: 20px;
  }
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2f3f1b3;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #f2f3f1b3;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span[aria-hidden] {
  color: var(--gold);
}

/* ---------- About / bullet list ---------- */
.about-intro {
  align-items: start;
}

@media (min-width: 1024px) {
  .about-intro > div:first-child {
    position: sticky;
    top: clamp(24px, 10vh, 120px);
    align-self: start;
  }
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--navy-soft);
  align-items: start;
  transition: padding-left 0.2s ease;
}

.bullet-list li:last-child {
  border-bottom: 1px solid var(--navy-soft);
}

.bullet-list li:hover {
  padding-left: 6px;
}

.bullet-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-top: 6px;
}

.bullet-list h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 6px;
}

@media (min-width: 1024px) {
  .bullet-list h3 {
    font-size: 22px;
  }
}

.bullet-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.8;
}

/* ---------- Partners ---------- */
.section-partners {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("assets/partners-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.partners-head {
  max-width: 960px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.partners-head .lead {
  max-width: 640px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(28, 38, 61, 0.14);
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.partner-item {
  padding: clamp(28px, 3.4vw, 48px) clamp(22px, 2.6vw, 40px)
    clamp(28px, 3.4vw, 48px) 0;
  border-bottom: 1px solid rgba(28, 38, 61, 0.14);
  position: relative;
  transition: padding-left 0.4s ease;
}

@media (min-width: 640px) {
  .partner-item {
    border-right: 1px solid rgba(28, 38, 61, 0.14);
  }

  .partner-item:nth-child(2n) {
    border-right: 0;
    padding-left: clamp(22px, 2.6vw, 40px);
  }
}

@media (min-width: 1024px) {
  .partner-item {
    border-right: 1px solid rgba(28, 38, 61, 0.14);
    padding-left: clamp(22px, 2.6vw, 40px);
  }

  .partner-item:nth-child(2n) {
    border-right: 1px solid rgba(28, 38, 61, 0.14);
  }

  .partner-item:nth-child(3n) {
    border-right: 0;
  }

  .partner-item:first-child {
    padding-left: 0;
  }

  .partner-item:nth-child(3n + 1) {
    padding-left: 0;
  }
}

.partner-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.partner-item:hover::before {
  transform: scaleX(1);
}

.partner-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
  color: var(--gold);
}

.partner-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.partner-item:hover .partner-tag {
  color: var(--gold);
  opacity: 1;
}

/* Closing CTA tile */
.partner-item-cta {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  color: var(--cream);
  padding: clamp(28px, 3.4vw, 48px) clamp(22px, 2.6vw, 40px);
  border-bottom-color: var(--navy);
  border-radius: 12px;
  margin-top: 24px;
  transition: background 0.3s ease;
}

@media (min-width: 640px) {
  .partner-item-cta {
    padding-left: clamp(22px, 2.6vw, 40px) !important;
    border-radius: 0;
    margin-top: 0;
  }
}

.partner-item-cta:hover {
  background: var(--navy-deep);
}

.partner-item-cta::before {
  display: none;
}

.partner-cta-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 16px;
}

.partner-item-cta .partner-name {
  font-style: italic;
  color: var(--cream);
  margin: 0 0 16px;
}

.partner-item-cta:hover .partner-name {
  color: var(--gold);
}

.partner-item-cta .partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
  transition: gap 0.25s ease, color 0.3s ease, opacity 0.3s ease;
  align-self: flex-start;
}

.partner-item-cta:hover .partner-tag {
  color: var(--gold);
  opacity: 1;
  gap: 14px;
}

.partner-item-cta .partner-tag svg {
  width: 22px;
  height: 10px;
}

/* ---------- Legal pages (Impressum, etc.) ---------- */
.hero-legal {
  min-height: 420px;
}

@media (min-width: 1024px) {
  .hero-legal {
    min-height: 480px;
  }
}

.hero-overlay-strong {
  background:
    linear-gradient(180deg, rgba(6, 22, 34, 0.7), rgba(6, 22, 34, 0.92));
}

.hero-content-legal {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 64px;
  max-width: 820px;
  justify-items: start;
}

@media (min-width: 1024px) {
  .hero-content-legal {
    padding-bottom: 80px;
  }
}

.display-legal {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
}

@media (min-width: 640px) {
  .display-legal {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .display-legal {
    font-size: 64px;
  }
}

.section-legal {
  background: #fff;
  padding: 80px 0 120px;
}

@media (min-width: 1024px) {
  .section-legal {
    padding: 112px 0 160px;
  }
}

.legal-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: grid;
  gap: 44px;
}

@media (min-width: 1024px) {
  .legal-container {
    gap: 52px;
  }
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-soft);
}

@media (min-width: 1024px) {
  .legal-block h2 {
    font-size: 26px;
  }
}

.legal-block p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: #4d596b;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .legal-block p {
    font-size: 16px;
  }
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--navy);
  margin: 28px 0 12px;
}

@media (min-width: 1024px) {
  .legal-block h3 {
    font-size: 20px;
  }
}

.legal-list {
  margin: 0 0 14px;
  padding: 0 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #4d596b;
}

.legal-list li {
  margin-bottom: 10px;
}

.legal-list li::marker {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .legal-list {
    font-size: 16px;
  }
}

.legal-meta {
  font-style: italic;
  color: #6b7280;
  font-size: 14px;
}

.legal-block a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--navy-soft);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.legal-block a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ---------- Cookie notice ---------- */
.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 1.5vw, 24px);
  z-index: 100;
  max-width: 420px;
  width: calc(100vw - clamp(24px, 3vw, 48px));
  background: #fff;
  border: 1px solid rgba(28, 38, 61, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px -18px rgba(6, 17, 26, 0.22),
    0 2px 8px -2px rgba(6, 17, 26, 0.08);
  color: var(--navy);
  font-family: var(--font-sans);
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-notice-text {
  margin: 0 0 14px;
  line-height: 1.6;
  font-size: 13px;
  color: var(--navy);
  opacity: 0.82;
  font-weight: 400;
}

.cookie-notice-text a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(28, 38, 61, 0.3);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.cookie-notice-text a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.cookie-notice-settings {
  display: flex;
  flex-direction: column;
  margin: 4px 0 14px;
  padding: 4px 0;
  border-top: 1px solid rgba(28, 38, 61, 0.1);
  border-bottom: 1px solid rgba(28, 38, 61, 0.1);
}

.cookie-notice-settings[hidden] {
  display: none;
}

.cookie-notice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(28, 38, 61, 0.06);
  cursor: pointer;
}

.cookie-notice-row:last-child {
  border-bottom: 0;
}

.cookie-notice-row > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cookie-notice-row strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.cookie-notice-row span:not(.cookie-switch):not(.cookie-switch *) {
  font-size: 11.5px;
  color: var(--navy);
  opacity: 0.6;
  line-height: 1.45;
}

.cookie-switch {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 20px;
  display: inline-block;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-switch > span {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 61, 0.2);
  border-radius: 999px;
  transition: background-color 0.25s ease;
}

.cookie-switch > span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-switch input:checked + span {
  background: var(--gold);
}

.cookie-switch input:checked + span::after {
  transform: translateX(16px);
}

.cookie-switch input:disabled + span {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-switch input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(199, 154, 95, 0.35);
}

.cookie-notice-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.cookie-notice-btn {
  flex: 1;
  padding: 10px 14px;
  font: inherit;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(28, 38, 61, 0.25);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cookie-notice-btn:hover {
  border-color: var(--navy);
  background: rgba(28, 38, 61, 0.04);
}

.cookie-notice-btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.cookie-notice-btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.cookie-notice-settings-toggle {
  display: block;
  margin: 12px auto 0;
  background: transparent;
  border: 0;
  padding: 4px 6px;
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.cookie-notice-settings-toggle:hover {
  opacity: 1;
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice {
    transition: none;
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Hero entrance choreography ---------- */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero .eyebrow,
.hero .display,
.hero-body,
.hero-accent,
.hero-ctas {
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero .eyebrow   { animation-delay: 0.10s; }
.hero .display   { animation-delay: 0.22s; }
.hero-body       { animation-delay: 0.34s; }
.hero-accent     { animation-delay: 0.46s; }
.hero-ctas       { animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero .eyebrow,
  .hero .display,
  .hero-body,
  .hero-accent,
  .hero-ctas {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
