:root {
  --color-bg: #FAF6EF;
  --color-bg-alt: #F1E8DA;
  --color-surface: #FFFDF9;
  --color-ink: #1E2230;
  --color-ink-soft: #4A4E5C;
  --color-navy: #16213E;
  --color-navy-deep: #0F1729;
  --color-navy-light: #2C3A63;
  --color-terracotta: #D9713C;
  --color-terracotta-dark: #B85A2C;
  --color-gold: #E3A857;
  --color-line: #E4D9C7;
  --color-line-dark: #33405F;

  --shadow-sm: 0 1px 2px rgba(22,33,62,.07), 0 1px 1px rgba(22,33,62,.05);
  --shadow-md: 0 6px 14px rgba(22,33,62,.09), 0 2px 6px rgba(22,33,62,.06);
  --shadow-lg: 0 18px 40px rgba(22,33,62,.15), 0 6px 16px rgba(22,33,62,.09);
  --shadow-xl: 0 30px 70px rgba(22,33,62,.22), 0 14px 28px rgba(22,33,62,.12);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 44px;

  --ease: cubic-bezier(.25,.8,.35,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 .6em;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.pace .pace-progress {
  background: var(--color-terracotta);
  height: 3px;
}
.pace .pace-progress-inner { box-shadow: 0 0 10px var(--color-terracotta), 0 0 5px var(--color-terracotta); }
.pace .pace-activity { display: none; }

h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  margin-bottom: .8em;
  display: inline-block;
}
.eyebrow--dark { color: var(--color-terracotta-dark); }
.eyebrow--light { color: var(--color-gold); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .9rem 1.7rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  transition: all .3s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-terracotta);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn--outline:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
}


.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,239,.92);
  backdrop-filter: blur(10px);
  position: relative;
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-line);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .5s var(--ease);
}
.nav.nav--scrolled::after { transform: scaleX(1); }
.nav.nav--scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-right: auto;
}
.nav-links {
  display: none;
}
.nav-link {
  font-weight: 500;
  font-size: .95rem;
  color: var(--color-ink-soft);
  padding: .5rem 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav-link:hover, .nav-link--active { color: var(--color-navy); }
.nav-link--active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
}
.nav-caret { font-size: .65rem; margin-left: .3rem; transition: transform .3s var(--ease); }
.nav-item--mega { position: relative; }
.nav-item--mega:hover .nav-caret { transform: rotate(180deg); }
.nav-cta { display: none; }
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: #fff;
  font-size: 1.1rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 2.1rem; }
  .nav-cta { display: inline-flex; }
  .mobile-toggle { display: none; }
}


.mega-menu {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(760px, 90vw);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  z-index: 50;
}
.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu,
.mega-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .mega-menu-inner { grid-template-columns: repeat(4, 1fr); }
}
.mega-col {
  padding: 1rem .8rem;
  border-radius: var(--radius-md);
  transition: background .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.mega-col:hover { background: var(--color-bg-alt); }
.mega-col i { font-size: 1.3rem; color: var(--color-terracotta); }
.mega-col h4 { font-size: .95rem; margin: 0; color: var(--color-navy); }
.mega-col p { font-size: .82rem; color: var(--color-ink-soft); margin: 0; }


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-menu.mobile-menu--open { visibility: visible; opacity: 1; }
.mobile-menu-links {
  width: 62%;
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  padding: 3rem 2rem;
  position: relative;
}
.mobile-menu-links a {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 2rem);
  padding: .5rem 0;
  opacity: .85;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu-links a:hover { opacity: 1; transform: translateX(6px); }
.mobile-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.mobile-menu-visual {
  width: 38%;
  position: relative;
  overflow: hidden;
}
.mobile-menu-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mobile-menu-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,33,62,.1), rgba(22,33,62,.5));
}


