/* =====================================================================
   ZARA MEDIA — site styles (Playful Studio v4, locked 2026-05-04)
   Pale periwinkle background. Hot pink + bright blue accents.
   Outfit (rounded geometric, 400-900). Iridescent chrome sun mark.
   Scattered dots, rounded blobs, soft pastel section bands, big pills.
   ===================================================================== */

:root {
  --periwinkle:  #e0e1ff;
  --periwinkle-2:#cdcffb;
  --blush:       #ffe0ec;
  --blush-2:     #ffc6da;
  --butter:      #fff3c8;
  --butter-2:    #ffe9a3;
  --canvas:      #ffffff;
  --ink:         #0e1230;
  --ink-soft:    #2a2f55;
  --mute:        #6b6f96;
  --pink:        #ff3d77;
  --pink-deep:   #e8245d;
  --blue:        #3d7fff;
  --blue-deep:   #2462e6;
  --rule:        rgba(14, 18, 48, 0.10);
  --rule-strong: rgba(14, 18, 48, 0.20);
  --shadow-sm:   0 4px 14px -6px rgba(14, 18, 48, 0.12);
  --shadow-md:   0 18px 40px -20px rgba(14, 18, 48, 0.18);
  --shadow-lg:   0 30px 70px -30px rgba(14, 18, 48, 0.22);
  --ease:        cubic-bezier(.2,.7,.2,1);
  --ease-spring: cubic-bezier(.5,1.4,.4,1);
}

/* ─── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--periwinkle); color: var(--ink); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16.5px; line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--pink); color: var(--canvas); }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ─── Type scale ───────────────────────────────────────────────────────── */
.display, h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-weight: 900;
}
h1 { font-size: clamp(40px, 6vw, 88px);  line-height: 0.96; letter-spacing: -0.035em; }
h2 { font-size: clamp(34px, 5vw, 72px);  letter-spacing: -0.032em; line-height: 0.98; }
h3 { font-size: clamp(22px, 2vw, 30px);  letter-spacing: -0.022em; line-height: 1.10; font-weight: 700; }

p { color: var(--ink-soft); font-weight: 400; }
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 500;
}

/* ─── Container ────────────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 700px) { .container { padding: 0 22px; } }

/* ─── Decorative motion + circles ──────────────────────────────────────── */
.deco-ring, .deco-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.deco-ring { border: 2px solid currentColor; }
.deco-dot  { background: currentColor; }
.float-1 { animation: float 7s ease-in-out infinite; }
.float-2 { animation: float 9s ease-in-out infinite reverse; }
.float-3 { animation: float 11s ease-in-out infinite; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ─── Header (sticky pill nav) ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 16px; z-index: 60;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  /* frosted-glass pill so brand stays readable when content scrolls underneath */
  background: rgba(224, 225, 255, 0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(14, 18, 48, 0.08);
  border-radius: 999px;
  padding: 8px 12px 8px 20px;
  box-shadow: 0 6px 28px -14px rgba(14, 18, 48, 0.18);
}
@media (max-width: 700px) {
  .site-header { top: 12px; }
  .header-inner { padding: 6px 8px 6px 14px; gap: 10px; }
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
}
.brand .mark {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .5s var(--ease-spring);
  filter: drop-shadow(0 2px 8px rgba(255, 61, 119, 0.20));
  animation: chromeShimmer 5s ease-in-out infinite;
}
.brand:hover .mark { transform: rotate(45deg) scale(1.08); }
.brand .mark svg { width: 100%; height: 100%; display: block; }
@keyframes chromeShimmer {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(255, 61, 119, 0.22)) hue-rotate(0deg); }
  50%      { filter: drop-shadow(0 4px 14px rgba(199, 104, 255, 0.30)) hue-rotate(28deg); }
}

