:root {
  --color-ink: #221733;
  --color-ink-soft: #362548;
  --color-ink-tint: #4a3760;
  --color-cream: #FBF4EC;
  --color-cream-soft: #F3E9DC;
  --color-coral: #FF6F51;
  --color-coral-deep: #E4552F;
  --color-gold: #F0B860;
  --color-text-on-cream: #241832;
  --color-text-on-ink: #F6EEE3;
  --color-muted: #6a5d7a;

  --space-3xs: 0.375rem;
  --space-2xs: 0.625rem;
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2.25rem;
  --space-lg: 3.5rem;
  --space-xl: 5.5rem;
  --space-2xl: 8rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(34,23,51,0.08), 0 1px 1px rgba(34,23,51,0.04);
  --shadow-md: 0 8px 24px rgba(34,23,51,0.12), 0 2px 6px rgba(34,23,51,0.08);
  --shadow-lg: 0 24px 48px rgba(34,23,51,0.18), 0 8px 16px rgba(34,23,51,0.1);
  --shadow-coral: 0 12px 28px rgba(255,111,81,0.35), 0 4px 10px rgba(228,85,47,0.25);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-on-cream);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  margin: 0 0 var(--space-sm);
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 var(--space-sm); color: var(--color-text-on-cream); }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

.eyebrow-text {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-2xs);
}

.section-heading {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem);
  max-width: 640px;
}

.page-heading {
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem);
}

.hero-heading {
  font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.2rem);
  letter-spacing: -0.01em;
}

.highlight-text { color: var(--color-coral-deep); font-weight: 600; }


.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: var(--space-md) 0;
  background: transparent;
  transition: padding 0.4s cubic-bezier(.4,0,.2,1), background 0.4s ease, box-shadow 0.4s ease;
}
.nav-bar.nav-compact {
  padding: var(--space-2xs) 0;
  background: rgba(251, 244, 236, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}
.brand-logo {
  height: 44px;
  width: auto;
  transition: height 0.4s cubic-bezier(.4,0,.2,1);
}
.nav-bar.nav-compact .brand-logo { height: 32px; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: var(--space-md); align-items: center; }
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-ink);
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--color-coral);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-cta {
  background: var(--color-ink);
  color: var(--color-text-on-ink);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover { background: var(--color-coral); transform: translateY(-2px); box-shadow: var(--shadow-coral); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 600;
  position: relative;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-panel {
  position: fixed;
  inset: 0;
  background: var(--color-ink);
  z-index: 400;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path 0.6s cubic-bezier(.65,0,.35,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.menu-open .mobile-menu-panel {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
body.menu-links-visible .mobile-menu-links {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-on-ink);
}
.mobile-menu-links a.mobile-cta {
  background: var(--color-coral);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
}


.hero-section {
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-soft) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,111,81,0.22), transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 560px; }
.hero-lead { font-size: 1.15rem; color: var(--color-muted); max-width: 500px; }
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.benefit-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.benefit-item i {
  font-size: 1.3rem;
  color: var(--color-coral-deep);
  background: rgba(255,111,81,0.14);
  width: 52px; height: 52px;
  min-width: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
}
.benefit-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.benefit-item p { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 0; }

.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(34,23,51,0.06);
}
.hero-form-card h2 { font-size: 1.4rem; }
.form-subtext { color: var(--color-muted); font-size: 0.92rem; margin-bottom: var(--space-md); }

.compact-inline-form .form-row { display: flex; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.form-row-two { flex-wrap: wrap; }
.form-field { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--color-ink); }
.form-field input, .form-field textarea {
  border: 1.5px solid rgba(34,23,51,0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-on-cream);
  background: var(--color-cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
  min-height: 44px;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 4px rgba(255,111,81,0.15);
}
.form-row-secondary {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-muted);
  cursor: pointer;
}
.checkbox-field input {
  width: 20px; height: 20px;
  accent-color: var(--color-coral);
  min-height: unset;
}
.checkbox-field a { color: var(--color-coral-deep); font-weight: 600; }

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-coral);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-coral);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 44px;
  white-space: nowrap;
}
.primary-action:hover { transform: translateY(-3px); background: var(--color-coral-deep); }
.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-coral);
  padding-bottom: 4px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.secondary-action:hover { gap: 14px; color: var(--color-coral-deep); }


