:root {
    --c-blush: #fff4f7;
    --c-mist: #ffd9e2;
    --c-soft: #ffb0c6;
    --c-coral: #ff6b9a;
    --c-plum: #7a2e4d;
    --sp-xs: 0.35rem;
    --sp-sm: 0.75rem;
    --sp-md: 1.25rem;
    --sp-lg: 2rem;
    --sp-xl: 3.5rem;
    --sp-2xl: 5.5rem;
    --font: "Segoe UI", system-ui, -apple-system, sans-serif;
    --fs-xs: 0.8rem;
    --fs-sm: 0.95rem;
    --fs-md: 1.05rem;
    --fs-lg: 1.35rem;
    --fs-xl: clamp(1.6rem, 3vw, 2.2rem);
    --fs-2xl: clamp(2rem, 4.5vw, 3.1rem);
    --radius: 0.9rem;
    --radius-pill: 999px;
    --shadow: 0 0.4rem 1.6rem rgba(122, 46, 77, 0.12);
    --shadow-hover: 0 0.55rem 2rem rgba(122, 46, 77, 0.18);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.2s;
    --t-med: 0.4s;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--fs-md);
    line-height: 1.6;
    color: var(--c-plum);
    background: var(--c-blush);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-coral);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease);
}

a:hover {
    color: var(--c-plum);
}

a:focus-visible {
    outline: 2px solid var(--c-coral);
    outline-offset: 2px;
}

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

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
    background: rgba(255, 244, 247, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--c-mist);
    transition: box-shadow var(--t-med) var(--ease);
}

.topbar.scrolled {
    box-shadow: var(--shadow);
}

.inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.header-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    min-height: 3.75rem;
}

.brand {
    font-weight: 700;
    color: var(--c-plum);
    letter-spacing: 0.02em;
    font-size: var(--fs-sm);
    transition: transform var(--t-fast) var(--ease);
}

.brand:hover {
    color: var(--c-plum);
    transform: translateY(-1px);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    color: var(--c-plum);
    padding: var(--sp-xs) var(--sp-sm);
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

nav a:hover {
    background: var(--c-mist);
    color: var(--c-coral);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-pill);
    border: none;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.btn-coral {
    background: var(--c-coral);
    color: #fff;
    box-shadow: 0 0.2rem 0.8rem rgba(255, 107, 154, 0.35);
}

.btn-coral:hover {
    background: var(--c-plum);
    color: #fff;
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--c-plum);
    border: 1px solid var(--c-soft);
}

.btn-ghost:hover {
    background: var(--c-mist);
    border-color: var(--c-coral);
}

main {
    padding-top: 4.25rem;
}

.section {
    padding: var(--sp-xl) 0;
    position: relative;
}

.section-tight {
    padding: var(--sp-lg) 0;
}

.reveal {
    opacity: 0;
    transform: translateY(1.2rem);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slow {
    transition-duration: 0.95s;
}

.float-soft {
    animation: floatY 5s var(--ease) infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.pulse-glow {
    animation: glowPulse 4s var(--ease) infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 154, 0.25);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 107, 154, 0);
    }
}

.home-hero {
    min-height: 78vh;
    display: grid;
    align-items: center;
    background: linear-gradient(145deg, var(--c-blush) 0%, var(--c-mist) 50%, #ffeef3 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    right: -15%;
    top: 10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(255, 176, 198, 0.45) 0%, transparent 70%);
    pointer-events: none;
    animation: drift 18s linear infinite;
}

@keyframes drift {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(4deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.hero-grid {
    display: grid;
    gap: var(--sp-xl);
    align-items: center;
}

@media (min-width: 56rem) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: var(--fs-xs);
    color: var(--c-coral);
    margin-bottom: var(--sp-sm);
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin: 0 0 var(--sp-md);
    font-weight: 700;
}

h1 {
    font-size: var(--fs-2xl);
}

h2 {
    font-size: var(--fs-xl);
}

h3 {
    font-size: var(--fs-lg);
}

.lead {
    font-size: var(--fs-lg);
    color: var(--c-plum);
    opacity: 0.9;
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin-top: var(--sp-lg);
}

.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-md);
    margin-top: var(--sp-lg);
}

.stat {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--sp-sm) var(--sp-md);
    box-shadow: var(--shadow);
    min-width: 7rem;
    transition: transform var(--t-med) var(--ease);
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat strong {
    display: block;
    font-size: var(--fs-lg);
    color: var(--c-coral);
}

.split-board {
    display: grid;
    gap: var(--sp-lg);
}

@media (min-width: 48rem) {
    .split-board {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--sp-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-mist);
    transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.tag {
    display: inline-block;
    font-size: var(--fs-xs);
    padding: 0.2rem 0.55rem;
    background: var(--c-mist);
    color: var(--c-plum);
    border-radius: var(--radius-pill);
    margin-bottom: var(--sp-sm);
}

.ribbon {
    position: relative;
    padding: var(--sp-xl) 0;
    background: #fff;
}

.ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--c-mist) 20%, var(--c-mist) 80%, transparent);
    opacity: 0.4;
    z-index: 0;
}

.ribbon .inner {
    position: relative;
    z-index: 1;
}

.mosaic {
    display: grid;
    gap: var(--sp-md);
}