.brand .wordmark {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  padding-top: 0.28em;          /* headroom for the tittle-sun above the I */
}
.brand .wordmark .i-sun {
  position: relative;
  display: inline-block;
}
.brand .wordmark .i-sun::before {
  content: "";
  position: absolute;
  top: -0.36em; left: 50%;
  transform: translateX(-50%);
  width: 0.62em; height: 0.62em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><linearGradient id='c' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23ff3d77'/><stop offset='0.28' stop-color='%23c768ff'/><stop offset='0.55' stop-color='%233d7fff'/><stop offset='0.8' stop-color='%23bce8ff'/><stop offset='1' stop-color='%23ff3d77'/></linearGradient></defs><circle cx='30' cy='30' r='10' fill='url(%23c)'/><g stroke='url(%23c)' stroke-width='3.6' stroke-linecap='round' fill='none'><line x1='30' y1='3' x2='30' y2='13'/><line x1='30' y1='47' x2='30' y2='57'/><line x1='3' y1='30' x2='13' y2='30'/><line x1='47' y1='30' x2='57' y2='30'/><line x1='11' y1='11' x2='18' y2='18'/><line x1='42' y1='42' x2='49' y2='49'/><line x1='11' y1='49' x2='18' y2='42'/><line x1='42' y1='18' x2='49' y2='11'/></g></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 700px) {
  .brand .wordmark { font-size: 18px; }
  .brand .mark     { width: 40px; height: 40px; }
}

.brand-line {
  height: 2px; width: 80px;
  background: var(--ink);
  border-radius: 999px;
  align-self: center;
}
@media (max-width: 1100px) { .brand-line { display: none; } }

.main-nav {
  display: flex; align-items: center; gap: 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.main-nav a {
  color: var(--ink);
  transition: color .25s;
  position: relative;
}
.main-nav a:hover { color: var(--pink); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

.lang-toggle {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--canvas);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  transition: background .25s;
}
.lang-toggle:hover { background: var(--blue); }
.lang-toggle::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--canvas);
  border-radius: 50%;
  margin-right: 8px;
}

.nav-toggle {
  width: 44px; height: 44px;
  background: var(--canvas);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--pink); }
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 999px; }

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .main-nav {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 12px); left: 22px; right: 22px;
    background: var(--canvas);
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .site-header.is-open .main-nav a { padding: 14px; }
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(80px, 11vw, 180px);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  right: -120px; top: 6%;
  width: 640px; height: 640px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-2) 100%);
  border-radius: 50%;
  z-index: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-blob img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-blob::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 880px) {
  .hero-blob { width: 420px; height: 420px; right: -160px; top: 28%; }
}
.hero-butter {
  position: absolute;
  left: -180px; bottom: -120px;
  width: 420px; height: 420px;
  background: var(--butter);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; padding-top: clamp(40px, 5vw, 80px); }

.hero h1 { margin-bottom: 36px; max-width: 14ch; }
.hero h1 .pink { color: var(--pink); }
.hero h1 .blue { color: var(--blue); }
.hero h1 .amp {
  display: inline-block;
  transform: translateY(-0.04em);
  color: var(--blue);
  font-style: italic;
  font-weight: 800;
  margin: 0 0.04em;
}
.hero .lead { margin-bottom: 40px; max-width: 50ch; }

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.012em;
  transition: transform .25s var(--ease-spring), background .25s, color .25s, box-shadow .25s;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}
.pill .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: transform .25s var(--ease-spring), background .25s;
}
.pill:hover .arrow { transform: rotate(-45deg); }
.pill.primary { background: var(--ink); color: var(--canvas); }
.pill.primary:hover { background: var(--pink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pill.ghost { background: var(--canvas); color: var(--ink); border-color: var(--ink); }
.pill.ghost:hover { background: var(--ink); color: var(--canvas); transform: translateY(-2px); }
.pill.blue { background: var(--blue); color: var(--canvas); }
.pill.blue:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pill.pink { background: var(--pink); color: var(--canvas); }
.pill.pink:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-meta {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  padding-top: 28px;
  border-top: 2px dashed var(--rule-strong);
  max-width: 720px;
}
.hero-meta .pin {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
}
.hero-meta .pin .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); }
.hero-meta .pin:nth-child(2) .dot { background: var(--blue); }
.hero-meta .pin:nth-child(3) .dot { background: var(--ink); }

