:root {
  /* color */
  --color-primary: #E54312;
  --color-primary-hover: #C7370B;
  --color-text-primary: #0A0A0A;
  --color-text-secondary: #5C5C5C;
  --color-text-on-dark: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-footer: #111111;

  /* tints */
  --gradient-hero: linear-gradient(135deg, #FBE5DA 0%, #FDEEE3 50%, #FFE6D5 100%);
  --gradient-card: linear-gradient(180deg, #FFF1E6 0%, #FCD8C0 100%);
  --color-banner-peach: #FCE4DA;
  --color-blob-peach: #FBE3D6;
  --color-soft-peach: #FFF6EE;

  /* radius */
  --radius-card: 22px;
  --radius-pill: 9999px;

  /* spacing */
  --space-section-y: 112px;
  --space-section-y-mobile: 64px;
  --container-max: 1200px;

  /* type */
  --font-sans: "DM Sans", "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; color: var(--color-text-secondary); }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 80px; } }

/* ===== Header ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header__inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
.footer .logo img { height: 96px; }
@media (max-width: 640px) {
  .logo img { height: 52px; }
  .footer .logo img { height: 72px; }
}

.nav {
  display: none;
  gap: 44px;
}
.nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  position: relative;
  transition: color .2s;
}
.nav a:hover { color: var(--color-primary); }
.nav a.is-active { color: var(--color-primary); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}
@media (min-width: 900px) { .nav { display: inline-flex; } }

/* Mobile dropdown nav (< 900px). Toggled by the burger button. */
@media (max-width: 899.98px) {
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 18px 24px 26px;
    border-top: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    z-index: 49;
  }
  .nav.is-open a {
    font-size: 18px;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav.is-open a:last-child { border-bottom: none; }
  .nav.is-open a.is-active::after { display: none; }
}
.menu-toggle[aria-expanded="true"] svg { transform: rotate(90deg); transition: transform .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(229,67,18,0.18);
}
.btn:hover { background: var(--color-primary-hover); box-shadow: 0 12px 28px rgba(229,67,18,0.28); }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  box-shadow: none;
  border: 1.5px solid rgba(10,10,10,0.12);
}
.btn--ghost:hover {
  background: rgba(229,67,18,0.06);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.menu-toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(10,10,10,0.12);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* ===== Eyebrow ==================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow__line {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--color-primary);
}

/* ===== Sections =================================================== */
section { position: relative; }
.section {
  padding: var(--space-section-y-mobile) 0;
}
@media (min-width: 900px) { .section { padding: var(--space-section-y) 0; } }
.section--tight { padding-top: 32px; }
.section--peach { background: var(--color-soft-peach); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

/* ===== Hero (For Investors) ======================================= */
.investor-hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}
.investor-hero::before {
  /* peach blob top-left */
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -180px;
  top: -160px;
  background: radial-gradient(closest-side, rgba(229,67,18,0.10), rgba(229,67,18,0));
  border-radius: 50%;
  z-index: 0;
}
.investor-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(229,67,18,0.10), rgba(229,67,18,0));
  border-radius: 50%;
  z-index: 0;
}
.investor-hero .container { position: relative; z-index: 1; }
.investor-hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .investor-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
}
.investor-hero__title {
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 20px 0 22px;
  text-wrap: balance;
}
.investor-hero__title em {
  font-style: normal;
  color: var(--color-primary);
}
.investor-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}
.investor-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(229,67,18,0.18), 0 8px 24px rgba(0,0,0,0.06);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual__badge {
  position: absolute;
  left: 22px;
  top: 22px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 16px 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.hero-visual__badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  position: relative;
}
.hero-visual__badge .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  opacity: 0.4;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(10,10,10,0.08);
}
.hero-stats div {
  text-align: left;
}
.hero-stats strong {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stats span {
  font-size: 14px;
  color: var(--color-text-secondary);
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr; gap: 22px; padding-top: 32px; }
}

/* Sparkle (★ оранжевая «искра») */
.sparkle {
  position: absolute;
  width: 22px; height: 22px;
  color: var(--color-primary);
}
.sparkle--lg { width: 36px; height: 36px; }

/* Dashed curve */
/* ===== Pillars: «strategy bullets» on hero =============================== */
.pillars {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.pillars li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-text-primary);
}
.pillars__bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== Business Highlights ======================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;
}
@media (min-width: 720px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }

.highlight {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(229,67,18,0.10), 0 4px 14px rgba(0,0,0,0.04);
  border-color: rgba(229,67,18,0.18);
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity .25s;
  z-index: 0;
}
.highlight:hover::before { opacity: 0.45; }
.highlight > * { position: relative; z-index: 1; }
.highlight__icon {
  width: 56px; height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(229,67,18,0.22);
}
.highlight__icon svg { width: 26px; height: 26px; }
.highlight h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.highlight p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.highlight__num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(10,10,10,0.18);
  letter-spacing: 0.08em;
}

/* ===== Two-column split (Growth Strategy / Revenue) =============== */
.split {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split--rev .split__visual { order: 2; }
}
.split__title {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 18px 0 18px;
}
.split__lede {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.split__visual {
  position: relative;
}
.split__image {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__image--wide { aspect-ratio: 4/3; }

/* mini-priorities */
.priorities {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.priorities li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  transition: background .2s, border-color .2s;
}
.priorities li:hover {
  background: var(--color-soft-peach);
  border-color: rgba(229,67,18,0.20);
}
.priorities__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.priorities h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 4px 0 6px;
}
.priorities p { font-size: 14.5px; margin: 0; }

/* check-list (from DS §5.8) */
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list--cols { grid-template-columns: 1fr; }
@media (min-width: 560px) { .check-list--cols { grid-template-columns: 1fr 1fr; } }
.check-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 600; color: var(--color-text-primary);
}
.check-list__bullet {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ===== Timeline =================================================== */
.timeline-section { background: var(--color-soft-peach); }
.timeline-section .blob {
  position: absolute;
  left: -200px; top: 80px;
  width: 540px; height: 540px;
  background: var(--color-blob-peach);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  filter: blur(6px);
  z-index: 0;
  opacity: 0.7;
}
.timeline-section .container { position: relative; z-index: 1; }

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 28px 40px; }
}