@media (min-width: 40rem) {
    .mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mosaic .card:nth-child(2) {
    transition-delay: 0.08s;
}

.mosaic .card:nth-child(3) {
    transition-delay: 0.16s;
}

.mosaic .card:nth-child(4) {
    transition-delay: 0.24s;
}

.diag {
    position: relative;
    padding: var(--sp-xl) 0;
    background: var(--c-plum);
    color: #fff5f8;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.diag a {
    color: var(--c-soft);
}

.diag a:hover {
    color: #fff;
}

.faq {
    max-width: 40rem;
}

.faq details {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: var(--sp-sm);
    border: 1px solid var(--c-mist);
    overflow: hidden;
    transition: box-shadow var(--t-fast) var(--ease);
}

.faq details[open] {
    box-shadow: var(--shadow);
}

.faq summary {
    padding: var(--sp-md);
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq p {
    margin: 0;
    padding: 0 var(--sp-md) var(--sp-md);
    font-size: var(--fs-sm);
}

.foot-cta {
    text-align: center;
    padding: var(--sp-xl) 0;
    background: linear-gradient(180deg, var(--c-blush), var(--c-mist));
}

footer {
    background: var(--c-plum);
    color: #fdeef3;
    padding: var(--sp-xl) 0 var(--sp-lg);
    font-size: var(--fs-sm);
}

footer a {
    color: var(--c-soft);
}

footer a:hover {
    color: #fff;
}

.foot-cols {
    display: grid;
    gap: var(--sp-lg);
}

@media (min-width: 40rem) {
    .foot-cols {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

.foot-bottom {
    margin-top: var(--sp-lg);
    padding-top: var(--sp-md);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
}

.legal h1 {
    font-size: var(--fs-xl);
}

.legal h2 {
    font-size: var(--fs-lg);
    margin-top: var(--sp-lg);
}

.legal p,
.legal li {
    font-size: var(--fs-sm);
}

.legal section {
    margin-bottom: var(--sp-lg);
}

.sub-hero {
    padding: var(--sp-2xl) 0 var(--sp-lg);
    background: linear-gradient(160deg, #fff, var(--c-mist));
    position: relative;
}

.sub-hero h1 {
    max-width: 20ch;
}

.sub-ornament {
    width: 4rem;
    height: 0.25rem;
    background: var(--c-coral);
    border-radius: var(--radius-pill);
    margin: var(--sp-md) 0;
    transform-origin: left;
    animation: lineGrow 0.9s var(--ease) forwards;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0.2);
        opacity: 0.4;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.stagger-children .reveal:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.eating-band {
    padding: var(--sp-xl) 0;
    border-bottom: 1px solid var(--c-mist);
}

.eating-band:nth-child(even) {
    background: rgba(255, 217, 226, 0.35);
}

.band-wrap {
    display: grid;
    gap: var(--sp-lg);
    align-items: center;
}

@media (min-width: 50rem) {
    .band-wrap.flip {
        direction: rtl;
    }

    .band-wrap.flip>* {
        direction: ltr;
    }

    .band-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

.energy-timeline {
    position: relative;
    padding-left: var(--sp-lg);
    border-left: 2px solid var(--c-coral);
    margin: var(--sp-lg) 0;
}

.energy-timeline .card {
    margin-bottom: var(--sp-md);
    animation: fadeSlide 0.65s var(--ease) both;
}

.energy-timeline .card:nth-child(1) {
    animation-delay: 0.1s;
}

.energy-timeline .card:nth-child(2) {
    animation-delay: 0.25s;
}

.energy-timeline .card:nth-child(3) {
    animation-delay: 0.4s;
}

.form-wrap {
    max-width: 32rem;
    margin: 0 auto;
    background: #fff;
    padding: var(--sp-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-mist);
}

.form-group {
    margin-bottom: var(--sp-md);
}

label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--sp-xs);
}

input,
textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 0.5rem;
    border: 1px solid var(--c-soft);
    font: inherit;
    background: #fff;
    color: var(--c-plum);
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--c-coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 154, 0.2);
}

textarea {
    min-height: 8rem;
    resize: vertical;
}

.chk {
    display: flex;
    gap: var(--sp-sm);
    align-items: flex-start;
    font-size: var(--fs-sm);
}

.chk input {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--c-coral);
}

.field-err {
    color: #b00020;
    font-size: var(--fs-xs);
    margin-top: var(--sp-xs);
    min-height: 1.1rem;
}

.field-err:empty {
    display: none;
}

.contact-grid {
    display: grid;
    gap: var(--sp-xl);
    align-items: start;
}

@media (min-width: 52rem) {
    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.contact-bubble {
    background: var(--c-plum);
    color: #fff5f8;
    padding: var(--sp-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.thank-body {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-xl) var(--sp-md);
}

.thank-icon {
    font-size: 3rem;
    color: var(--c-coral);
    margin-bottom: var(--sp-md);
    animation: floatY 3.5s var(--ease) infinite;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(122, 46, 77, 0.35);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--sp-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease);
}

.cookie-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cookie-panel {
    background: #fff;
    color: var(--c-plum);
    max-width: 36rem;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-md);
    transform: translateY(1rem);
    transition: transform var(--t-med) var(--ease);
}

.cookie-overlay.is-open .cookie-panel {
    transform: translateY(0);
}

.cookie-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
}

.cookie-settings {
    display: none;
    margin-top: var(--sp-md);
    border-top: 1px solid var(--c-mist);
    padding-top: var(--sp-md);
}

.cookie-settings.is-open {
    display: block;
}

.toggle-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-sm);
    font-size: var(--fs-sm);
}

.switch {
    position: relative;
    width: 2.5rem;
    height: 1.4rem;
    background: var(--c-mist);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--t-fast) var(--ease);
    border: none;
    padding: 0;
}

.switch.is-on {
    background: var(--c-coral);
}

.switch::after {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--t-fast) var(--ease);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.switch.is-on::after {
    transform: translateX(1.1rem);
}