.hero {
  padding: 2.4rem 1.5rem 4rem;
  background: var(--color-navy);
  position: relative;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.hero-copy { color: #fff; max-width: 640px; }
.hero-copy h1 { color: #fff; }
.hero-copy .eyebrow { color: var(--color-gold); }
.hero-text { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-mosaic {
  position: relative;
  height: 340px;
  width: 100%;
}
.mosaic-item {
  position: absolute;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-navy);
}
.mosaic-item--1 { width: 46%; height: 62%; top: 0; left: 4%; transform: rotate(-6deg); z-index: 3; }
.mosaic-item--2 { width: 40%; height: 50%; top: 8%; left: 42%; transform: rotate(4deg); z-index: 2; }
.mosaic-item--3 { width: 38%; height: 44%; top: 52%; left: 0; transform: rotate(3deg); z-index: 2; }
.mosaic-item--4 { width: 42%; height: 48%; top: 46%; left: 38%; transform: rotate(-4deg); z-index: 4; }
.mosaic-item--5 { width: 30%; height: 34%; top: 4%; left: 68%; transform: rotate(-9deg); z-index: 1; }

@media (min-width: 900px) {
  .hero { padding: 3.5rem 3rem 5rem; }
  .hero-inner { flex-direction: row; align-items: center; gap: 2rem; }
  .hero-copy { flex: 0 0 54%; }
  .hero-mosaic { flex: 0 0 44%; height: 460px; }
}

.gradient-fade {
  height: 90px;
  width: 100%;
}
.gradient-fade--hero { background: linear-gradient(to bottom, var(--color-navy), var(--color-bg)); }
.gradient-fade--reverse { background: linear-gradient(to bottom, var(--color-bg-alt), var(--color-bg)); }


.section { padding: clamp(3.5rem, 7vw, 6.5rem) 1.5rem; max-width: 1280px; margin: 0 auto; }
.section--alt { background: var(--color-bg-alt); max-width: none; padding-left: 1.5rem; padding-right: 1.5rem; }
.section--alt > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section--dark { background: var(--color-navy); max-width: none; }
.section--dark > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head--light h2, .section-head--light p { color: #fff; }


.split-6040, .split-4060 {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .split-6040 { flex-direction: row; }
  .split-6040 .split-main { flex: 0 0 60%; }
  .split-6040 .split-side { flex: 0 0 36%; margin-left: auto; }
  .split-4060 { flex-direction: row; }
  .split-4060 .split-side { flex: 0 0 36%; }
  .split-4060 .split-main { flex: 0 0 58%; margin-left: auto; }
}
.split-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.blindspot-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
}
.blindspot-card--alt { background: var(--color-navy); border: none; }
.blindspot-card--alt h3, .blindspot-card--alt li { color: #fff; }
.blindspot-card h3 { margin-bottom: 1.1rem; font-size: 1.05rem; }
.blindspot-card ul li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: .93rem;
  color: var(--color-ink-soft);
}
.blindspot-card--alt ul li { border-bottom-color: rgba(255,255,255,.14); color: rgba(255,255,255,.8); }
.blindspot-card ul li:last-child { border-bottom: none; }
.blindspot-card i { color: var(--color-terracotta); margin-top: .2rem; }
.blindspot-card--alt i { color: var(--color-gold); }


.process-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 780px) {
  .process-stack { grid-template-columns: repeat(4, 1fr); align-items: start; }
}
.proc-card {
  background: var(--color-surface);
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proc-card--featured {
  box-shadow: var(--shadow-xl);
  transform: translateY(-10px);
  border: 1px solid var(--color-terracotta);
}
@media (min-width: 780px) {
  .proc-card--featured { transform: translateY(-18px); }
}
.proc-num {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-bottom: .6rem;
}
.proc-card p { font-size: .92rem; color: var(--color-ink-soft); margin-bottom: 0; }


.deliverable-tags { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.deliverable-tags span {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  padding: .6rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-navy);
}
.deliverable-tags i { color: var(--color-terracotta); }


.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 780px) {
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .who-card--tall { grid-row: span 2; }
  .who-card--wide { grid-column: span 2; }
}
.who-card {
  background: var(--color-navy-light);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.who-card:hover { transform: translateY(-6px); background: var(--color-terracotta); box-shadow: var(--shadow-lg); }
.who-card i { font-size: 1.5rem; color: var(--color-gold); }
.who-card h3, .who-card p { color: #fff; }
.who-card p { font-size: .9rem; opacity: .85; margin-bottom: 0; }


.cta-band { padding-top: 0; }
.cta-band-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
@media (min-width: 800px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


.page-hero { padding: 2.4rem 1.5rem 3rem; max-width: 1280px; margin: 0 auto; }
.page-hero--compact { padding-bottom: 1rem; }
.page-hero-split {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.2rem;
  align-items: center;
}
.page-hero--reverse .page-hero-split { flex-direction: column; }
@media (min-width: 900px) {
  .page-hero-split { flex-direction: row; align-items: center; }
  .page-hero--reverse .page-hero-split { flex-direction: row-reverse; }
  .page-hero-text { flex: 0 0 52%; }
  .page-hero-image { flex: 0 0 42%; margin-left: auto; }
}
.page-hero-text--full { max-width: 720px; }
.page-hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.5deg);
}


.belief-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 780px) {
  .belief-grid { grid-template-columns: repeat(3, 1fr); }
  .belief-card--wide { grid-column: span 2; }
}
.belief-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.belief-card i { font-size: 1.4rem; color: var(--color-terracotta); margin-bottom: .8rem; display: block; }
.belief-card p { font-size: .92rem; color: var(--color-ink-soft); margin-bottom: 0; }

.not-do-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.not-do-card i { font-size: 1.6rem; color: var(--color-gold); margin-bottom: 1rem; display: block; }
.not-do-card ul li { color: rgba(255,255,255,.85); padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .93rem; }
.not-do-card ul li:last-child { border-bottom: none; }


.prep-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 780px) { .prep-grid { grid-template-columns: repeat(4, 1fr); } }
.prep-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.prep-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--color-terracotta);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  margin-bottom: .8rem;
}
.prep-card p { font-size: .9rem; color: var(--color-ink-soft); margin-bottom: 0; }