/* ─── Section bands ────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0;
  overflow: hidden;
}
.section.bg-blush      { background: var(--blush); }
.section.bg-butter     { background: var(--butter); }
.section.bg-canvas     { background: var(--canvas); }
.section.bg-periwinkle { background: var(--periwinkle); }
.section.bg-pink       { background: var(--pink); color: var(--canvas); }

.section.rounded-top {
  border-top-left-radius: clamp(40px, 6vw, 96px);
  border-top-right-radius: clamp(40px, 6vw, 96px);
  margin-top: -1px;
}
.section.rounded-bottom {
  border-bottom-left-radius: clamp(40px, 6vw, 96px);
  border-bottom-right-radius: clamp(40px, 6vw, 96px);
}

/* ─── Service block ────────────────────────────────────────────────────── */
.service {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) {
  .service { grid-template-columns: 1fr; gap: 40px; }
}
.service.reverse { grid-template-columns: 1fr 0.55fr; }
@media (max-width: 880px) {
  .service.reverse { grid-template-columns: 1fr; }
  .service.reverse .service-num { order: -1; }
}

.service-num {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  justify-self: center;
  align-self: center;
}
.service-num .photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-2) 100%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service.reverse .service-num .photo {
  background: linear-gradient(135deg, var(--butter) 0%, var(--butter-2) 100%);
}
.service-num .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-num .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,18,48,0) 60%, rgba(14,18,48,0.10) 100%);
  pointer-events: none;
}
.service-num .num-badge {
  position: absolute;
  width: 42%; height: 42%;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--canvas);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-num .num-badge.pink { background: var(--pink); bottom: -4%; right: -4%; border: 8px solid var(--blush); }
.service-num .num-badge.blue { background: var(--blue); top: -4%; left: -4%; border: 8px solid var(--butter); }
.service-num .ring-deco {
  position: absolute;
  width: 72px; height: 72px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  z-index: 1;
}
.service-num .ring-deco.tl { top: -10px; left: 10%; }
.service-num .ring-deco.br { bottom: 8%; right: -10px; }

.service-content .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--canvas);
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.service-content .label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
}
.service.reverse .service-content .label::before { background: var(--blue); }
.service-content h2 { margin-bottom: 28px; }
.service-content h2 .pop { color: var(--pink); }
.service.reverse .service-content h2 .pop { color: var(--blue); }
.service-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 50ch;
  color: var(--ink-soft);
  font-weight: 500;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.service-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--canvas);
  border: 1.5px solid var(--rule-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ─── Section heading (label + h2) ─────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-heading.left { text-align: left; max-width: 50ch; }
.section-heading .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--canvas);
  border: 2px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.section-heading .label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
}
.section-heading .label.blue-dot::before { background: var(--blue); }
.section-heading h2 .pop      { color: var(--pink); }
.section-heading h2 .pop-blue { color: var(--blue); }
.section-heading p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-inline: auto;
  font-weight: 500;
}
.section-heading.left p { margin-inline: 0; }

/* ─── Principles ───────────────────────────────────────────────────────── */
.principles-list { display: grid; gap: clamp(40px, 5vw, 64px); }
.principle {
  display: grid;
  grid-template-columns: clamp(140px, 18vw, 240px) 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background: var(--canvas);
  border-radius: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
  .principle { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; text-align: left; }
}
.principle .num {
  position: relative;
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--canvas);
}
.principle:nth-child(1) .num { background: var(--pink); }
.principle:nth-child(2) .num { background: var(--blue); }
.principle:nth-child(3) .num { background: var(--ink); }
.principle:nth-child(4) .num { background: var(--pink); }
.principle h3 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 16px; line-height: 1.0; }
.principle p  { font-size: 17px; line-height: 1.6; max-width: 56ch; color: var(--ink-soft); font-weight: 500; }