.switch[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

.mob-nav {
    display: none;
}

.mob-nav-btn {
    display: none;
    background: #fff;
    border: 1px solid var(--c-mist);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.55rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--c-plum);
    padding: 0;
    box-shadow: 0 0.1rem 0.5rem rgba(122, 46, 77, 0.08);
    z-index: 140;
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.mob-nav-btn:hover {
    border-color: var(--c-coral);
    box-shadow: 0 0.2rem 0.75rem rgba(255, 107, 154, 0.15);
}

.mob-nav-btn.is-active {
    border-color: var(--c-coral);
    background: var(--c-blush);
}

.burger-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.28rem;
    width: 1.15rem;
    height: 0.9rem;
}

.burger-bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--c-plum);
    border-radius: 1px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
    transform-origin: center;
}

.mob-nav-btn.is-active .burger-bars span:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
}

.mob-nav-btn.is-active .burger-bars span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-nav-btn.is-active .burger-bars span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 128;
    background: rgba(122, 46, 77, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
    backdrop-filter: blur(2px);
    visibility: hidden;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

body.menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@media (max-width: 40rem) {
    .nav-desktop {
        display: none;
    }

    .mob-nav-btn {
        display: flex;
    }

    .mob-nav {
        display: block;
        position: fixed;
        z-index: 135;
        left: 0;
        right: 0;
        top: 0;
        margin-top: 3.6rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.48s var(--ease), box-shadow 0.3s var(--ease);
        background: #fff;
        border-bottom: 1px solid var(--c-mist);
        box-shadow: none;
    }

    .mob-nav.is-open {
        max-height: min(60vh, 24rem);
        box-shadow: 0 0.5rem 1.5rem rgba(122, 46, 77, 0.12);
    }

    .mob-nav ul {
        flex-direction: column;
        padding: var(--sp-md) 0;
        align-items: stretch;
        gap: 0.15rem;
    }

    .mob-nav a {
        display: block;
        padding: 0.65rem 0.5rem;
        border-radius: 0.5rem;
        font-size: 1.05rem;
    }

    .mob-nav a:hover,
    .mob-nav a:focus-visible {
        background: var(--c-mist);
    }

    .header-wrap {
        min-height: 3.4rem;
    }
}

.legal-hero {
    position: relative;
    padding: var(--sp-xl) 0 var(--sp-lg);
    background: linear-gradient(135deg, #fff8fa 0%, var(--c-mist) 42%, var(--c-blush) 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 176, 198, 0.5);
}

.legal-hero::before {
    content: "";
    position: absolute;
    right: -20%;
    top: -30%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 107, 154, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 46rem;
    margin: 0 auto;
}

.legal-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-coral);
    margin-bottom: var(--sp-sm);
    font-weight: 600;
}

.legal-hero h1 {
    font-size: var(--fs-xl);
    max-width: 18ch;
    margin-bottom: var(--sp-md);
}

.legal-hero__date {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    font-size: var(--fs-sm);
    color: var(--c-plum);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--c-soft);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
    box-shadow: var(--shadow);
}

.legal-hero__date i {
    color: var(--c-coral);
    font-size: 0.95em;
}

.legal-hero__lead {
    font-size: var(--fs-md);
    max-width: 40rem;
    margin-top: var(--sp-md);
    margin-bottom: 0;
    opacity: 0.92;
}

.doc-shell {
    max-width: 48rem;
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-md) var(--sp-2xl);
}

.doc-grid {
    display: grid;
    gap: var(--sp-lg);
}

@media (min-width: 50rem) {
    .doc-grid--split {
        grid-template-columns: 1fr 12rem;
        align-items: start;
    }
}

.doc-toc {
    position: sticky;
    top: 4.5rem;
    background: #fff;
    border: 1px solid var(--c-mist);
    border-radius: var(--radius);
    padding: var(--sp-md);
    font-size: var(--fs-xs);
    box-shadow: var(--shadow);
}

.doc-toc h3 {
    font-size: var(--fs-sm);
    margin: 0 0 var(--sp-sm);
    color: var(--c-plum);
}

.doc-toc ol {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--c-coral);
}

.doc-toc a {
    color: var(--c-plum);
    font-size: var(--fs-xs);
}

.legal .doc-block {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--c-mist);
    padding: var(--sp-md) var(--sp-lg);
    margin-bottom: var(--sp-md);
    box-shadow: 0 0.2rem 0.8rem rgba(122, 46, 77, 0.06);
}

.legal .doc-block h2 {
    margin-top: 0;
    font-size: var(--fs-lg);
    color: var(--c-plum);
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--c-mist);
}

.legal .doc-block p {
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: var(--fs-sm);
}

.legal .doc-block p:last-child {
    margin-bottom: 0;
}

.legal .doc-pair {
    display: grid;
    gap: var(--sp-md);
}

@media (min-width: 38rem) {
    .legal .doc-pair {
        grid-template-columns: 1fr 1fr;
    }
}

.legal .doc-note {
    background: linear-gradient(120deg, var(--c-mist) 0%, #fff4f7 100%);
    border-left: 4px solid var(--c-coral);
    padding: var(--sp-md) var(--sp-md) var(--sp-md) 1.1rem;
    font-size: var(--fs-sm);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: var(--sp-md) 0;
}

.legal .doc-cta {
    text-align: center;
    margin-top: var(--sp-xl);
    padding: var(--sp-lg);
    background: var(--c-plum);
    color: #fff5f8;
    border-radius: var(--radius);
}

.legal .doc-cta a {
    color: var(--c-soft);
    font-weight: 600;
}

.legal .doc-cta a:hover {
    color: #fff;
}

.thank-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, var(--c-mist) 50%, var(--c-blush) 100%);
    padding: var(--sp-xl) var(--sp-md);
    overflow: hidden;
}

.thank-hero::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -2rem;
    width: 8rem;
    height: 8rem;
    border: 2px solid var(--c-soft);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