.rac-note {
  max-width: 760px;
  margin: 2.4rem auto 0;
  padding: 1.4rem 1.8rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-terracotta);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--color-ink-soft);
}
.rac-note p { margin: 0; }
.rac-cta { text-align: center; margin-top: 2.4rem; }


.not-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 780px) { .not-fit-grid { grid-template-columns: repeat(4, 1fr); } }
.not-fit-card {
  background: var(--color-navy-light);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  color: #fff;
}
.not-fit-card i { font-size: 1.3rem; color: var(--color-gold); margin-bottom: .8rem; display: block; }
.not-fit-card p { font-size: .87rem; opacity: .85; margin-bottom: 0; }


.contact-section { padding-top: 2rem; }
.contact-split {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 900px) {
  .contact-split { flex-direction: row; min-height: 560px; }
}
.contact-map { min-height: 320px; flex: 1 1 50%; }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; }
.contact-form-wrap {
  flex: 1 1 50%;
  background: var(--color-surface);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: .4rem; color: var(--color-navy); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--color-ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 48px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(217,113,60,.15);
}
.form-row--checkbox { display: flex; align-items: flex-start; gap: .7rem; }
.form-row--checkbox input { margin-top: .3rem; width: 20px; height: 20px; flex-shrink: 0; }
.form-row--checkbox label { margin-bottom: 0; font-size: .85rem; color: var(--color-ink-soft); font-weight: 400; }
.form-submit { width: 100%; }

.lang-note {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}
.lang-note i { font-size: 1.8rem; color: var(--color-terracotta); margin-top: .2rem; }
.lang-note p { color: var(--color-ink-soft); margin-bottom: 0; }


.thanks-section { padding: 5rem 1.5rem; display: flex; justify-content: center; }
.thanks-card {
  max-width: 520px;
  text-align: center;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: clamp(2.2rem, 6vw, 3.5rem);
  border: 1px solid var(--color-line);
}
.thanks-icon { font-size: 3.4rem; color: var(--color-terracotta); margin-bottom: 1.2rem; }
.thanks-card p { color: var(--color-ink-soft); margin-bottom: 1.8rem; }


.legal-hero { max-width: 1000px; margin: 0 auto; padding: 3rem 1.5rem 1rem; }
.legal-updated { color: var(--color-ink-soft); font-size: .88rem; }
.legal-body { max-width: 900px; }
.legal-qa { margin-bottom: 2.2rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--color-line); }
.legal-qa:last-child { border-bottom: none; }
.legal-qa h2 { font-size: 1.2rem; margin-bottom: .7rem; }
.legal-qa p { color: var(--color-ink-soft); font-size: .95rem; }
.legal-body--lettered .legal-qa h2 { color: var(--color-terracotta-dark); }
.legal-body--unnumbered .legal-qa h2 { color: var(--color-navy); }


.footer { background: var(--color-navy-deep); color: rgba(255,255,255,.75); }
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 780px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: .6rem; max-width: 320px; }
.footer-brand-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; margin: 0; }
.footer-brand p:last-child { font-size: .88rem; }
.footer-col h5 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col a { display: block; padding: .35rem 0; font-size: .92rem; transition: color .25s var(--ease), transform .25s var(--ease); }
.footer-col a:hover { color: var(--color-gold); transform: translateX(3px); }
.footer-col p { font-size: .9rem; margin-bottom: .6rem; display: flex; gap: .5rem; align-items: flex-start; }
.footer-col p i { color: var(--color-gold); margin-top: .2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  font-size: .82rem;
}


.cookie-bell {
  position: fixed;
  bottom: 1.4rem; right: 1.4rem;
  z-index: 300;
}
.cookie-bell button {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.cookie-bell button:hover { transform: scale(1.08); background: var(--color-terracotta); }
.cookie-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 12px; height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 2px solid var(--color-navy);
}
.cookie-badge:empty { display: none; }
.cookie-panel {
  position: fixed;
  bottom: 0; right: 0; left: 0;
  z-index: 299;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  transform: translateY(120%);
  transition: transform .4s var(--ease);
  max-width: 480px;
  margin-left: auto;
  margin-right: 1.4rem;
  border-bottom: none;
}
.cookie-panel.cookie-panel--open { transform: translateY(0); }
.cookie-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.cookie-panel-header h4 { margin: 0; }
.cookie-panel-header button { font-size: 1.1rem; color: var(--color-ink-soft); }
.cookie-panel p { font-size: .88rem; color: var(--color-ink-soft); }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--color-line); }
.cookie-option div { display: flex; flex-direction: column; gap: .2rem; }
.cookie-option strong { font-size: .92rem; color: var(--color-navy); }
.cookie-option span { font-size: .8rem; color: var(--color-ink-soft); }
.cookie-option input { width: 22px; height: 22px; flex-shrink: 0; }
.cookie-panel-actions { display: flex; gap: .8rem; margin-top: 1.2rem; flex-wrap: wrap; }
.cookie-panel-actions .btn { flex: 1; min-width: 130px; }

@media (max-width: 480px) {
  .cookie-panel { margin-right: 0; max-width: 100%; }
}


.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.reveal--visible { opacity: 1; transform: translateY(0); }


.iti { display: block; }