/* ==========================================================================
   Fuxia Mariposa - design system
   ========================================================================== */

/* ------------------------------ reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* ------------------------------ tokens --------------------------------- */
:root {
    --ink:        #241c29;
    --ink-soft:   #564c5c;
    --muted:      #8b8090;
    --cream:      #fdf9fb;
    --paper:      #ffffff;
    --line:       rgba(36, 28, 41, .09);
    --fuxia:      #c9286f;
    --fuxia-2:    #ea5a95;
    --viola:      #6d4fb0;
    --verde:      #2f6b3f;
    --blu:        #2f5fae;
    --gold:       #c8a24a;
    --gold-2:     #e6c877;
    --radius:     24px;
    --radius-sm:  15px;
    --radius-xs:  10px;
    --shadow-sm:  0 10px 24px -14px rgba(60, 20, 50, .28);
    --shadow:     0 34px 70px -34px rgba(60, 20, 50, .38);
    --shadow-lg:  0 50px 90px -40px rgba(60, 20, 50, .45);
    --maxw:       1220px;
    --gutter:     clamp(1.1rem, 4vw, 2.5rem);
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --header-h:   76px;
}

/* ------------------------------ base ----------------------------------- */
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
p { color: var(--ink-soft); }
strong { font-weight: 600; }
em { font-style: italic; }

::selection { background: rgba(201, 40, 111, .18); }

.container { width: min(100% - (var(--gutter) * 2), var(--maxw)); margin-inline: auto; }
.container--narrow { max-width: 860px; }