.content-block { padding: var(--space-2xl) var(--space-md); }
.content-block.alt-background { background: var(--color-ink); }
.content-block.alt-background .section-heading,
.content-block.alt-background h2,
.content-block.alt-background h3,
.content-block.alt-background .eyebrow-text { color: var(--color-text-on-ink); }
.content-block.alt-background .eyebrow-text { color: var(--color-gold); }
.content-block.alt-background p { color: rgba(246,238,227,0.78); }

.content-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.content-grid.reverse-on-desktop { direction: rtl; }
.content-grid.reverse-on-desktop > * { direction: ltr; }

.visual-frame {
  container-type: inline-size;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.duotone-image {
  filter: grayscale(1) contrast(1.15) brightness(1.02);
  transition: transform 0.6s ease;
}
.visual-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(34,23,51,0.72), rgba(255,111,81,0.55));
  mix-blend-mode: color;
  pointer-events: none;
}
.visual-frame:hover .duotone-image { transform: scale(1.04); }

.text-column p { color: var(--color-muted); }


.info-grid-section { padding: var(--space-2xl) var(--space-md); }
.info-grid-section.alt-background { background: var(--color-ink); }
.info-grid-section.alt-background .section-heading,
.info-grid-section.alt-background h3 { color: var(--color-text-on-ink); }
.info-grid-section.alt-background p { color: rgba(246,238,227,0.75); }
.info-grid-section.alt-background .eyebrow-text { color: var(--color-gold); }
.info-grid-section.alt-background .info-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

.section-intro { max-width: 1280px; margin: 0 auto var(--space-lg); text-align: left; }

.info-grid {
  container-type: inline-size;
  container-name: infogrid;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.info-card {
  background: #fff;
  border: 1px solid rgba(34,23,51,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255,111,81,0.14);
  color: var(--color-coral-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}
.info-card h3 { font-size: 1.1rem; }
.info-card p { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 0; }

@container infogrid (min-width: 760px) {
  .info-card { display: flex; gap: var(--space-sm); align-items: flex-start; text-align: left; }
  .info-icon { margin-bottom: 0; }
}


.visual-break {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
}
.break-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); }
.break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,23,51,0.88), rgba(228,85,47,0.72));
  mix-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
}
.break-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  padding: 0 var(--space-md);
  mix-blend-mode: normal;
}
.break-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.break-caption { color: var(--color-gold); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.8rem; }


.carousel-section { padding: var(--space-2xl) var(--space-md); background: var(--color-cream-soft); }
.program-swiper { max-width: 1280px; margin: 0 auto; padding-bottom: var(--space-lg); }
.slide-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  height: auto;
}
.slide-card .visual-frame { aspect-ratio: 16/10; margin-bottom: var(--space-sm); }
.slide-card h3 { font-size: 1.1rem; }
.slide-card p { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 0; }
.swiper-pagination-bullet { background: var(--color-ink); opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--color-coral); opacity: 1; }


.audience-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.audience-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.audience-item i { color: var(--color-coral-deep); font-size: 1.2rem; margin-top: 4px; }
.audience-item p { margin-bottom: 0; color: var(--color-muted); }


.steps-grid {
  container-type: inline-size;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-coral);
  display: block;
  margin-bottom: var(--space-2xs);
}
.step-card h3 { color: var(--color-text-on-ink); font-size: 1.1rem; }
.step-card p { color: rgba(246,238,227,0.75); font-size: 0.92rem; margin-bottom: 0; }


.cta-section { padding: var(--space-2xl) var(--space-md); background: var(--color-cream); }
.cta-inline {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.cta-inline h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem); }


.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-lg);
  background: linear-gradient(160deg, var(--color-ink) 0%, var(--color-ink-soft) 100%);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-hero .eyebrow-text { color: var(--color-gold); }