.thank-hero__content {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    margin: 0 auto;
    text-align: center;
}

.thank-hero h1 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--sp-sm);
}

.thank-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
    max-width: 28rem;
    margin: var(--sp-lg) auto 0;
}

@media (min-width: 32rem) {
    .thank-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.thank-stat {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--sp-md);
    border: 1px solid var(--c-mist);
    box-shadow: var(--shadow);
    font-size: var(--fs-xs);
}

.thank-stat strong {
    display: block;
    font-size: 1.15rem;
    color: var(--c-coral);
    margin-bottom: 0.2rem;
}

.thank-article {
    max-width: 40rem;
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-md) var(--sp-2xl);
    font-size: var(--fs-sm);
}

.thank-article h2 {
    font-size: var(--fs-lg);
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-sm);
}

.thank-article p {
    line-height: 1.7;
    margin: 0 0 var(--sp-md);
}

.thank-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-sm);
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.thank-actions .btn {
    min-width: 12rem;
    text-align: center;
    justify-content: center;
}

.thank-ribbon {
    background: #fff;
    border-top: 1px solid var(--c-mist);
    border-bottom: 1px solid var(--c-mist);
    padding: var(--sp-lg) 0;
}

.thank-ribbon__inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--sp-md);
}

@media (max-width: 20rem) {
    html {
        font-size: 97%;
    }

    .inner {
        padding: 0 0.65rem;
    }

    .brand {
        max-width: min(11rem, 70vw);
        line-height: 1.2;
    }

    .header-wrap {
        gap: 0.35rem;
    }

    .hero-actions,
    .cookie-row,
    .stat-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-wrap,
    .card {
        padding: var(--sp-md);
    }

    h1,
    .legal-hero h1,
    .sub-hero h1 {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.2rem;
    }

    .section {
        padding: var(--sp-lg) 0;
    }

    .topbar {
        z-index: 130;
    }

    .legal-hero {
        padding: var(--sp-lg) 0;
    }

    .legal-hero__date {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }

    .doc-toc {
        position: static;
    }

    .doc-shell {
        padding: var(--sp-md) 0.65rem;
    }

    .foot-cols {
        gap: var(--sp-md);
    }

    .foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        gap: var(--sp-md);
    }

    .foot-cta,
    .home-hero {
        padding: var(--sp-lg) 0;
    }

    .cookie-panel {
        padding: var(--sp-md);
        max-height: 85vh;
        overflow: auto;
    }

    .legal .doc-block {
        padding: var(--sp-sm) var(--sp-md);
    }

    .thank-actions {
        max-width: 100%;
    }

    .thank-actions .btn {
        min-width: 0;
        width: 100%;
    }

    .ph-bento,
    .eat-bento,
    .en-orb,
    .co-hero2__paper,
    .co-hero2__tape,
    .co-hero2__paper::after,
    .co-hero2__headline span,
    .co-hero2__line::after,
    .marquee-ribbon {
        animation: none;
    }

    .en-orbit,
    .ph-blob,
    .co-glow,
    .eat-hero2__arc,
    .eat-hero2__fork,
    .en-hero2__wave-svg,
    .en-hero2__bloom,
    .en-hero2__rings {
        display: none;
    }
}

.page-home--hero {
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home--hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.5rem 0 4.5rem;
    overflow: hidden;
    background: var(--c-blush);
}

.ph-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
    will-change: transform;
}

.ph-blob--1 {
    width: min(50vw, 24rem);
    height: min(50vw, 24rem);
    background: #ffb8d0;
    top: -5%;
    right: -8%;
    animation: phBlob1 16s var(--ease) infinite;
}

.ph-blob--2 {
    width: min(40vw, 20rem);
    height: min(40vw, 20rem);
    background: #ffd0dd;
    bottom: 5%;
    left: -5%;
    animation: phBlob2 18s var(--ease) infinite 1s;
}

.ph-blob--3 {
    width: 12rem;
    height: 12rem;
    background: rgba(255, 107, 154, 0.4);
    top: 40%;
    left: 35%;
    animation: phBlob1 20s var(--ease) infinite reverse 2s;
}

@keyframes phBlob1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-4%, 6%) scale(1.04);
    }

    66% {
        transform: translate(3%, -4%) scale(0.98);
    }
}

@keyframes phBlob2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(6%, 4%) scale(1.06);
    }
}

.ph-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 40rem;
}

.ph-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: var(--fs-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-coral);
    font-weight: 700;
    margin-bottom: var(--sp-md);
    animation: phFadeUp 0.8s var(--ease-out) both;
}

.ph-title {
    font-size: clamp(2.1rem, 5.5vw, 3.35rem);
    line-height: 1.1;
    margin: 0 0 var(--sp-md);
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: phFadeUp 0.9s var(--ease-out) 0.05s both;
}

.ph-title em {
    font-style: normal;
    color: var(--c-coral);
    background: linear-gradient(120deg, var(--c-coral), #c94d7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ph-lead {
    font-size: var(--fs-lg);
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 0 var(--sp-lg);
    color: var(--c-plum);
    opacity: 0.9;
    animation: phFadeUp 0.85s var(--ease-out) 0.1s both;
}

@keyframes phFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1.1rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ph-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-lg);
    animation: phFadeUp 0.85s var(--ease-out) 0.16s both;
}

.ph-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    animation: phFadeUp 0.9s var(--ease-out) 0.2s both;
}

.ph-pill {
    display: inline-flex;
    padding: 0.35rem 0.8rem;
    background: #fff;
    border: 1px solid var(--c-mist);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-plum);
    box-shadow: 0 0.1rem 0.5rem rgba(122, 46, 77, 0.06);
    transition: transform 0.25s var(--ease), border-color 0.25s;
}