/* ─── Colophon (company info card) ─────────────────────────────────────── */
.colophon {
  max-width: 880px; margin: 0 auto;
  background: var(--canvas);
  border-radius: clamp(32px, 4vw, 56px);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  position: relative;
}
.colophon::before {
  content: "";
  position: absolute;
  top: -16px; left: clamp(40px, 6vw, 80px);
  width: 32px; height: 32px;
  background: var(--pink);
  border-radius: 50%;
  border: 4px solid var(--periwinkle);
}
.colophon::after {
  content: "";
  position: absolute;
  bottom: -16px; right: clamp(40px, 6vw, 80px);
  width: 24px; height: 24px;
  background: var(--blue);
  border-radius: 50%;
  border: 4px solid var(--periwinkle);
}
.colophon dl { display: grid; gap: 0; }
.colophon dl > div {
  display: grid;
  grid-template-columns: 32px 200px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 2px dashed var(--rule);
  align-items: center;
}
.colophon dl > div:last-child { border-bottom: none; }
@media (max-width: 700px) {
  .colophon dl > div { grid-template-columns: 24px 1fr; }
  .colophon dl > div dt { grid-column: 2; }
  .colophon dl > div dd { grid-column: 1 / -1; padding-left: 42px; }
}
.colophon .marker { width: 14px; height: 14px; border-radius: 50%; margin: 0 auto; }
.colophon dl > div:nth-child(1) .marker { background: var(--pink); }
.colophon dl > div:nth-child(2) .marker { background: var(--blue); }
.colophon dl > div:nth-child(3) .marker { background: var(--ink); }
.colophon dl > div:nth-child(4) .marker { background: var(--pink); }
.colophon dl > div:nth-child(5) .marker { background: var(--blue); }
.colophon dl > div:nth-child(6) .marker { background: var(--ink); }
.colophon dt {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.colophon dd {
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.colophon dd a { color: var(--pink); border-bottom: 2px solid var(--pink); padding-bottom: 1px; }
.colophon dd a:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* ─── Contact band ─────────────────────────────────────────────────────── */
.contact-band {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.contact-band .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--canvas);
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.contact-band .label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--canvas); }
.contact-band h2 {
  color: var(--canvas);
  margin-bottom: 40px;
  font-size: clamp(56px, 10vw, 152px);
  line-height: 0.92;
}
.contact-band h2 .pop { color: var(--butter); }
.contact-band p {
  color: var(--canvas); font-size: 18px;
  max-width: 50ch; margin: 0 auto 32px;
  opacity: 0.92; font-weight: 500;
}
.contact-band .pill { font-size: 18px; padding: 22px 32px; }

.contact-blob-1 {
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--butter) 0%, var(--butter-2) 100%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.95;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-blob-1 img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.contact-blob-1::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  pointer-events: none;
}
.contact-blob-2 {
  position: absolute;
  bottom: -120px; right: -100px;
  width: 280px; height: 280px;
  background: var(--periwinkle);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}
.contact-band .container { position: relative; z-index: 2; }

/* ─── Long-form / legal pages ──────────────────────────────────────────── */
.narrow {
  max-width: 760px;
  margin: 0 auto;
}
.narrow h2 { font-size: clamp(28px, 3vw, 38px); margin: clamp(40px, 5vw, 64px) 0 16px; line-height: 1.1; }
.narrow h2:first-child { margin-top: 0; }
.narrow h3 { font-size: clamp(20px, 2vw, 24px); margin: clamp(28px, 3vw, 40px) 0 12px; }
.narrow p  { margin-bottom: 14px; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }
.narrow p strong { color: var(--ink); }
.narrow a {
  color: var(--pink);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 1px;
}
.narrow a:hover { color: var(--blue); border-bottom-color: var(--blue); }
.narrow ul, .narrow ol {
  margin: 12px 0 18px 0;
  padding-left: 24px;
}
.narrow ul li, .narrow ol li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