.page-hero .page-heading { color: var(--color-text-on-ink); }
.page-hero .page-lead { color: rgba(246,238,227,0.8); font-size: 1.1rem; }


.compare-grid {
  container-type: inline-size;
  max-width: 1000px;
  margin: 0 auto var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.compare-card { padding: var(--space-md); border-radius: var(--radius-md); }
.compare-negative { background: rgba(228,85,47,0.08); border: 1.5px solid rgba(228,85,47,0.25); }
.compare-positive { background: rgba(34,23,51,0.05); border: 1.5px solid rgba(34,23,51,0.18); }
.compare-label { display: flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: var(--space-2xs); }
.compare-negative .compare-label { color: var(--color-coral-deep); }
.compare-positive .compare-label { color: var(--color-ink); }
.compare-card p { font-style: italic; color: var(--color-muted); margin-bottom: 0; }
.compare-note { max-width: 720px; margin: 0 auto; text-align: center; color: var(--color-muted); }

.numbered-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.numbered-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.numbered-item span {
  background: var(--color-coral);
  color: #fff;
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.numbered-item p { margin-bottom: 0; color: var(--color-muted); }

.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md); }
.faq-item { border-bottom: 1px solid rgba(34,23,51,0.1); padding-bottom: var(--space-md); }
.faq-item h3 { font-size: 1.05rem; }
.faq-item p { color: var(--color-muted); margin-bottom: 0; }


.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info-column h2 { font-size: 1.4rem; }
.contact-detail-row {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(34,23,51,0.08);
}
.contact-detail-row i { color: var(--color-coral-deep); font-size: 1.1rem; width: 24px; margin-top: 4px; }
.contact-detail-row h4 { margin-bottom: 2px; font-size: 0.95rem; }
.contact-detail-row p { margin-bottom: 0; color: var(--color-muted); }

.accessibility-note {
  margin-top: var(--space-lg);
  background: rgba(255,111,81,0.08);
  border: 1px solid rgba(255,111,81,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.accessibility-note h4 { display: flex; align-items: center; gap: 10px; color: var(--color-coral-deep); margin-bottom: var(--space-2xs); font-size: 1rem; }
.accessibility-note p { margin-bottom: 0; color: var(--color-muted); font-size: 0.92rem; }

.contact-form-card { margin: 0; }
.map-frame {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.thanks-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
  text-align: center;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-soft) 100%);
}
.envelope-wrap { margin-bottom: var(--space-lg); }
.envelope {
  position: relative;
  width: 200px; height: 130px;
  margin: 0 auto;
}
.envelope-back {
  position: absolute; inset: 0;
  background: var(--color-ink-soft);
  border-radius: var(--radius-sm);
  z-index: 1;
}
.envelope-front-left, .envelope-front-right {
  position: absolute;
  bottom: 0; width: 50%; height: 100%;
  background: var(--color-ink);
  z-index: 3;
}
.envelope-front-left { left: 0; clip-path: polygon(0 0, 100% 100%, 0 100%); border-radius: 0 0 0 var(--radius-sm); }
.envelope-front-right { right: 0; clip-path: polygon(100% 0, 100% 100%, 0 100%); border-radius: 0 0 var(--radius-sm) 0; }
.envelope-flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: var(--color-coral);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  z-index: 4;
  animation: flapOpen 1.4s ease forwards 0.3s;
}
@keyframes flapOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(180deg); }
}
.letter {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 140px; height: 90px;
  margin-left: -70px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  animation: letterSlide 1.4s ease forwards 1s;
}
.letter span { display: block; height: 6px; background: var(--color-cream-soft); border-radius: 3px; }
.letter span:nth-child(2) { width: 70%; }
.letter span:nth-child(3) { width: 85%; }
@keyframes letterSlide {
  0% { transform: translateY(0); }
  100% { transform: translateY(-90px); }
}
.thanks-text h1 { margin-bottom: var(--space-sm); }
.thanks-text p { max-width: 480px; margin: 0 auto var(--space-md); color: var(--color-muted); }