.ph-pill:hover {
    border-color: var(--c-coral);
    transform: translateY(-2px);
}

.marquee-ribbon {
    position: relative;
    padding: var(--sp-sm) 0;
    background: var(--c-plum);
    color: #fdeef3;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-ribbon::before,
.marquee-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    z-index: 1;
    pointer-events: none;
}

.marquee-ribbon::before {
    left: 0;
    background: linear-gradient(90deg, var(--c-plum), transparent);
}

.marquee-ribbon::after {
    right: 0;
    background: linear-gradient(270deg, var(--c-plum), transparent);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: phMarquee 32s linear infinite;
    gap: 3.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.9;
}

@keyframes phMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ph-section {
    padding: var(--sp-xl) 0;
    position: relative;
}

.ph-section--soft {
    background: linear-gradient(180deg, #fff 0%, var(--c-blush) 100%);
}

.compliance-block {
    border-top: 1px solid var(--c-mist);
    border-bottom: 1px solid var(--c-mist);
    background: #fff;
}

.page-disclaimer {
    margin: 0;
    padding: var(--sp-sm) var(--sp-md);
    max-width: 50rem;
    font-size: var(--fs-sm);
    line-height: 1.5;
    color: var(--c-plum);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--c-mist);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ph-section h2,
.ph-bento h2,
.eat-section h2,
.en-section h2,
.co-slab h2 {
    font-size: var(--fs-xl);
    max-width: 20ch;
}

.ph-section.compliance-block h2 {
    max-width: none;
    font-size: var(--fs-lg);
}

.ph-bento {
    display: grid;
    gap: var(--sp-sm);
    grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
    .ph-bento {
        grid-template-columns: 1.1fr 0.9fr;
        grid-template-rows: auto auto;
    }

    .ph-bento__wide {
        grid-column: 1 / -1;
    }
}

.ph-tile {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--c-mist);
    padding: var(--sp-md) var(--sp-lg);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.ph-tile:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.ph-tile h3,
.eat-bento h3,
.co-card h2 {
    font-size: var(--fs-md);
    margin: 0 0 var(--sp-sm);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ph-tile h3 i,
.eat-bento h3 i {
    color: var(--c-coral);
}

.ph-split {
    display: grid;
    gap: var(--sp-lg);
    align-items: center;
}

@media (min-width: 48rem) {
    .ph-split {
        grid-template-columns: 1fr 1fr;
    }

    .ph-split--rev> :first-child {
        order: 2;
    }

    .ph-split--rev> :last-child {
        order: 1;
    }
}

.ph-visual {
    position: relative;
    padding: var(--sp-lg) 0;
}

.ph-visual--odd {
    background: #fff;
}

.ph-diag-2 {
    background: var(--c-plum);
    color: #fff5f8;
    position: relative;
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding: var(--sp-2xl) 0;
    margin: var(--sp-md) 0;
}

.ph-diag-2 a {
    color: var(--c-soft);
}

.ph-diag-2 a:hover {
    color: #fff;
}

.eat-hero2 {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: var(--sp-xl) 0 calc(var(--sp-2xl) + 0.5rem);
    overflow: hidden;
    background: #fff5f7;
    border-bottom: 1px solid var(--c-mist);
}

.eat-hero2__mesh {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(127deg, transparent, transparent 11px, rgba(255, 107, 154, 0.045) 11px, rgba(255, 107, 154, 0.045) 12px);
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000, transparent 75%);
    animation: eatMesh 14s var(--ease) infinite alternate;
}

@keyframes eatMesh {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.02);
    }
}

.eat-hero2__fork {
    position: absolute;
    right: 6%;
    top: 18%;
    font-size: 6.5rem;
    color: var(--c-mist);
    line-height: 1;
    opacity: 0.5;
    transform: rotate(12deg);
    animation: eatUtensil 6s var(--ease) infinite;
    pointer-events: none;
}

.eat-hero2__fork i {
    filter: drop-shadow(0 0.12rem 0.3rem rgba(122, 46, 77, 0.12));
}

@keyframes eatUtensil {

    0%,
    100% {
        transform: rotate(10deg) translateY(0);
    }

    50% {
        transform: rotate(14deg) translateY(-6px);
    }
}

.eat-hero2__arc {
    position: absolute;
    right: 4%;
    bottom: 8%;
    width: min(42vw, 16rem);
    height: min(24vw, 8.5rem);
    border: 2px solid var(--c-soft);
    border-top: 0;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    opacity: 0.5;
    pointer-events: none;
    animation: eatArcBreath 5s var(--ease) infinite;
}

.eat-hero2__arc-dot {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--c-coral);
    border-radius: 50%;
    box-shadow: 0 0 0.5rem var(--c-coral);
    animation: eatPip 2.5s var(--ease) infinite;
}

.eat-hero2__arc-dot--1 {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.eat-hero2__arc-dot--2 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.3s;
}

.eat-hero2__arc-dot--3 {
    top: 18%;
    right: 12%;
    animation-delay: 0.6s;
}

@keyframes eatArcBreath {

    0%,
    100% {
        transform: scale(1);
        border-color: var(--c-soft);
    }

    50% {
        transform: scale(1.04);
        border-color: var(--c-coral);
    }
}

@keyframes eatPip {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.eat-hero2__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: var(--sp-md);
}

.eat-hero2__chips span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-plum);
    padding: 0.3rem 0.65rem;
    background: #fff;
    border: 1px solid var(--c-mist);
    border-radius: var(--radius-pill);
    animation: phFadeUp 0.55s var(--ease-out) both;
}

.eat-hero2__chips span:nth-child(1) {
    animation-delay: 0.02s;
}