.tl-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 30px;
  border: 1px solid rgba(10,10,10,0.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.tl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(229,67,18,0.10);
}
.tl-card__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tl-card__date.is-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.tl-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.tl-card p { font-size: 15px; margin: 0; line-height: 1.6; }
.tl-card ul.bullets {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid; gap: 10px;
}
.tl-card ul.bullets li {
  display: flex; gap: 12px;
  font-size: 14.5px;
  color: var(--color-text-secondary);
}
.tl-card ul.bullets li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.tl-card--span2 { grid-column: 1 / -1; }
.tl-card__deco {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(closest-side, rgba(229,67,18,0.10), rgba(229,67,18,0));
  border-radius: 50%;
}

/* ===== SEC / Filings ============================================== */
.filings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) { .filings-grid { grid-template-columns: repeat(3, 1fr); } }
.filings-grid li {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filings-grid li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Live SEC EDGAR cards — extended layout that replaces the static bullets */
.filings-heading {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 14px;
  font-weight: 700;
}
.filings-block {
  max-width: 1000px;
  margin: 28px auto 0;
}
.filings-grid--live {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px) {
  .filings-grid--live { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.filings-grid--live li { padding: 0; transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease; }
.filings-grid--live li::before { display: none; }
.filings-grid--live li:hover {
  border-color: rgba(229, 67, 18, 0.45);
  box-shadow: 0 12px 24px rgba(229, 67, 18, 0.08);
  transform: translateY(-1px);
}
.filing-card__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.filing-card__form {
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 56px;
  text-align: center;
}
.filing-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.filing-card__body strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}
.filing-card__body time {
  font-size: 12.5px;
  color: var(--color-text-secondary);
  font-weight: 500;
}
.filing-card__arrow {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.filing-card__link:hover .filing-card__arrow { transform: translate(2px, -2px); }
.filings-empty {
  background: #fff;
  border: 1px dashed rgba(10,10,10,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--color-text-secondary);
}
.filings-empty a { color: var(--color-primary); font-weight: 600; }

.callout {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 28px 14px 14px;
  background: var(--color-primary);
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 16px 32px rgba(229,67,18,0.22);
  margin-top: 28px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.callout:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(229,67,18,0.30); }
.callout__icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.callout__icon svg { width: 22px; height: 22px; }

/* Stock card */
.stock-card {
  background: linear-gradient(180deg, #fff 0%, var(--color-soft-peach) 100%);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.stock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.stock-ticker {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.stock-ticker strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.stock-ticker span {
  font-size: 13px;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stock-frame {
  width: 100%;
  height: 360px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.06);
}
.stock-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== Contact ==================================================== */
.contact-section { background: var(--color-soft-peach); }
.contact-grid {
  display: grid;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.contact-card {
  background: #fff;
  border-radius: 26px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.contact-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  font-weight: 700;
  margin: 0 0 12px;
}
.contact-card a, .contact-card p { font-size: 17px; font-weight: 600; color: var(--color-text-primary); }
.contact-card a { color: var(--color-primary); }
.contact-card a:hover { text-decoration: underline; }
.contact-card + .contact-card { margin-top: 14px; }
.contact-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row:first-child { padding-top: 0; }
.contact-row__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--color-soft-peach);
  color: var(--color-primary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.contact-row__icon svg { width: 22px; height: 22px; }
.contact-row__body strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-row__body a, .contact-row__body span { font-size: 17px; font-weight: 600; color: var(--color-text-primary); }
.contact-row__body a:hover { color: var(--color-primary); }

.contact-illu {
  background: var(--color-banner-peach);
  border-radius: 26px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.contact-illu h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  line-height: 1.1;
  text-wrap: balance;
}
.contact-illu p { color: var(--color-text-primary); font-size: 16px; max-width: 360px; margin: 0; }
.contact-illu .sparkle--lg { right: 40px; top: 36px; }

/* ===== Footer ===================================================== */
.footer {
  background: var(--color-bg-footer);
  color: var(--color-text-on-dark);
  padding: 80px 0 0;
  text-align: center;
}
.footer .logo { color: #fff; font-size: 28px; }
.footer__tagline {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin: 14px 0 36px;
}
.footer__divider {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.6;
}
.footer__nav {
  display: flex;
  gap: 44px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 36px 0;
}
.footer__nav a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--color-primary); }
.footer__nav a.is-active { color: var(--color-primary); }
.footer__bar {
  background: var(--color-primary);
  color: #fff;
  font-size: 13.5px;
  text-align: left;
}
.footer__bar .container {
  height: 44px;
  display: flex;
  align-items: center;
}

/* ===== Decoration utilities ===================================== */
.decor-wrap { position: relative; }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.fade-up.is-visible { opacity: 1; transform: none; }

/* Smaller helpers */
.muted { color: var(--color-text-secondary); }
hr.rule {
  border: none;
  height: 1px;
  background: rgba(10,10,10,0.08);
  margin: 28px 0;
}

/* Disclaimer */
.disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  background: var(--color-soft-peach);
  padding: 18px 22px;
  border-radius: 14px;
  margin-top: 24px;
  border-left: 3px solid var(--color-primary);
}