.section { padding: clamp(3.6rem, 8vw, 7rem) 0; position: relative; }
.section--soft { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.section__head { max-width: 760px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section__lead { font-size: 1.08rem; }

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .72rem;
    font-weight: 500;
    color: var(--fuxia);
    margin-bottom: .9rem;
}
.muted { color: var(--muted); }
.mt { margin-top: 3rem; }

/* ------------------------------ utilities ------------------------------ */
.visually-hidden {
    position: absolute !important; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: -100px; left: 1rem; z-index: 200;
    background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 12px 12px;
    transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.linklike {
    font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 3px;
    text-decoration-color: rgba(201, 40, 111, .4); background: none; padding: 0;
}
.linklike:hover { color: var(--fuxia); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ico { flex: none; }
.ico--sm { width: 16px; height: 16px; }
.ico--xs { width: 13px; height: 13px; }
:focus-visible { outline: 3px solid rgba(201, 40, 111, .55); outline-offset: 3px; border-radius: 6px; }

/* ------------------------------ buttons -------------------------------- */
.btn {
    --btn-bg: var(--ink);
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .82rem 1.5rem;
    border-radius: 999px;
    font-weight: 500; font-size: .95rem; letter-spacing: .01em;
    background: var(--btn-bg); color: #fff;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(120deg, var(--fuxia) 0%, var(--fuxia-2) 55%, var(--viola) 130%); box-shadow: 0 16px 34px -18px rgba(201, 40, 111, .8); }
.btn--ghost { background: rgba(255,255,255,.65); color: var(--ink); border-color: var(--line); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: rgba(201,40,111,.4); color: var(--fuxia); }
.btn--soft { background: var(--soft, #fbe9f2); color: var(--accent, var(--fuxia)); }
.btn--youtube { background: #e62117; }
.btn--youtube:hover { background: #c81e15; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .6rem 1.05rem; font-size: .85rem; }
.icon-btn {
    display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: var(--soft, #fbe9f2); color: var(--accent, #25d366);
    transition: transform .25s ease, background .25s ease;
}
.icon-btn:hover { transform: translateY(-2px) scale(1.04); }

/* ------------------------------ orbs bg -------------------------------- */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.orb--1 { width: 42vw; height: 42vw; background: #f5a9cf; top: -12vw; left: -8vw; animation: drift 26s ease-in-out infinite; }
.orb--2 { width: 34vw; height: 34vw; background: #c9b6f2; top: 30%; right: -12vw; animation: drift 32s ease-in-out infinite reverse; }
.orb--3 { width: 30vw; height: 30vw; background: #b7e3c2; bottom: -10vw; left: 18%; animation: drift 30s ease-in-out infinite; }
.orb--4 { width: 26vw; height: 26vw; background: #adc8f0; bottom: 12%; right: 20%; animation: drift 36s ease-in-out infinite reverse; }
@keyframes drift {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(4vw, -3vw, 0) scale(1.08); }
}

/* ------------------------------ header --------------------------------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-stuck {
    background: rgba(253, 249, 251, .82);
    backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: 0 10px 30px -22px rgba(60, 20, 50, .5);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__butterfly { width: 42px; height: auto; filter: drop-shadow(0 6px 12px rgba(201,40,111,.3)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 600; color: var(--ink); }
.brand__name em { font-style: italic; color: var(--fuxia); }
.brand__sub { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav > ul { display: flex; align-items: center; gap: .35rem; }
.nav > ul a {
    position: relative; display: inline-block; padding: .5rem .85rem; border-radius: 999px;
    font-size: .93rem; font-weight: 400; color: var(--ink-soft); transition: color .2s ease, background .2s ease;
}
.nav > ul a:hover { color: var(--ink); background: rgba(201,40,111,.06); }
.nav > ul a.is-active { color: var(--fuxia); font-weight: 500; }
.nav > ul a.is-active::after {
    content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -2px;
    width: 5px; height: 5px; border-radius: 50%; background: var(--fuxia);
}
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: var(--ink); place-items: center; }
.nav-toggle__close { display: none; }

/* ------------------------------ hero ----------------------------------- */
.hero { position: relative; padding: calc(var(--header-h) + clamp(1.5rem, 5vw, 3.5rem)) 0 clamp(2rem, 5vw, 3.5rem); text-align: center; }
.hero__inner { position: relative; }
.hero__visual { position: relative; display: grid; place-items: center; margin-bottom: 1rem; }
.hero__halo {
    position: absolute; width: min(78vw, 620px); aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(234,90,149,.28), rgba(109,79,176,.16) 45%, transparent 70%);
    filter: blur(6px);
}
.hero__butterfly {
    position: relative; width: min(64vw, 400px); height: auto;
    filter: drop-shadow(0 34px 44px rgba(120, 30, 90, .32));
    animation: float 7s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-.5deg); }
    50% { transform: translateY(-16px) rotate(.8deg); }
}
.hero__title { position: relative; margin-top: -1rem; }
.hero__wordmark { width: min(88vw, 560px); height: auto; margin-inline: auto; filter: drop-shadow(0 12px 24px rgba(201,40,111,.16)); }
.hero__tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 3vw, 2rem); color: var(--ink); margin-top: 1rem; }
.hero__text { max-width: 620px; margin: 1rem auto 0; font-size: 1.06rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: -1.5rem; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(36,28,41,.25); border-radius: 999px; display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 999px; background: var(--fuxia); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ------------------------------ marquee -------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.6); padding: .9rem 0; }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 42s linear infinite; }
.marquee__item { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); white-space: nowrap; }
.marquee__item em { font-family: var(--font-body); font-style: normal; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fuxia); margin-left: .6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------ cards ---------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1.2rem, 3vw, 2rem); }
.cards--wide { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
    position: relative; display: flex; flex-direction: column;
    background: var(--paper); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(160deg, var(--soft), #fff 78%); }
.card__glow { position: absolute; inset: auto 10% 6% 10%; height: 55%; border-radius: 50%; background: var(--accent2); filter: blur(46px); opacity: .28; z-index: 0; }
.card__photo { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: var(--fit, contain); object-position: var(--fit-pos, bottom center); filter: drop-shadow(0 20px 26px rgba(40,15,35,.22)); transition: transform .5s ease; }
.card:hover .card__photo { transform: scale(1.03); }
.card__logo {
    position: absolute; top: 1rem; right: 1rem; width: 66px; height: 66px; padding: 10px; z-index: 2;
    object-fit: contain; background: rgba(255,255,255,.85); border-radius: 50%; box-shadow: var(--shadow-sm);
}
.card__nick {
    position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
    font-weight: 600; color: #fff; background: var(--accent); padding: .3rem .7rem; border-radius: 999px;
}
.card__body { padding: 1.3rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card__name { font-size: 1.5rem; }
.card__role { font-size: .86rem; color: var(--muted); }
.card__brand { font-size: .82rem; letter-spacing: .04em; color: var(--accent); font-weight: 500; text-transform: uppercase; }
.card__quote { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); margin: .55rem 0 .9rem; line-height: 1.4; }
.card__actions { margin-top: auto; display: flex; align-items: center; gap: .6rem; }

/* ------------------------------ split / doterra ------------------------ */
.section--doterra { background: radial-gradient(120% 120% at 15% 10%, #f3ecff 0%, #fff 45%, #fdf1f7 100%); }
.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { position: relative; }
.split__media > img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__badge {
    position: absolute; right: -1rem; bottom: -1.2rem; display: flex; gap: .6rem; align-items: center;
    background: #fff; padding: .8rem 1.1rem; border-radius: 16px; box-shadow: var(--shadow);
    font-size: .74rem; letter-spacing: .04em; line-height: 1.25; color: var(--ink-soft); text-transform: uppercase;
}
.split__badge .ico { color: var(--gold); }
.split__body h2 { margin-bottom: 1rem; }
.pillars { display: grid; gap: 1rem; margin: 1.6rem 0 2rem; }
.pillar { display: flex; gap: .9rem; align-items: flex-start; }
.pillar__ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, #f3ecff, #fdf1f7); color: var(--viola); flex: none; }
.pillar strong { display: block; font-weight: 600; }
.pillar em { display: block; font-style: normal; font-size: .92rem; color: var(--muted); }

/* ------------------------------ features ------------------------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.features--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature__ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; margin-bottom: 1rem; color: var(--c, var(--fuxia)); background: color-mix(in srgb, var(--c, var(--fuxia)) 12%, #fff); }
.feature h3, .feature__title { font-size: 1.28rem; margin-bottom: .5rem; }

/* ------------------------------ youtube -------------------------------- */
.section--youtube { background: linear-gradient(120deg, #2b1230 0%, #5a1f52 45%, #7a2a63 100%); color: #fff; overflow: hidden; }
.youtube { display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); }
.youtube__butterfly { width: 130px; height: auto; filter: drop-shadow(0 16px 26px rgba(0,0,0,.4)); animation: float 8s ease-in-out infinite; }
.youtube h2 { color: #fff; }
.youtube .eyebrow { color: var(--gold-2); }
.youtube p { color: rgba(255,255,255,.82); max-width: 56ch; }
.youtube__body { display: grid; gap: .7rem; }

/* ------------------------------ CTA ------------------------------------ */
.section--cta { padding-bottom: clamp(4rem, 9vw, 8rem); }
.cta { position: relative; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: clamp(24px, 4vw, 40px); padding: clamp(2.5rem, 6vw, 5rem) var(--gutter); box-shadow: var(--shadow); overflow: hidden; }
.cta__glow { position: absolute; inset: -30% 20% auto; height: 60%; background: radial-gradient(circle, rgba(234,90,149,.35), transparent 70%); filter: blur(40px); }
.cta h2 { position: relative; }
.cta p { position: relative; max-width: 56ch; margin: 1rem auto 0; font-size: 1.05rem; }
.cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* ------------------------------ page hero ------------------------------ */
.page-hero { padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(1.5rem, 4vw, 2.5rem); text-align: center; }
.page-hero h1 { margin-bottom: .8rem; }
.page-hero__lead { max-width: 720px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--fuxia); }
.breadcrumb .ico { transform: rotate(180deg); opacity: .5; }
.page-hero--doterra .doterra-logo { width: min(100%, 380px); margin: 1.6rem auto 0; }
.page-hero--doterra { background: radial-gradient(80% 120% at 50% 0%, #f1e9ff 0%, transparent 70%); }

/* ------------------------------ profile -------------------------------- */
.profile-hero { position: relative; padding: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem)) 0 clamp(2rem, 5vw, 4rem); overflow: hidden; }
.profile-hero__bg { position: absolute; inset: 0; z-index: -1; }
.profile-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.profile-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(253,249,251,.6), var(--cream) 92%); }
.profile-hero .breadcrumb { justify-content: flex-start; }
.profile-hero__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.profile-photo { position: relative; }
.profile-photo > img { width: 100%; max-width: 420px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(40,15,35,.28)); }
.profile-photo--cover > img { aspect-ratio: 4 / 5; object-fit: var(--fit, cover); object-position: var(--fit-pos, center); border-radius: 28px; box-shadow: var(--shadow); filter: none; }
.profile-photo--contain > img { object-fit: contain; object-position: bottom center; max-height: 620px; }
.profile-photo__badge { position: absolute; right: 4%; bottom: 4%; width: 110px; height: 110px; display: grid; place-items: center; background: rgba(255,255,255,.9); border-radius: 50%; box-shadow: var(--shadow); padding: 12px; }
.profile-photo__badge img { width: 100%; height: 100%; object-fit: contain; }
.profile-intro h1 { margin-bottom: .6rem; }
.profile-role { font-size: 1rem; letter-spacing: .04em; color: var(--accent); text-transform: uppercase; font-weight: 500; }
.profile-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--ink); margin: 1.3rem 0; padding-left: 1.2rem; border-left: 3px solid var(--accent); }
.profile-text { margin-bottom: 1.4rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.chip { font-size: .8rem; padding: .35rem .85rem; border-radius: 999px; background: var(--soft); color: var(--accent); font-weight: 500; }
.profile-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.profile-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.profile-main h2 { margin-bottom: 1rem; }
.profile-main p { margin-bottom: 1rem; }
.profile-aside {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 1.2rem);
}
.profile-aside h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.aside-title { font-size: 1.15rem; margin: 1.8rem 0 .8rem; }
.contact-list { display: grid; gap: .85rem; }
.contact-list li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; }
.contact-list__ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--soft); color: var(--accent); flex: none; }
.contact-list a:hover { color: var(--accent); }
.link-list { display: grid; gap: .5rem; }
.link-list a { display: flex; align-items: center; gap: .65rem; padding: .65rem .8rem; border-radius: 12px; background: var(--cream); font-size: .92rem; transition: background .2s ease, transform .2s ease; }
.link-list a:hover { background: var(--soft); transform: translateX(3px); }
.link-list__ico { display: grid; place-items: center; color: var(--accent); }
.link-list a > .ico:last-child { margin-left: auto; color: var(--muted); }