.eat-hero2__chips span:nth-child(2) {
    animation-delay: 0.1s;
}

.eat-hero2__chips span:nth-child(3) {
    animation-delay: 0.18s;
}

.eat-hero2__kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-coral);
    margin: 0 0 var(--sp-sm);
}

.eat-hero2__layout {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--sp-lg);
    align-items: end;
    width: 100%;
}

@media (min-width: 50rem) {
    .eat-hero2__layout {
        grid-template-columns: 1.15fr 0.5fr;
        align-items: center;
    }
}

.eat-hero2__panel {
    max-width: 38rem;
    padding: var(--sp-lg) var(--sp-md);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 176, 198, 0.55);
    border-radius: 1.1rem;
    box-shadow: 0 0.5rem 2rem rgba(122, 46, 77, 0.1);
    border-left: 4px solid var(--c-coral);
    animation: eatPanelRise 0.85s var(--ease-out) both;
}

@keyframes eatPanelRise {
    from {
        opacity: 0;
        transform: translate3d(0, 1.2rem, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.eat-hero2__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-coral);
    margin: 0 0 0.6rem;
}

.eat-hero2__panel h1 {
    font-size: clamp(1.7rem, 4.1vw, 2.5rem);
    line-height: 1.1;
    margin: 0 0 var(--sp-sm);
    font-weight: 800;
    color: var(--c-plum);
    letter-spacing: -0.02em;
}

.eat-hero2__panel .lead {
    margin: 0;
    font-size: var(--fs-md);
    line-height: 1.7;
    max-width: 36rem;
    color: var(--c-plum);
    opacity: 0.9;
    animation: phFadeUp 0.7s var(--ease-out) 0.1s both;
}

.eat-section {
    padding: var(--sp-xl) 0;
    border-bottom: 1px solid var(--c-mist);
}

.eat-section:last-of-type {
    border-bottom: none;
}

.eat-bento {
    display: grid;
    gap: var(--sp-md);
    grid-template-columns: 1fr;
}

@media (min-width: 45rem) {
    .eat-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eat-bento__card {
    background: #fff;
    border: 1px solid var(--c-mist);
    border-radius: var(--radius);
    padding: var(--sp-md);
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.eat-bento__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-coral), var(--c-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.eat-bento__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.eat-bento__card:hover::before {
    transform: scaleX(1);
}

.eat-h-scroll {
    display: flex;
    gap: var(--sp-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--sp-sm) 0 var(--sp-md);
    margin: 0 calc(-1 * var(--sp-md));
    padding-left: var(--sp-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--c-soft) transparent;
}

.eat-h-scroll__card {
    flex: 0 0 min(20rem, 86vw);
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--c-mist);
    padding: var(--sp-md);
    box-shadow: var(--shadow);
}

.eat-stepper {
    counter-reset: es;
    max-width: 40rem;
}

.eat-step {
    position: relative;
    padding: 0 0 var(--sp-lg) 2.5rem;
    border-left: 2px solid var(--c-mist);
    margin-left: 0.75rem;
}

.eat-step:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.eat-step::before {
    counter-increment: es;
    content: counter(es);
    position: absolute;
    left: -0.8rem;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--c-coral);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0.15rem 0.5rem rgba(255, 107, 154, 0.45);
    animation: eatPop 0.55s var(--ease) both;
}

.eat-step:nth-child(1)::before {
    animation-delay: 0.1s;
}

.eat-step:nth-child(2)::before {
    animation-delay: 0.2s;
}

.eat-step:nth-child(3)::before {
    animation-delay: 0.3s;
}

.eat-step:nth-child(4)::before {
    animation-delay: 0.4s;
}

@keyframes eatPop {
    from {
        transform: scale(0.4);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.eat-cta {
    text-align: center;
    padding: var(--sp-xl) 0;
    background: linear-gradient(180deg, var(--c-blush), #fff);
}

.eat-cta .inner a.btn {
    display: inline-block;
    margin: 0.25rem;
}

@media (max-width: 20rem) {
    .eat-cta .inner a.btn {
        display: block;
        width: 100%;
        margin: 0.35rem 0;
    }
}

.en-hero2 {
    min-height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff4f6;
    overflow: hidden;
    border-bottom: 1px solid var(--c-mist);
}

.en-hero2__daystrip {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 0.55rem;
    margin: 0;
    box-shadow: 0 0.1rem 0.6rem rgba(255, 107, 154, 0.25);
}

.en-hero2__daystrip span {
    flex: 1;
    min-height: 0.55rem;
    animation: enDayShim 4s var(--ease) infinite;
}

.en-hero2__daystrip span:nth-child(1) {
    background: linear-gradient(90deg, #ffd4b8, #ffd9e2);
    animation-delay: 0s;
}

.en-hero2__daystrip span:nth-child(2) {
    background: linear-gradient(90deg, #ffd9e2, #ffbdd3);
    animation-delay: 0.2s;
}

.en-hero2__daystrip span:nth-child(3) {
    background: linear-gradient(90deg, #c9a8b8, #7a2e4d);
    animation-delay: 0.4s;
}

@keyframes enDayShim {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.08);
    }
}

.en-hero2__bloom {
    position: absolute;
    width: 70%;
    max-width: 36rem;
    height: 45%;
    top: 15%;
    right: -5%;
    background: radial-gradient(ellipse, rgba(255, 107, 154, 0.2) 0%, transparent 68%);
    pointer-events: none;
    animation: enBloom 12s var(--ease) infinite alternate;
}

@keyframes enBloom {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-2%, 4%) scale(1.05);
    }
}

.en-hero2__wave-svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 7rem;
    z-index: 0;
    pointer-events: none;
    color: var(--c-mist);
    opacity: 0.5;
    animation: enWaveline 7s var(--ease) infinite;
}

.en-hero2__wave-svg path {
    fill: currentColor;
    stroke: none;
}

@keyframes enWaveline {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0.2rem);
    }
}