.legal-page { max-width: 880px; margin: 0 auto; padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-2xl); }
.legal-intro { margin-bottom: var(--space-lg); }
.legal-intro .page-lead { color: var(--color-muted); }
.legal-section { margin-bottom: var(--space-lg); }
.legal-section h2 { font-size: 1.3rem; margin-bottom: var(--space-sm); }
.legal-section p { color: var(--color-muted); }
.term-highlight {
  color: var(--color-coral-deep);
  font-weight: 700;
  border-bottom: 1px dotted var(--color-coral-deep);
  cursor: help;
}
.definition-aside {
  display: block;
  margin: var(--space-sm) 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cream-soft);
  border-left: 4px solid var(--color-coral);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--color-ink);
  font-style: normal;
}
.definition-aside strong { color: var(--color-coral-deep); }


.site-footer {
  background: #170F22;
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}
.footer-logo { height: 36px; margin-bottom: var(--space-sm); }
.footer-brand p { color: rgba(246,238,227,0.6); font-size: 0.9rem; }
.footer-col h4 { color: var(--color-gold); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-sm); }
.footer-col a, .footer-col p {
  display: block;
  color: rgba(246,238,227,0.72);
  font-size: 0.9rem;
  margin-bottom: var(--space-2xs);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--color-coral); }
.footer-col p i { color: var(--color-coral); margin-right: 8px; width: 14px; }
.footer-divider { height: 1px; background: rgba(246,238,227,0.1); max-width: 1280px; margin: var(--space-lg) auto; }
.footer-bottom { text-align: center; color: rgba(246,238,227,0.45); font-size: 0.82rem; margin: 0; }


.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--color-ink);
  color: var(--color-text-on-ink);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-bar-text { flex: 1; min-width: 240px; font-size: 0.88rem; color: rgba(246,238,227,0.85); }
.cookie-bar-text a { color: var(--color-gold); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
  min-height: 44px;
}
.cookie-btn-accept { background: var(--color-coral); color: #fff; }
.cookie-btn-accept:hover { background: var(--color-coral-deep); }
.cookie-btn-reject { background: transparent; color: rgba(246,238,227,0.8); border: 1.5px solid rgba(246,238,227,0.3); }
.cookie-btn-reject:hover { border-color: var(--color-coral); color: #fff; }
.cookie-btn-customize { background: transparent; color: var(--color-gold); border: 1.5px solid var(--color-gold); }
.cookie-btn-customize:hover { background: var(--color-gold); color: var(--color-ink); }

.cookie-categories {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.cookie-bar.is-expanded .cookie-categories {
  max-height: 400px;
  padding: 0 var(--space-md) var(--space-md);
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-2xs) 0;
  border-bottom: 1px solid rgba(246,238,227,0.1);
}
.cookie-category-row:last-child { border-bottom: none; }
.cookie-category-row h5 { margin: 0; font-size: 0.9rem; color: var(--color-text-on-ink); }
.cookie-category-row p { margin: 2px 0 0; font-size: 0.78rem; color: rgba(246,238,227,0.6); }
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 100%; height: 100%; position: absolute; margin: 0; cursor: pointer; z-index: 2; }
.toggle-switch-track {
  position: absolute; inset: 0;
  background: rgba(246,238,227,0.2);
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
}
.toggle-switch-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.toggle-switch input:checked ~ .toggle-switch-track { background: var(--color-coral); }
.toggle-switch input:checked ~ .toggle-switch-thumb { transform: translateX(20px); }
.toggle-switch input:disabled ~ .toggle-switch-track { background: rgba(240,184,96,0.4); }


@media (max-width: 1024px) {
  .hero-grid, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .content-grid.reverse-on-desktop { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-section, .page-hero { padding-top: calc(var(--nav-height) + var(--space-md)); }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .hero-form-card, .content-block, .info-grid-section, .cta-section, .carousel-section { padding-left: 0; padding-right: 0; }
  .content-block, .info-grid-section, .cta-section, .carousel-section, .legal-page { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .form-row-two { flex-direction: column; }
  .envelope { width: 160px; height: 110px; }
  .letter { width: 110px; margin-left: -55px; }
}

.scroll-reveal { opacity: 1; }