.qr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.2rem; }
.qr-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; text-align: center; box-shadow: var(--shadow-sm); }
.qr-card__img { width: 100%; max-width: 190px; margin-inline: auto; border-radius: 10px; }
.qr-card__label { font-size: .85rem; font-weight: 500; color: var(--ink); margin: .7rem 0 .5rem; display: flex; align-items: center; justify-content: center; gap: .4rem; }
.qr-card__actions { display: flex; justify-content: center; gap: 1rem; font-size: .78rem; flex-wrap: wrap; }
.qr-card__actions .ico { vertical-align: -2px; }

.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.mini-card {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
    background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-card img { width: 64px; height: 72px; object-fit: var(--fit, contain); object-position: var(--fit-pos, bottom center); flex: none; border-radius: 12px; }
.mini-card strong { display: block; font-weight: 600; }
.mini-card em { font-style: normal; font-size: .82rem; color: var(--accent); }
.mini-card > .ico:last-child { margin-left: auto; color: var(--accent); }

/* ------------------------------ article -------------------------------- */
.article { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.section--article:nth-of-type(even) .article__media { order: -1; }
.article__body h2 { margin-bottom: 1.1rem; }
.article__body p + p { margin-top: .9rem; }
.article__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ------------------------------ notice --------------------------------- */
.notice { display: flex; gap: 1.1rem; padding: clamp(1.3rem, 3vw, 2rem); border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-sm); }
.notice__ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; flex: none; }
.notice h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.notice p + p { margin-top: .7rem; }
.notice--warn { background: linear-gradient(120deg, #fff8ec, #fff); }
.notice--warn .notice__ico { background: #fdf0d9; color: #b9862b; }
.notice--info { background: linear-gradient(120deg, #eef4ff, #fff); }
.notice--info .notice__ico { background: #e2ecff; color: var(--blu); }

/* ------------------------------ prose ---------------------------------- */
.prose { font-size: 1.02rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.4rem 0 .8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: none; display: grid; gap: .6rem; margin: 0 0 1.2rem; }
.prose ul li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--fuxia), var(--viola)); }
.prose a { color: var(--fuxia); text-decoration: underline; text-underline-offset: 3px; }
.prose .notice { margin: 2rem 0 0; }

/* ------------------------------ table ---------------------------------- */
.table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.table { width: 100%; border-collapse: collapse; font-size: .92rem; background: var(--paper); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.table th, .table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.table th { background: var(--cream); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.table tr:last-child td { border-bottom: 0; }

/* ------------------------------ contact -------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { margin-bottom: 1.2rem; }
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--ink); }
.field label span { color: var(--fuxia); }
.field input, .field textarea, .field select {
    width: 100%; padding: .8rem 1rem; border-radius: 12px; border: 1px solid var(--line);
    background: var(--cream); font-size: .95rem; font-weight: 300; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: rgba(201,40,111,.5); background: #fff; box-shadow: 0 0 0 4px rgba(201,40,111,.1); }
.field--check .check { display: flex; gap: .6rem; align-items: flex-start; font-weight: 300; color: var(--ink-soft); }
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--fuxia); }
.has-error input, .has-error textarea, .has-error select { border-color: #d23b3b; background: #fff6f6; }
.field__err { font-size: .8rem; color: #c62828; }
.form__note { font-size: .8rem; color: var(--muted); }
.alert { display: flex; gap: .7rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: 14px; margin-bottom: 1.4rem; }
.alert p { margin: 0; color: inherit; font-size: .95rem; }
.alert--ok { background: #e9f7ee; color: #1f7a45; }
.alert--err { background: #fdeaea; color: #b3261e; }

.contact-aside h2 { font-size: 1.6rem; margin-bottom: .5rem; }
.contact-people { display: grid; gap: .8rem; margin-top: 1.3rem; }
.contact-person { display: flex; gap: .9rem; padding: 1rem; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-person img { width: 56px; height: 64px; object-fit: var(--fit, contain); object-position: var(--fit-pos, bottom center); flex: none; border-radius: 12px; background: var(--soft); }
.contact-person__info { display: grid; gap: .15rem; }
.contact-person__info strong { font-weight: 600; }
.contact-person__info em { font-style: normal; font-size: .76rem; color: var(--muted); }
.contact-person__links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; font-size: .8rem; }
.contact-person__links a { display: inline-flex; align-items: center; gap: .3rem; color: var(--accent); font-weight: 500; }
.contact-person__links a:hover { text-decoration: underline; }

/* ------------------------------ error page ----------------------------- */
.error-page { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 3rem) 0 4rem; }
.error-page__butterfly { width: min(60vw, 260px); margin-inline: auto; filter: drop-shadow(0 20px 30px rgba(120,30,90,.28)); animation: float 7s ease-in-out infinite; }
.error-page__code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem); line-height: 1; color: var(--fuxia); margin-top: 1rem; }
.error-page p { max-width: 48ch; margin: 1rem auto 0; }
.error-page__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

/* ------------------------------ footer --------------------------------- */
.site-footer { background: #1c1420; color: rgba(255,255,255,.78); padding: clamp(3rem, 6vw, 5rem) 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-col h3 { color: #fff; font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1rem; font-weight: 600; }
.brand--footer { margin-bottom: 1rem; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name em { color: var(--gold-2); }
.footer-lead { color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: 1.2rem; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a, .footer-links .linklike { color: rgba(255,255,255,.72); font-size: .9rem; transition: color .2s ease; }
.footer-links a:hover, .footer-links .linklike:hover { color: var(--gold-2); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.6rem; display: grid; gap: .8rem; }
.footer-disclaimer p { color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.65; }
.footer-disclaimer strong { color: rgba(255,255,255,.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem 1.2rem; border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.6rem; padding-top: 1.4rem; }
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .78rem; display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-dev { color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .02em; }
.footer-dev__code { font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; color: var(--gold-2); font-weight: 600; margin-right: .15rem; }
.footer-dev strong { color: #fff; font-weight: 600; letter-spacing: .06em; }

/* ------------------------------ to top --------------------------------- */
.to-top {
    position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
    width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
    background: var(--ink); color: #fff; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.to-top .ico { transform: rotate(-90deg); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ------------------------------ cookie --------------------------------- */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; padding: clamp(.7rem, 2vw, 1.2rem); }
.cookie[hidden] { display: none; }
.cookie__inner {
    width: min(100%, 1080px); margin-inline: auto; display: flex; gap: 1.1rem; align-items: center;
    background: rgba(28, 20, 32, .96); color: rgba(255,255,255,.85); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lg);
}
.cookie__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(234,90,149,.18); color: var(--gold-2); flex: none; }
.cookie__body { flex: 1; }
.cookie__title { color: #fff; font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.cookie__body p { color: rgba(255,255,255,.7); font-size: .85rem; }
.cookie__links { display: flex; gap: 1rem; margin-top: .4rem; }
.cookie__links a { color: var(--gold-2); font-size: .8rem; text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: .6rem; flex: none; }
.cookie .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.cookie .btn--ghost:hover { color: var(--gold-2); border-color: var(--gold-2); }

/* ------------------------------ reveal --------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------ responsive ----------------------------- */
@media (max-width: 1024px) {
    .split, .profile-hero__grid, .profile-grid, .article, .contact-grid { grid-template-columns: 1fr; }
    .section--article:nth-of-type(even) .article__media { order: 0; }
    .article__media { max-width: 420px; }
    .profile-aside { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .nav-toggle { display: grid; }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
        flex-direction: column; align-items: stretch; gap: 1rem;
        background: rgba(253,249,251,.98); backdrop-filter: blur(16px);
        padding: calc(var(--header-h) + 1.5rem) 1.6rem 2rem; box-shadow: -20px 0 60px -30px rgba(60,20,50,.6);
        transform: translateX(105%); transition: transform .4s cubic-bezier(.2,.7,.2,1); z-index: 110;
    }
    .nav.is-open { transform: none; }
    .nav > ul { flex-direction: column; align-items: stretch; gap: .2rem; }
    .nav > ul a { padding: .85rem 1rem; font-size: 1.05rem; border-radius: 12px; }
    .nav > ul a.is-active { background: rgba(201,40,111,.08); }
    .nav > ul a.is-active::after { display: none; }
    .nav__cta { justify-content: center; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
    :root { --header-h: 68px; }
    .brand__sub { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .youtube { flex-direction: column; text-align: center; align-items: center; }
    .youtube .eyebrow { text-align: center; }
    .cookie__inner { flex-direction: column; align-items: flex-start; }
    .cookie__actions { width: 100%; }
    .cookie__actions .btn { flex: 1; }
    .hero__scroll { display: none; }
    .split__badge { right: .5rem; bottom: -.8rem; }
}

/* ------------------------------ motion --------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