.en-hero2__legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.35rem 1rem;
    max-width: 70rem;
    margin: 0 auto;
    padding: 0.35rem var(--sp-md) 0;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-plum);
    opacity: 0.5;
}

@media (max-width: 24rem) {
    .en-hero2__legend {
        justify-content: center;
    }
}

.en-hero2__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--sp-2xl) 0 calc(var(--sp-2xl) + 3rem);
}

.en-hero2__inner h1 {
    font-size: clamp(1.75rem, 4.2vw, 2.65rem);
    line-height: 1.08;
    max-width: 16ch;
    margin: 0 0 var(--sp-sm);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--c-plum);
    background: linear-gradient(115deg, var(--c-plum) 0%, var(--c-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: phFadeUp 0.75s var(--ease-out) both;
}

.en-hero2__inner .lead {
    font-size: var(--fs-md);
    line-height: 1.75;
    max-width: 38rem;
    margin: 0;
    color: var(--c-plum);
    opacity: 0.88;
    animation: phFadeUp 0.75s var(--ease-out) 0.08s both;
}

.en-hero2__rings {
    position: absolute;
    right: 6%;
    top: 42%;
    width: 8.5rem;
    height: 8.5rem;
    z-index: 1;
    pointer-events: none;
}

.en-hero2__rings span {
    position: absolute;
    inset: 0;
    border: 1px solid var(--c-soft);
    border-radius: 50%;
    opacity: 0.35;
    animation: enRingOut 4.5s var(--ease) infinite;
}

.en-hero2__rings span:nth-child(2) {
    inset: 0.85rem;
    animation-delay: 0.5s;
    border-color: var(--c-coral);
}

.en-hero2__rings span:nth-child(3) {
    inset: 1.7rem;
    animation-delay: 1s;
}

@keyframes enRingOut {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.55;
    }
}

.en-orbit {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    position: relative;
    z-index: 1;
    padding: var(--sp-lg) 0;
}

.en-orbit__ring {
    position: relative;
    min-height: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    padding: var(--sp-md) 0;
}

@media (min-width: 44rem) {
    .en-orbit__ring {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        min-height: 20rem;
        background: radial-gradient(ellipse at center, rgba(255, 217, 226, 0.4) 0%, transparent 65%);
    }

    .en-orbit__item {
        position: absolute;
    }

    .en-orbit__item--1 {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .en-orbit__item--2 {
        bottom: 0;
        left: 0;
    }

    .en-orbit__item--3 {
        bottom: 0;
        right: 0;
    }

    .en-orbit__item .card {
        max-width: 16rem;
        animation: enFloat 5s var(--ease) infinite;
    }

    .en-orbit__item--2 .card {
        animation-delay: 0.4s;
    }

    .en-orbit__item--3 .card {
        animation-delay: 0.8s;
    }
}

.en-orbit__item .card {
    animation: enFloat 5s var(--ease) infinite;
}

@keyframes enFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.en-section {
    padding: var(--sp-xl) 0;
    position: relative;
}

.en-zen {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    font-size: var(--fs-sm);
    line-height: 1.8;
    padding: var(--sp-md);
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--c-mist);
    box-shadow: var(--shadow);
}

.co-glow {
    position: absolute;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(255, 107, 154, 0.18) 0%, transparent 70%);
    top: -8rem;
    right: -4rem;
    pointer-events: none;
    animation: phBlob1 18s var(--ease) infinite;
}

.page-co--wrap {
    position: relative;
    background: linear-gradient(145deg, var(--c-blush) 0%, #fff 55%);
    border-bottom: 1px solid var(--c-mist);
}

.co-hero2 {
    position: relative;
    z-index: 2;
    padding: var(--sp-2xl) 0 var(--sp-lg);
    overflow: visible;
}

.co-hero2__paper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-lg);
    background: #fffefa;
    color: var(--c-plum);
    border-radius: 0.15rem;
    border: 1px solid rgba(122, 46, 77, 0.12);
    box-shadow: 0 0.25rem 0 rgba(122, 46, 77, 0.06), 0 1.5rem 3rem rgba(122, 46, 77, 0.1);
    transform: rotate(-0.6deg);
    animation: coPaper 0.85s var(--ease-out) both;
}

.co-hero2__paper::after {
    content: "AMS \A STUDIO";
    white-space: pre;
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 3.1rem;
    height: 3.8rem;
    border: 2px dashed var(--c-soft);
    border-radius: 0.1rem;
    background: linear-gradient(165deg, #fff, var(--c-mist));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-align: center;
    color: var(--c-plum);
    padding: 0.4rem 0.2rem;
    box-shadow: 0 0.15rem 0.4rem rgba(255, 107, 154, 0.15);
    animation: coStamp 5s var(--ease) infinite;
}

.co-hero2__tape {
    position: absolute;
    top: -0.4rem;
    left: 18%;
    width: 4.2rem;
    height: 1.1rem;
    background: linear-gradient(90deg, var(--c-soft), var(--c-mist));
    opacity: 0.5;
    transform: rotate(-3deg);
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.06);
    border-radius: 0.1rem;
    animation: coTape 4s var(--ease) infinite alternate;
    pointer-events: none;
}

@keyframes coTape {
    from {
        transform: rotate(-3deg) translateX(0);
    }

    to {
        transform: rotate(-1deg) translateX(0.1rem);
    }
}

