/* ═══════════════════════════════════════════════════════════
   Emma's Play World — stylesheet
   Palette matched to the official logo: hot pink, purple,
   sunshine gold, sky blue, on soft pink + deep plum.
   "Love Creates Harmony."
   ═══════════════════════════════════════════════════════════ */

/* ── tokens ── */
:root {
  --sky:    #46C6EE;   /* sky blue accent */
  --coral:  #FF6FB0;   /* soft pink */
  --gold:   #FFC93C;   /* sunshine gold (crown + letters) */
  --pink:   #FF3EA5;   /* hot pink — primary */
  --purple: #A24CE0;   /* purple (letters) */
  --navy:   #3A1440;   /* deep plum — dark ground + text */

  /* light theme (default) */
  --bg:        #FFF3FA;
  --bg-tint:   #FBE7F4;
  --surface:   #FFFFFF;
  --ink:       var(--navy);
  --ink-soft:  #7A5E77;
  --line:      #F4DCEC;
  --accent:    var(--pink);
  --accent-ink:#C71E7E;

  --font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1160px;
  --r: 18px;
  --r-lg: 28px;
  --shadow: 0 6px 26px rgba(122, 30, 90, .12);
  --shadow-lg: 0 20px 54px rgba(122, 30, 90, .20);
  --t: .25s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
  --bg:        #1B0E20;
  --bg-tint:   #271430;
  --surface:   #2A1531;
  --ink:       #F7E9F4;
  --ink-soft:  #C9A8C4;
  --line:      #3E2145;
  --accent:    #FF6FC0;
  --accent-ink:#FFB3DE;
  --shadow: 0 6px 26px rgba(0, 0, 0, .45);
  --shadow-lg: 0 20px 54px rgba(0, 0, 0, .55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #1B0E20;
    --bg-tint:   #271430;
    --surface:   #2A1531;
    --ink:       #F7E9F4;
    --ink-soft:  #C9A8C4;
    --line:      #3E2145;
    --accent:    #FF6FC0;
    --accent-ink:#FFB3DE;
    --shadow: 0 6px 26px rgba(0, 0, 0, .45);
    --shadow-lg: 0 20px 54px rgba(0, 0, 0, .55);
  }
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.skip-link:focus { left: 12px; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

/* ── type ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .4em; font-weight: 800; letter-spacing: -.01em; }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 22ch; }
.h2--light { color: #fff; }

.kicker { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); margin: 0 0 .9rem; }
[data-theme="dark"] .kicker { color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .kicker { color: var(--accent); } }
.kicker--light { color: rgba(255,255,255,.85); }
.kicker--center { text-align: center; }

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 60ch; margin: 0 0 1rem; }
.lead--light { color: rgba(255,255,255,.92); }

.eyebrow { display: inline-flex; align-items: center; gap: .5em; font-size: .85rem; font-weight: 600; letter-spacing: .03em; color: var(--accent-ink); margin: 0 0 1.1rem; background: var(--bg-tint); padding: 7px 14px; border-radius: 999px; }
[data-theme="dark"] .eyebrow { color: var(--accent); }
.spark { color: var(--coral); }

/* ── buttons ── */
.btn {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 26px; border-radius: 999px; border: 2px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--accent); --btn-fg: #fff; --btn-bd: var(--accent); }
.btn--coral { --btn-bg: var(--coral); --btn-fg: #fff; --btn-bd: var(--coral); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #4A3400; --btn-bd: var(--gold); }
.btn--ghost { --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--accent); }
.btn--sm { padding: 9px 18px; font-size: .92rem; }

/* ── brand mark ── */
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.brand__text { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand__text em { font-style: normal; color: var(--accent); }
.brand__mark { display: inline-grid; place-items: center; flex-shrink: 0; }
.mk-heart { fill: var(--coral); }
.mk-line { fill: none; stroke: #fff; stroke-width: 1.1; opacity: .9; }
[data-theme="dark"] .mk-line { stroke: var(--surface); }
.mk-star { fill: var(--gold); }

/* ── nav ── */
.nav { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(14px) saturate(1.4); border-bottom: 1px solid transparent; transition: border-color var(--t), background var(--t); }
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.nav__links { display: flex; gap: 20px; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink-soft); transition: color var(--t); }
.nav__links a:hover { color: var(--accent); }
.nav__tools { display: flex; align-items: center; gap: 10px; }
.langsel { font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: var(--ink); background: transparent; border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 30px 7px 14px; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' stroke='%23A24CE0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; transition: border-color var(--t); }
.langsel:hover { border-color: var(--accent); }
.langsel:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.langsel option { color: #222; }

/* logo image mark */
.brand__logo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 2px 8px rgba(122,30,90,.25); }
.brand__mark--sm .brand__logo, .footer__brand .brand__logo { width: 28px; height: 28px; }
.iconbtn { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; transition: border-color var(--t), color var(--t); }
.iconbtn:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 1040px) { .nav__links { display: none; } }
@media (max-width: 560px) { .nav__tools .btn { display: none; } }

/* ── hero ── */
.hero { position: relative; padding: clamp(44px, 7vw, 84px) 0 clamp(52px, 8vw, 92px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(48% 44% at 12% 12%, rgba(46,155,230,.16), transparent 70%),
    radial-gradient(44% 40% at 92% 18%, rgba(255,111,94,.14), transparent 70%),
    radial-gradient(50% 50% at 72% 96%, rgba(255,200,61,.12), transparent 70%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }
.hero__title { font-size: clamp(2.4rem, 5.6vw, 4.4rem); margin-bottom: .7rem; max-width: 16ch; }
.hero__tags { display: flex; gap: 9px; flex-wrap: wrap; margin: 0 0 1.4rem; }
.pill { padding: 7px 15px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: #fff; }
.pill--sky { background: var(--sky); }
.pill--gold { background: var(--gold); color: #4A3400; }
.pill--coral { background: var(--coral); }
.pill--pink { background: var(--pink); color: #7A2338; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--ink-soft); max-width: 54ch; margin: 0 0 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1rem; }
.hero__note { font-size: .87rem; color: var(--ink-soft); margin: 0; }

.hero__art { position: relative; }
.hero__photo { aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(150deg, var(--sky), var(--coral) 60%, var(--gold)); box-shadow: var(--shadow-lg); padding: 5px; }
.hero__photo-inner { width: 100%; height: 100%; border-radius: calc(var(--r-lg) - 6px); background: repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 14px, rgba(255,255,255,.04) 14px 28px); display: grid; place-items: center; gap: 8px; text-align: center; color: rgba(255,255,255,.95); font-family: var(--font-display); font-weight: 700; padding: 20px; }
.hero__photo-play { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--sky); font-size: 1.4rem; padding-left: 5px; }

.float { position: absolute; font-size: 2rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.15)); }
.float--star  { color: var(--gold);  top: -14px; right: 8%; font-size: 2.4rem; }
.float--heart { color: var(--coral); bottom: 10%; left: -12px; font-size: 2rem; }
.float--globe { bottom: -12px; right: 18%; font-size: 2rem; }
.float--note  { color: var(--sky); top: 18%; left: -16px; font-size: 1.7rem; }
@media (prefers-reduced-motion: no-preference) {
  .float { animation: float 6s ease-in-out infinite; }
  .float--heart { animation-delay: 1s; }
  .float--globe { animation-delay: 2s; }
  .float--note  { animation-delay: 3s; }
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(8deg); } }

/* ── movement band ── */
.band { background: var(--navy); color: #fff; text-align: center; padding: 30px 0; }
[data-theme="dark"] .band { background: #140A18; border-block: 1px solid var(--line); }
.band__phrase { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); margin: 0; background: linear-gradient(100deg, var(--gold), var(--pink) 55%, var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.band__sub { margin: .3rem 0 0; color: rgba(255,255,255,.75); font-size: 1.02rem; letter-spacing: .02em; }

/* ── sections ── */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--tint { background: var(--bg-tint); transition: background var(--t); }

/* ── meet emma ── */
.about { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; gap: 28px; } }
.about__ph { aspect-ratio: 1; border-radius: var(--r-lg); background: linear-gradient(140deg, var(--sky), var(--coral)); display: grid; place-items: center; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #fff; box-shadow: var(--shadow-lg); }
.about__copy p { color: var(--ink-soft); max-width: 62ch; }
.badges { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.badge { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow); }

/* ── manifesto ── */
.manifesto { background: var(--surface); border-block: 1px solid var(--line); padding: clamp(52px, 7vw, 88px) 0; text-align: center; }
.manifesto__quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.8vw, 2rem); line-height: 1.4; max-width: 24ch; margin: 0 auto; color: var(--ink); }
@media (min-width: 700px) { .manifesto__quote { max-width: 30ch; } }
.manifesto__sign { margin-top: 1.4rem; font-weight: 600; color: var(--coral); font-family: var(--font-display); font-size: 1.1rem; }

/* ── the four worlds ── */
.worlds { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 2.6rem; }
.world { position: relative; padding: 32px 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t); overflow: hidden; }
.world::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; }
.world--dance::before { background: var(--sky); }
.world--create::before { background: var(--gold); }
.world--culture::before { background: var(--coral); }
.world--kind::before { background: var(--pink); }
.world:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.world__emoji { font-size: 2.6rem; display: block; margin-bottom: .5rem; }
.world h3 { font-size: 1.3rem; }
.world p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ── reels ── */
.reels { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 2.4rem; }
.reel { position: relative; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: transform var(--t); }
.reel:hover { transform: translateY(-5px); }
.reel__thumb { aspect-ratio: 9 / 16; border-radius: var(--r); overflow: hidden; display: grid; place-items: center; box-shadow: var(--shadow); }
.reel__thumb--1 { background: linear-gradient(160deg, var(--sky), var(--navy)); }
.reel__thumb--2 { background: linear-gradient(160deg, var(--coral), var(--sky)); }
.reel__thumb--3 { background: linear-gradient(160deg, var(--gold), var(--coral)); }
.reel__thumb--4 { background: linear-gradient(160deg, var(--pink), var(--sky)); }
.reel__thumb--5 { background: linear-gradient(160deg, var(--sky), var(--gold)); }
.reel__thumb--6 { background: linear-gradient(160deg, var(--navy), var(--coral)); }
.reel__play { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.9); color: var(--sky); font-size: 1.1rem; padding-left: 4px; transition: transform var(--t); }
.reel:hover .reel__play { transform: scale(1.12); }
.reel__tag { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.35); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.reel__title { font-size: .92rem; font-weight: 600; color: var(--ink-soft); }