/* ─── Page hero (for sub-pages — smaller than home hero) ───────────────── */
.page-hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 112px);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--canvas);
  border: 2px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.page-hero .label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.page-hero h1 { margin-bottom: 24px; max-width: 16ch; font-size: clamp(36px, 5.4vw, 80px); }
.page-hero h1 .pop      { color: var(--pink); }
.page-hero h1 .pop-blue { color: var(--blue); }
.page-hero .lead { font-size: clamp(17px, 1.4vw, 21px); max-width: 56ch; }
.page-hero .deco-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.page-hero .deco-blob.tr {
  right: -160px; top: 0;
  width: 380px; height: 380px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-2) 100%);
}
.page-hero .deco-blob.bl {
  left: -120px; bottom: -100px;
  width: 280px; height: 280px;
  background: var(--butter);
}
@media (max-width: 700px) {
  .page-hero .deco-blob.tr { width: 200px; height: 200px; right: -90px; }
  .page-hero .deco-blob.bl { width: 160px; height: 160px; left: -70px; bottom: -60px; }
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(224, 225, 255, 0.74);
  padding: clamp(64px, 8vw, 104px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  padding-bottom: 56px;
  border-bottom: 2px dashed rgba(224, 225, 255, 0.16);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 48px; } }

.footer-brand {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.footer-brand .mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 61, 119, 0.30));
  animation: chromeShimmer 5s ease-in-out infinite;
}
.footer-brand .mark svg { width: 100%; height: 100%; }
.footer-brand .wordmark {
  color: var(--canvas);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.005em;
  line-height: 1;
  padding-top: 0.28em;
}
.footer-brand .wordmark .i-sun {
  position: relative;
  display: inline-block;
}
.footer-brand .wordmark .i-sun::before {
  content: "";
  position: absolute;
  top: -0.36em; left: 50%;
  transform: translateX(-50%);
  width: 0.62em; height: 0.62em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><defs><linearGradient id='c' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23ff3d77'/><stop offset='0.28' stop-color='%23c768ff'/><stop offset='0.55' stop-color='%233d7fff'/><stop offset='0.8' stop-color='%23bce8ff'/><stop offset='1' stop-color='%23ff3d77'/></linearGradient></defs><circle cx='30' cy='30' r='10' fill='url(%23c)'/><g stroke='url(%23c)' stroke-width='3.6' stroke-linecap='round' fill='none'><line x1='30' y1='3' x2='30' y2='13'/><line x1='30' y1='47' x2='30' y2='57'/><line x1='3' y1='30' x2='13' y2='30'/><line x1='47' y1='30' x2='57' y2='30'/><line x1='11' y1='11' x2='18' y2='18'/><line x1='42' y1='42' x2='49' y2='49'/><line x1='11' y1='49' x2='18' y2='42'/><line x1='42' y1='18' x2='49' y2='11'/></g></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.site-footer p { font-size: 14.5px; line-height: 1.75; color: rgba(224, 225, 255, 0.74); }
.site-footer p strong { color: var(--canvas); display: block; margin-bottom: 8px; font-weight: 700; font-size: 15px; }
.site-footer a { color: var(--blush-2); }
.site-footer a:hover { color: var(--canvas); }

.footer-col h4 {
  color: var(--canvas);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col h4::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.footer-col:nth-child(3) h4::before { background: var(--blue); }
.footer-col ul { list-style: none; display: grid; gap: 14px; }
.footer-col a { color: rgba(224, 225, 255, 0.86); }
.footer-col a:hover { color: var(--canvas); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(224, 225, 255, 0.5);
  letter-spacing: 0.04em;
}
.footer-bottom .lang { display: inline-flex; gap: 6px; }
.footer-bottom .lang a {
  background: rgba(224, 225, 255, 0.10);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(224, 225, 255, 0.86);
}
.footer-bottom .lang a:hover { background: var(--pink); color: var(--canvas); }
.footer-bottom .lang a[aria-current="page"] { background: var(--canvas); color: var(--ink); }

/* ─── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