.co-hero2__kicker {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-coral);
    margin: 0 0 var(--sp-sm);
    animation: phFadeUp 0.5s var(--ease-out) both;
}

.co-hero2__headline {
    position: relative;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 20ch;
    margin: 0 0 var(--sp-sm);
    color: var(--c-plum);
    animation: phFadeUp 0.6s var(--ease-out) 0.04s both;
}

.co-hero2__headline span {
    color: var(--c-coral);
    font-style: normal;
    border-bottom: 3px solid var(--c-mist);
    padding-bottom: 0.05em;
    animation: coUnderline 3.5s var(--ease) infinite;
}

@keyframes coUnderline {

    0%,
    100% {
        border-bottom-color: var(--c-mist);
    }

    50% {
        border-bottom-color: var(--c-coral);
    }
}

.co-hero2__lead {
    max-width: 32rem;
    font-size: var(--fs-md);
    line-height: 1.7;
    margin: 0 0 var(--sp-md);
    color: var(--c-plum);
    opacity: 0.9;
    animation: phFadeUp 0.65s var(--ease-out) 0.1s both;
}

.co-hero2__row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    align-items: center;
    font-size: var(--fs-sm);
    animation: phFadeUp 0.7s var(--ease-out) 0.12s both;
}

.co-hero2__row a {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    background: var(--c-blush);
    border: 1px solid var(--c-mist);
    border-radius: var(--radius-pill);
    color: var(--c-plum);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.co-hero2__row a:hover {
    border-color: var(--c-coral);
    background: #fff;
    transform: translateY(-1px);
}

.co-hero2__line {
    position: relative;
    height: 1px;
    background: var(--c-mist);
    margin: var(--sp-sm) 0 0;
    max-width: 20rem;
    transform-origin: left;
    animation: coLine 1s var(--ease-out) 0.2s both;
}

@keyframes coLine {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.co-hero2__line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    margin-top: -0.2rem;
    background: var(--c-coral);
    border-radius: 50%;
    animation: coDot 1.2s var(--ease) infinite 0.5s;
}

@keyframes coDot {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes coStamp {

    0%,
    100% {
        transform: rotate(0.5deg) scale(1);
    }

    50% {
        transform: rotate(-0.3deg) scale(0.99);
    }
}

@keyframes coPaper {
    from {
        opacity: 0;
        transform: rotate(0) translate3d(0, 0.6rem, 0);
    }

    to {
        opacity: 1;
        transform: rotate(-0.6deg) translate3d(0, 0, 0);
    }
}

.co-slab {
    padding: 0 0 var(--sp-xl);
    position: relative;
    z-index: 1;
}

.co-cols {
    display: grid;
    gap: var(--sp-lg);
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (min-width: 52rem) {
    .co-cols {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.co-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: var(--sp-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.co-card--form {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid var(--c-mist);
    transition: box-shadow 0.4s, transform 0.4s;
}

@keyframes coBorder {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(12deg);
    }
}

.co-card--form:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.co-facts {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    margin: var(--sp-md) 0 0;
}

.co-fact {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    font-size: var(--fs-sm);
    padding: 0.55rem 0.65rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0.5rem;
    border: 1px solid var(--c-mist);
    transition: border-color 0.25s, background 0.25s;
}

.co-fact:hover {
    background: #fff;
    border-color: var(--c-coral);
}

.co-fact i {
    color: var(--c-coral);
    margin-top: 0.15rem;
}

.co-why {
    display: grid;
    gap: var(--sp-sm);
    grid-template-columns: 1fr;
}

@media (min-width: 32rem) {
    .co-why {
        grid-template-columns: repeat(3, 1fr);
    }
}

.co-why__item {
    text-align: center;
    font-size: var(--fs-sm);
    padding: var(--sp-md);
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--c-mist);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: phFadeUp 0.6s var(--ease-out) both;
}

.co-why__item:nth-child(1) {
    animation-delay: 0.1s;
}

.co-why__item:nth-child(2) {
    animation-delay: 0.2s;
}

.co-why__item:nth-child(3) {
    animation-delay: 0.3s;
}

.co-why__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.co-why__item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--c-coral);
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.reveal.reveal-rotate {
    opacity: 0;
    transform: translate3d(0, 1.1rem, 0) rotate(0.4deg);
    transition: transform 0.75s var(--ease), opacity 0.7s;
}

.reveal.reveal-rotate.is-visible {
    opacity: 1;
    transform: none;
}

.reveal.reveal-spring {
    opacity: 0;
    transform: scale(0.96) translate3d(0, 0.4rem, 0);
    transition: transform 0.75s var(--ease-out), opacity 0.65s;
}

.reveal.reveal-spring.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .ph-blob,
    .marquee__track,
    .eat-hero2__mesh,
    .eat-hero2__arc,
    .eat-hero2__chips span,
    .en-hero2__daystrip span,
    .en-hero2__bloom,
    .en-hero2__wave-svg,
    .en-hero2__rings span,
    .en-orbit__item .card,
    .en-orbit__item--2 .card,
    .en-orbit__item--3 .card,
    .ph-title,
    .ph-lead,
    .ph-kicker,
    .ph-hero__actions,
    .ph-pill,
    .ph-pills,
    .co-hero2__paper,
    .co-hero2__kicker,
    .co-hero2__headline,
    .co-hero2__lead,
    .co-hero2__row,
    .co-why__item,
    .co-border {
        animation: none;
    }

    .reveal.reveal-rotate,
    .reveal.reveal-spring,
    .reveal-rotate,
    .reveal-spring,
    .reveal {
        opacity: 1;
        transform: none;
    }
}

.legal a {
    font-size: var(--fs-xs);
}

.legal a+a::before {
    content: " · ";
    color: #fdeef3;
    opacity: 0.5;
}