/* ── featured video ── */
.feature-video { display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: 34px; align-items: center; margin: 2.4rem 0 1rem; }
@media (max-width: 720px) { .feature-video { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.feature-video__frame { width: 100%; max-width: 300px; aspect-ratio: 9 / 16; border-radius: var(--r-lg); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); }
.feature-video__frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-video__badge { display: inline-block; background: var(--gold); color: #4A3400; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.feature-video__meta h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: .5rem 0 .4rem; }
.feature-video__meta p { color: var(--ink-soft); max-width: 46ch; }

/* ── video grid ── */
.vidgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin: 2.4rem 0 1.4rem; }
.vidcard { margin: 0; }
.vidcard__frame { aspect-ratio: 9 / 16; border-radius: var(--r); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.vidcard__frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vidcard figcaption { margin-top: 10px; font-family: var(--font-display); font-weight: 700; font-size: .98rem; text-align: center; color: var(--ink); }
.vidgrid__cta { text-align: center; margin: 0 0 .5rem; }

/* ── harmony challenge ── */
.challenge { background: var(--sky); position: relative; overflow: hidden; }
[data-theme="dark"] .challenge { background: #34174A; }
.challenge::after { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(40% 60% at 88% 0%, rgba(255,111,94,.5), transparent 70%), radial-gradient(40% 55% at 4% 100%, rgba(255,200,61,.4), transparent 70%); }
.challenge .wrap { position: relative; z-index: 1; }
.challenge__head { max-width: 62ch; }
.counter { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 2.4rem 0 .6rem; max-width: 620px; }
@media (max-width: 520px) { .counter { grid-template-columns: 1fr; } }
.counter__item { background: rgba(255,255,255,.14); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); border-radius: var(--r); padding: 22px; text-align: center; color: #fff; }
.counter__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1; }
.counter__label { font-size: .84rem; opacity: .9; }
.counter__note { color: rgba(255,255,255,.85); font-size: .86rem; margin: 0 0 1.8rem; }
.challenge__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── portfolio ── */
.portfolio { display: grid; grid-template-columns: 340px 1fr; gap: 24px; margin-top: 2.6rem; align-items: start; }
@media (max-width: 860px) { .portfolio { grid-template-columns: 1fr; } }
.modelcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
.modelcard h3 { font-size: 1.2rem; }
.modelcard__grid { margin: 0; display: grid; gap: 14px; }
.modelcard__grid div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.modelcard__grid dt { margin: 0; font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.modelcard__grid dd { margin: 0; font-size: .9rem; font-weight: 600; text-align: right; }
.offer { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.offer__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); }
.offer__item h3 { font-size: 1.12rem; }
.offer__item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ── parent & safety ── */
.safety__intro { max-width: 64ch; }
.rules { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 760px) { .rules { grid-template-columns: 1fr; } }
.rules li { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px 18px 46px; font-size: .95rem; color: var(--ink-soft); box-shadow: var(--shadow); }
.rules li::before { content: "🛡"; position: absolute; left: 16px; top: 16px; font-size: 1.1rem; }
.promise { margin-top: 24px; background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 32px 34px; }
[data-theme="dark"] .promise { background: #140A18; border: 1px solid var(--line); }
.promise__title { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--gold); margin: 0 0 .6rem; }
.promise p { margin: 0; color: rgba(255,255,255,.9); max-width: 70ch; }

/* ── contact form ── */
.contact { max-width: 780px; }
.cform { margin-top: 2rem; display: grid; gap: 16px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field span { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 13px 16px; border-radius: 14px; border: 2px solid var(--line); background: var(--surface); transition: border-color var(--t); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.cform__msg { min-height: 1.4em; margin: 0; font-weight: 600; color: var(--accent-ink); }
[data-theme="dark"] .cform__msg { color: var(--accent); }

/* ── footer ── */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 52px 0 36px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.footer__brand { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.footer__tag { width: 100%; margin: .3rem 0 0; color: var(--coral); font-weight: 700; font-size: .95rem; font-family: var(--font-display); }
.footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__nav a { text-decoration: none; font-size: .9rem; color: var(--ink-soft); transition: color var(--t); }
.footer__nav a:hover { color: var(--accent); }
.footer__safe { font-size: .8rem; line-height: 1.6; color: var(--ink-soft); padding: 18px 20px; border-radius: var(--r); background: var(--bg-tint); border: 1px solid var(--line); margin: 0 0 20px; }
.footer__legal { font-size: .82rem; color: var(--ink-soft); margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.footer__sep { opacity: .5; }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__social a { text-decoration: none; font-size: .9rem; font-weight: 600; color: var(--ink-soft); border: 1.5px solid var(--line); padding: 8px 16px; border-radius: 999px; transition: border-color var(--t), color var(--t); }
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }

/* ── real photos (drop into /images) ── */
.ph-img { position: absolute; object-fit: cover; z-index: 2; }
.hero__photo { position: relative; }
.hero__photo .ph-img { inset: 5px; width: calc(100% - 10px); height: calc(100% - 10px); border-radius: calc(var(--r-lg) - 6px); }
.about__ph { position: relative; overflow: hidden; }
.about__ph .ph-img { inset: 0; width: 100%; height: 100%; border-radius: var(--r-lg); }

/* ── follow ── */
.follow { background: var(--navy); color: #fff; padding: clamp(40px, 6vw, 68px) 0; }
[data-theme="dark"] .follow { background: #140A18; border-block: 1px solid var(--line); }
.follow__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.follow__handle { color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: .5rem 0 0; }
.follow__links { display: flex; gap: 12px; flex-wrap: wrap; }
.social__btn { display: inline-flex; align-items: center; gap: .5em; text-decoration: none; font-weight: 600; font-size: 1rem; color: #fff; padding: 14px 24px; border-radius: 999px; border: 2px solid rgba(255,255,255,.32); transition: transform var(--t), border-color var(--t), background var(--t); }
.social__btn:hover { transform: translateY(-2px); border-color: #fff; background: rgba(255,255,255,.08); }
