:root {
    --bg-sand: #efe4d5;
    --bg-cream: #f8f1e8;
    --bg-peach: #ead0bd;
    --bg-rose: #e6c7c2;
    --bg-mist: #dce6ec;
    --bg-water: #cbd8df;
    --bg-dawn: #eef4f6;
    --text-main: #302923;
    --text-soft: #6f6259;
    --text-muted: #9a8c82;
    --accent-apricot: #d8a98d;
    --accent-rose: #cfa6a2;
    --accent-clay: #b98f78;
    --accent-blue: #b9c9d4;
    --accent-sage: #b8c5b4;
    --surface-soft: rgba(255, 250, 244, .74);
    --surface-glass: rgba(255, 255, 255, .42);
    --surface-milk: rgba(248, 241, 232, .86);
    --line-soft: rgba(92, 73, 60, .14);
    --line-light: rgba(255, 250, 244, .58);
    --line-dark: rgba(92, 73, 60, .14);
    --shadow-soft: 0 24px 80px rgba(84, 61, 45, .14);
    --shadow-card: 0 18px 50px rgba(84, 61, 45, .1);
    --shadow-float: 0 30px 100px rgba(92, 73, 60, .18);
    --color-night: #3a302b;
    --color-deep: #6f6259;
    --color-ink: var(--text-main);
    --color-slate: var(--text-soft);
    --color-muted: var(--text-muted);
    --color-mist: var(--bg-mist);
    --color-paper: var(--bg-cream);
    --color-porcelain: #fffaf4;
    --color-amber: var(--accent-apricot);
    --color-copper: var(--accent-clay);
    --color-teal: var(--accent-blue);
    --color-coral: var(--accent-rose);
    --color-lilac: #c9bdd7;
    --color-success-bg: #eef7ee;
    --color-success-text: #38513a;
    --color-error-bg: #f9e8e2;
    --color-error-text: #7b3b32;
    --radius-sm: 6px;
    --radius-md: 8px;
    --header-height: 104px;
    --header-logo-chip-width: min(14.4rem, 76vw);
    --header-logo-chip-height: clamp(3.65rem, 4.8vw, 4.12rem);
    --header-logo-mark-width: clamp(3.4rem, 4.2vw, 3.88rem);
    --header-logo-mark-height: clamp(3.4rem, 4.2vw, 3.88rem);
    --header-logo-chip-width-open: clamp(16.2rem, 22vw, 19.6rem);
    --header-logo-chip-height-open: clamp(4.35rem, 5vw, 4.95rem);
    --header-logo-mark-width-open: clamp(4.45rem, 5.1vw, 4.95rem);
    --header-logo-mark-height-open: clamp(4.45rem, 5.1vw, 4.95rem);
    --footer-logo-chip-width: min(12.4rem, 60vw);
    --footer-logo-chip-height: 4.75rem;
    --footer-logo-mark-size: 3.86rem;
    --ease: cubic-bezier(.2, .75, .18, 1);
    --ease-soft: cubic-bezier(.16, 1, .3, 1);
    --header-motion: .62s cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-sand);
}

body {
    margin: 0;
    color: var(--text-main);
    background:
        radial-gradient(circle at 50% -8%, rgba(255, 255, 255, .95), transparent 27rem),
        radial-gradient(circle at 12% 18%, rgba(220, 230, 236, .76), transparent 25rem),
        radial-gradient(circle at 84% 26%, rgba(230, 199, 194, .58), transparent 27rem),
        radial-gradient(circle at 72% 78%, rgba(216, 169, 141, .32), transparent 32rem),
        linear-gradient(180deg, #eef4f6 0%, #f6ece1 42%, #ead8c9 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .34;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .38) 0 1px, transparent 1px),
        repeating-linear-gradient(0deg, rgba(92, 73, 60, .025) 0 1px, transparent 1px 4px);
    background-size: 38px 38px, 100% 5px;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

main {
    overflow-x: clip;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--accent-clay);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--color-paper);
    color: var(--color-night);
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    transform: translateY(0);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-apricot), var(--accent-rose));
    transform: scaleX(var(--progress, 0));
    transform-origin: left;
    will-change: transform;
}

.cursor-spotlight {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 22rem;
    height: 22rem;
    pointer-events: none;
    opacity: .2;
    background:
        linear-gradient(135deg, rgba(185, 201, 212, .48), transparent 55%),
        linear-gradient(315deg, rgba(216, 169, 141, .32), transparent 58%);
    filter: blur(46px);
    transform: translate3d(calc(var(--cursor-x, -40rem) - 11rem), calc(var(--cursor-y, -40rem) - 11rem), 0);
    transition: opacity .25s var(--ease);
    contain: layout paint style;
    will-change: transform;
}

.shell {
    width: min(100% - 2rem, 1180px);
    margin-inline: auto;
}

.narrow {
    width: min(100% - 2rem, 820px);
}

.section {
    padding-block: 5rem;
}

.section-dark {
    position: relative;
    color: var(--text-main);
    background:
        radial-gradient(circle at 12% 18%, rgba(203, 216, 220, .45), transparent 28rem),
        radial-gradient(circle at 84% 18%, rgba(230, 199, 194, .38), transparent 27rem),
        linear-gradient(180deg, rgba(238, 228, 216, .92), rgba(216, 169, 141, .2));
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(92, 73, 60, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 73, 60, .035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.section-dark > * {
    position: relative;
}

.section-light {
    color: var(--color-ink);
    background:
        linear-gradient(135deg, rgba(217, 155, 85, .1), transparent 32%),
        linear-gradient(180deg, var(--color-porcelain), var(--color-paper));
}

.section-muted {
    color: var(--color-ink);
    background:
        linear-gradient(135deg, rgba(203, 216, 220, .28), transparent 38%),
        linear-gradient(180deg, #edf4f2, var(--color-paper));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 1rem;
    color: currentColor;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.2;
    opacity: .78;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 1.8rem;
    height: 1px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-amber));
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.04;
    font-weight: 820;
    letter-spacing: 0;
}

h1 {
    max-width: 11ch;
    margin-bottom: 1.35rem;
    font-size: 3rem;
}

h2 {
    max-width: 13ch;
    margin-bottom: 1rem;
    font-size: 2.1rem;
}

h3 {
    margin-bottom: .75rem;
    font-size: 1.24rem;
}

p {
    color: inherit;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.section-heading p:not(.eyebrow) {
    max-width: 64ch;
    color: rgba(20, 32, 51, .72);
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark p {
    color: var(--text-soft);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    overflow: hidden;
    padding: .9rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    isolation: isolate;
    transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .38) 46%, transparent 72%);
    transform: translateX(-130%);
    transition: transform .55s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover::after {
    transform: translateX(130%);
}

.button:disabled {
    cursor: not-allowed;
    opacity: .62;
    transform: none;
}

.button-primary {
    color: var(--color-night);
    background: linear-gradient(135deg, var(--color-teal), var(--color-amber));
    border-color: rgba(255, 250, 242, .24);
    box-shadow: 0 16px 38px rgba(216, 169, 141, .18);
}

.section-light .button-primary,
.section-muted .button-primary {
    color: var(--color-paper);
    background: linear-gradient(135deg, var(--color-deep), var(--color-copper));
    border-color: transparent;
}

.button-secondary {
    color: var(--text-main);
    background: rgba(255, 250, 244, .42);
    border-color: var(--line-light);
    backdrop-filter: blur(14px);
}

.button-wide {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--text-main);
    background: linear-gradient(180deg, rgba(248, 241, 232, .44), rgba(248, 241, 232, .08));
    border-bottom: 1px solid rgba(255, 250, 244, .28);
    backdrop-filter: blur(18px);
    box-shadow: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: background, box-shadow, border-color;
    transition: background var(--header-motion), box-shadow var(--header-motion), border-color var(--header-motion);
}

.site-header.is-scrolled {
    background: linear-gradient(180deg, rgba(255, 250, 244, .82), rgba(255, 250, 244, .42));
    box-shadow: 0 14px 42px rgba(84, 61, 45, .08);
}

.header-shell {
    position: relative;
    display: grid;
    justify-items: center;
    gap: .86rem;
    padding-block: .62rem .88rem;
    transform: translate3d(0, 0, 0);
    transition: transform var(--header-motion);
}

.site-header.is-scrolled .header-shell {
    transform: translate3d(0, -.1rem, 0);
}

.brand-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .78rem;
    --brand-mark-y: -.16rem;
    --brand-mark-scale: .96;
    --brand-mark-hover-scale: .99;
    width: var(--header-logo-chip-width-open);
    height: var(--header-logo-chip-height-open);
    overflow: hidden;
    padding: .48rem 1.18rem .5rem .72rem;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .2), transparent 52%),
        radial-gradient(circle at 84% 82%, rgba(216, 169, 141, .22), transparent 48%),
        linear-gradient(135deg, rgba(48, 41, 35, .94), rgba(26, 23, 20, .88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .26),
        inset 0 -18px 40px rgba(0, 0, 0, .16),
        0 18px 54px rgba(84, 61, 45, .15);
    isolation: isolate;
    transform-origin: center top;
    backface-visibility: hidden;
    contain: paint;
    will-change: transform;
    animation: site-brand-enter .78s var(--ease-soft) .08s both;
    transition:
        transform var(--header-motion),
        background var(--header-motion),
        box-shadow var(--header-motion),
        border-color var(--header-motion);
}

.site-header.is-scrolled .brand-logo {
    --brand-mark-y: .02rem;
    --brand-mark-scale: .98;
    --brand-mark-hover-scale: 1.01;
    transform: translate3d(0, -.04rem, 0) scale(.9);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .17), transparent 58%),
        linear-gradient(135deg, rgba(45, 38, 33, .9), rgba(28, 24, 21, .84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .22),
        0 12px 36px rgba(84, 61, 45, .12);
}

.brand-logo::after {
    content: "";
    position: absolute;
    inset: .34rem;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(255, 250, 244, .12);
}

.brand-logo:hover,
.brand-logo:focus-visible {
    border-color: rgba(255, 255, 255, .66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .32),
        inset 0 -18px 40px rgba(0, 0, 0, .13),
        0 20px 58px rgba(84, 61, 45, .18);
    transform: translate3d(0, -.12rem, 0);
}

.site-header.is-scrolled .brand-logo:hover,
.site-header.is-scrolled .brand-logo:focus-visible {
    transform: translate3d(0, -.08rem, 0) scale(.9);
}

.brand-logo:active {
    transform: translate3d(0, .03rem, 0) scale(.985);
}

.site-brand__glass,
.site-brand__shine {
    position: absolute;
    pointer-events: none;
}

.site-brand__glass {
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .2), transparent 34%),
        linear-gradient(90deg, rgba(255, 255, 255, .04), transparent 42%, rgba(255, 255, 255, .06));
}

.site-brand__shine {
    inset: -30% auto -30% -42%;
    z-index: 3;
    width: 34%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .76), transparent);
    opacity: 0;
    transform: translate3d(-140%, 0, 0) rotate(18deg);
    animation: site-brand-shine 1.22s var(--ease-soft) .7s both;
}

.site-brand__mark {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 auto;
    width: var(--header-logo-mark-width-open);
    height: var(--header-logo-mark-height-open);
    place-items: center;
    overflow: visible;
    border-radius: 999px;
    background: transparent;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
    transform: translate3d(0, 0, 0);
    transition: width var(--header-motion), height var(--header-motion), transform .5s var(--ease-soft);
}

.site-brand__mark::after {
    content: none;
}

.site-brand__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: translate3d(0, var(--brand-mark-y), 0) scale(var(--brand-mark-scale));
    transform-origin: center;
    opacity: .98;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .08));
    animation: site-brand-mark-settle .86s var(--ease-soft) .14s both;
    transition: transform .56s var(--ease-soft), opacity .3s var(--ease);
}

.brand-logo:hover .site-brand__image,
.brand-logo:focus-visible .site-brand__image {
    transform: translate3d(0, var(--brand-mark-y), 0) scale(var(--brand-mark-hover-scale));
}

.site-brand__copy {
    position: relative;
    z-index: 2;
    display: grid;
    min-width: 0;
    text-align: left;
    transform: translate3d(0, 0, 0);
    animation: site-brand-text-in .7s var(--ease-soft) .34s both;
    transition: opacity var(--header-motion), transform var(--header-motion), width var(--header-motion);
}

.site-brand__name {
    color: rgba(255, 250, 244, .96);
    font-size: clamp(1rem, 1.32vw, 1.16rem);
    font-weight: 520;
    line-height: 1.04;
    letter-spacing: .08em;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .24);
}

.site-brand__tagline {
    margin-top: .12rem;
    color: rgba(255, 250, 244, .82);
    font-size: clamp(.48rem, .62vw, .56rem);
    font-weight: 850;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .22);
}

.site-header.is-scrolled .site-brand__mark {
    width: var(--header-logo-mark-width);
    height: var(--header-logo-mark-height);
}

.site-header.is-scrolled .site-brand__copy {
    transform: translate3d(-.1rem, 0, 0);
}

@keyframes site-brand-enter {
    from {
        opacity: 0;
        transform: translate3d(0, -.32rem, 0) scale(.985);
    }

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

@keyframes site-brand-text-in {
    from {
        opacity: 0;
        transform: translate3d(-.24rem, 0, 0);
    }

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

@keyframes site-brand-mark-settle {
    from {
        opacity: .74;
        transform: translate3d(0, .06rem, 0) scale(.92);
    }

    to {
        opacity: 1;
        transform: translate3d(0, var(--brand-mark-y), 0) scale(var(--brand-mark-scale));
    }
}

@keyframes site-brand-shine {
    0%,
    22% {
        opacity: 0;
        transform: translate3d(-140%, 0, 0) rotate(18deg);
    }

    48% {
        opacity: .58;
    }

    100% {
        opacity: 0;
        transform: translate3d(520%, 0, 0) rotate(18deg);
    }
}

.icon-nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(3.2rem, 1fr));
    gap: .46rem;
    width: min(100%, 33.6rem);
    padding: .38rem;
    border: 1px solid var(--line-light);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .5), rgba(255, 250, 244, .26)),
        rgba(255, 250, 244, .32);
    box-shadow: 0 14px 40px rgba(84, 61, 45, .08);
    backdrop-filter: blur(18px);
    transform-origin: center top;
    backface-visibility: hidden;
    will-change: transform;
    transition:
        transform var(--header-motion),
        opacity var(--header-motion),
        box-shadow var(--header-motion),
        background var(--header-motion);
}

.site-header.is-scrolled .icon-nav {
    transform: translate3d(0, -.42rem, 0) scale(.91);
    box-shadow: 0 10px 28px rgba(84, 61, 45, .07);
}

.icon-nav__item {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 3.05rem;
    color: var(--text-soft);
    border: 1px solid transparent;
    border-radius: 999px;
    transition:
        transform .28s var(--ease-soft),
        color .24s var(--ease),
        background .24s var(--ease),
        box-shadow .24s var(--ease),
        border-color .24s var(--ease);
}

.site-header.is-scrolled .icon-nav__item {
    min-height: 3.05rem;
}

.icon-nav__item:hover,
.icon-nav__item:focus-visible,
.icon-nav__item.is-active {
    color: var(--text-main);
    background: rgba(255, 250, 244, .72);
    border-color: rgba(255, 255, 255, .7);
    box-shadow: 0 12px 30px rgba(84, 61, 45, .11);
    transform: translateY(-2px);
}

.icon-nav__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    transition: transform var(--header-motion), background .28s var(--ease-soft), box-shadow .28s var(--ease-soft);
}

.site-header.is-scrolled .icon-nav__icon {
    transform: scale(.94);
}

.icon-nav__icon svg {
    width: 1.43rem;
    height: 1.43rem;
    transition: transform var(--header-motion);
}

.site-header.is-scrolled .icon-nav__icon svg {
    transform: scale(.96);
}

.icon-nav__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.icon-nav__item--social .icon-nav__icon {
    background: linear-gradient(135deg, rgba(230, 199, 194, .6), rgba(255, 250, 244, .38));
}

.icon-nav__item--dog .icon-nav__icon {
    background: linear-gradient(135deg, rgba(216, 169, 141, .52), rgba(255, 250, 244, .38));
}

.icon-nav__item--dog .icon-nav__icon svg {
    width: 1.72rem;
    height: 1.72rem;
}

.site-header.is-scrolled .icon-nav__item--dog .icon-nav__icon svg {
    transform: scale(.96);
}

.icon-nav__item--dog .icon-nav__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.icon-nav__item--video .icon-nav__icon {
    background: linear-gradient(135deg, rgba(185, 201, 212, .72), rgba(255, 250, 244, .38));
}

.icon-nav__item--photo .icon-nav__icon {
    background: linear-gradient(135deg, rgba(184, 197, 180, .58), rgba(255, 250, 244, .38));
}

.icon-nav__item--info .icon-nav__icon {
    background: linear-gradient(135deg, rgba(207, 166, 162, .48), rgba(255, 250, 244, .38));
}

.icon-nav__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.icon-nav__preview {
    position: absolute;
    left: 50%;
    top: calc(100% + .72rem);
    z-index: 8;
    display: grid;
    gap: .24rem;
    width: min(17rem, calc(100vw - 2rem));
    padding: .9rem .95rem .95rem;
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .8), transparent 42%),
        linear-gradient(135deg, rgba(255, 250, 244, .84), rgba(238, 228, 216, .7));
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 14px;
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -.3rem) scale(.96);
    transition: opacity .2s var(--ease), transform .24s var(--ease-soft);
}

.icon-nav__preview::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -.42rem;
    width: .84rem;
    height: .84rem;
    background: rgba(255, 250, 244, .82);
    border-left: 1px solid rgba(255, 255, 255, .68);
    border-top: 1px solid rgba(255, 255, 255, .68);
    transform: translateX(-50%) rotate(45deg);
}

.icon-nav__preview-mark {
    width: 2rem;
    height: .34rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-apricot), var(--accent-rose));
}

.icon-nav__preview strong {
    margin-top: .16rem;
    font-size: .98rem;
    line-height: 1.15;
}

.icon-nav__preview span:last-child {
    color: var(--text-soft);
    font-size: .84rem;
    font-weight: 650;
    line-height: 1.35;
}

.icon-nav__item:hover .icon-nav__preview {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.icon-nav__item.is-active .icon-nav__icon {
    box-shadow: 0 0 0 5px rgba(216, 169, 141, .16);
}

.mobile-page-nav {
    display: none;
}

.mobile-page-nav svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.hero {
    position: relative;
    min-height: calc(88svh - var(--header-height));
    overflow: hidden;
    padding-block: 4.4rem 3.25rem;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% 0;
    height: 34%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(239, 228, 213, .92), transparent);
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .3;
    background:
        repeating-linear-gradient(0deg, rgba(255, 250, 242, .028) 0 1px, transparent 1px 4px),
        linear-gradient(120deg, rgba(203, 216, 220, .22), transparent 30%),
        linear-gradient(250deg, rgba(230, 199, 194, .18), transparent 34%);
    mask-image: linear-gradient(180deg, #000 18%, transparent 100%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero-text {
    max-width: 43rem;
    margin-bottom: 1.8rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.hero-actions .button {
    flex: 1 1 13rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
    max-width: 40rem;
    margin-top: 1.8rem;
}

.hero-metrics div {
    min-height: 6rem;
    padding: .9rem;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 242, .07);
    backdrop-filter: blur(12px);
}

.hero-metrics strong {
    display: block;
    color: var(--color-teal);
    font-size: 1.9rem;
    line-height: 1;
}

.hero-metrics span {
    display: block;
    margin-top: .5rem;
    color: rgba(247, 241, 232, .72);
    font-size: .82rem;
    font-weight: 720;
    line-height: 1.25;
}

.hero-media {
    width: min(100%, 25rem);
    justify-self: center;
}

.media-frame {
    position: relative;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    overflow: hidden;
    background: var(--color-deep);
    aspect-ratio: 19 / 23;
    transform-style: preserve-3d;
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .22), transparent 8% 92%, rgba(255, 255, 255, .12)),
        linear-gradient(180deg, rgba(255, 250, 242, .16), transparent 40%);
    mix-blend-mode: screen;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 4.8rem;
    height: 4.8rem;
    border: 1px solid rgba(255, 250, 242, .45);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: rgba(48, 41, 35, .36);
    backdrop-filter: blur(16px);
}

.play-pulse::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: .72rem solid transparent;
    border-bottom: .72rem solid transparent;
    border-left: 1.05rem solid var(--color-paper);
    transform: translate(-38%, -50%);
}

.play-pulse::after {
    content: "";
    position: absolute;
    inset: -.7rem;
    border: 1px solid rgba(216, 169, 141, .36);
    border-radius: inherit;
    animation: pulse-ring 2.8s var(--ease) infinite;
}

.frame-label,
.frame-readout {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.frame-label {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}

.frame-readout {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    justify-content: space-between;
}

.frame-label span,
.frame-readout span {
    padding: .45rem .6rem;
    color: var(--color-paper);
    background: rgba(48, 41, 35, .56);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    font-size: .78rem;
    font-weight: 780;
}

.frame-readout span:first-child {
    color: var(--color-coral);
}

.hero-soft {
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 18%, rgba(220, 230, 236, .86), transparent 26rem),
        radial-gradient(circle at 78% 10%, rgba(255, 250, 244, .9), transparent 24rem),
        radial-gradient(circle at 88% 58%, rgba(230, 199, 194, .5), transparent 28rem),
        linear-gradient(180deg, rgba(238, 244, 246, .86), rgba(246, 236, 225, .86) 52%, rgba(234, 216, 202, .9));
}

.hero-soft::after {
    inset: auto 0 0;
    height: 7rem;
    background: linear-gradient(180deg, transparent, rgba(239, 228, 213, .72));
}

.hero-soft .hero-noise {
    opacity: .38;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, .42) 0 1px, transparent 1px),
        repeating-linear-gradient(0deg, rgba(92, 73, 60, .026) 0 1px, transparent 1px 4px);
    background-size: 42px 42px, 100% 5px;
    mask-image: none;
}

.hero-light {
    position: absolute;
    width: 22rem;
    height: 22rem;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(32px);
    opacity: .44;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}

.hero-light--left {
    left: -8rem;
    top: 8rem;
    background: rgba(185, 201, 212, .72);
}

.hero-light--right {
    right: -8rem;
    top: 18rem;
    background: rgba(216, 169, 141, .62);
}

.hero-soft .hero-layout {
    padding-block: 1.6rem 1rem;
}

.hero-soft .eyebrow,
.hero-soft .hero-text {
    color: var(--text-soft);
}

.hero-soft h1 {
    max-width: 10.8ch;
    text-wrap: balance;
}

.hero-soft .button-secondary {
    color: var(--text-main);
    background: rgba(255, 250, 244, .44);
    border-color: rgba(255, 255, 255, .68);
    box-shadow: var(--shadow-card);
}

.hero-soft .hero-metrics div {
    border-color: rgba(255, 255, 255, .66);
    background: rgba(255, 250, 244, .46);
    box-shadow: 0 16px 44px rgba(84, 61, 45, .08);
}

.hero-soft .hero-metrics strong {
    color: var(--accent-clay);
}

.hero-soft .hero-metrics span {
    color: var(--text-soft);
}

.hero-artboard {
    position: relative;
    width: min(100%, 28rem);
    min-height: 34rem;
    margin-inline: auto;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}

.hero-artboard::before {
    content: "";
    position: absolute;
    inset: 10% 8% 8% 0;
    border-radius: 38% 48% 42% 52%;
    background:
        radial-gradient(circle at 45% 20%, rgba(255, 255, 255, .76), transparent 32%),
        linear-gradient(135deg, rgba(230, 199, 194, .58), rgba(203, 216, 220, .48));
    filter: blur(2px);
}

.photo-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    background: var(--surface-milk);
    box-shadow: var(--shadow-float);
}

.photo-card--main {
    inset: 1.2rem 2.2rem 2.4rem 1rem;
    padding: .62rem;
    transform: rotate(-2.2deg);
}

.photo-card--main img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    object-fit: cover;
}

.mood-scene {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px 12px 20px 14px;
    background:
        radial-gradient(circle at 58% 28%, rgba(255, 255, 255, .9) 0 2.5rem, rgba(255, 236, 209, .42) 2.6rem 8rem, transparent 13rem),
        linear-gradient(180deg, rgba(220, 230, 236, .92) 0 34%, rgba(247, 241, 232, .86) 34% 58%, rgba(234, 208, 189, .9) 58% 100%);
}

.mood-scene::before {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    top: 38%;
    height: 24%;
    border-radius: 48%;
    background:
        linear-gradient(180deg, rgba(185, 201, 212, .72), rgba(255, 255, 255, .12)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .25) 0 1px, transparent 1px 8px);
    transform: rotate(-2deg);
}

.mood-scene::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 8%;
    bottom: 9%;
    height: 18%;
    border-radius: 52% 48% 46% 54%;
    background: linear-gradient(135deg, rgba(111, 98, 89, .24), rgba(216, 169, 141, .18));
    box-shadow:
        2.8rem -3.2rem 0 -2.2rem rgba(48, 41, 35, .22),
        6.4rem -2.1rem 0 -2.8rem rgba(48, 41, 35, .16);
}

.photo-card--main > span {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    padding: .48rem .7rem;
    color: var(--text-main);
    background: rgba(255, 250, 244, .76);
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.photo-card--dog {
    right: 0;
    bottom: 4rem;
    z-index: 3;
    display: grid;
    gap: .28rem;
    width: 12.6rem;
    padding: .95rem;
    transform: rotate(3deg);
}

.photo-card--dog strong,
.social-preview-card strong {
    font-size: .92rem;
    line-height: 1.1;
}

.photo-card--dog small {
    color: var(--text-soft);
    font-weight: 650;
    line-height: 1.35;
}

.bone-line {
    position: relative;
    width: 3.2rem;
    height: 1.05rem;
    margin-bottom: .25rem;
}

.bone-line::before,
.bone-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.05rem;
    height: 1.05rem;
    border: 2px solid var(--accent-clay);
    border-radius: 999px;
    transform: translateY(-50%);
}

.bone-line::before {
    left: 0;
    box-shadow: .7rem 0 0 -.1rem var(--surface-milk);
}

.bone-line::after {
    right: 0;
    box-shadow: -.7rem 0 0 -.1rem var(--surface-milk);
}

.social-preview-card {
    position: absolute;
    left: 0;
    top: 5.2rem;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .38rem;
    width: 11.5rem;
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 16px;
    background: rgba(255, 250, 244, .72);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    transform: rotate(4deg);
}

.social-preview-card span {
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(185, 201, 212, .78), rgba(230, 199, 194, .62));
}

.social-preview-card span:nth-child(2) {
    background: linear-gradient(135deg, rgba(216, 169, 141, .64), rgba(255, 250, 244, .84));
}

.social-preview-card span:nth-child(3) {
    background: linear-gradient(135deg, rgba(184, 197, 180, .68), rgba(203, 216, 220, .7));
}

.social-preview-card strong {
    grid-column: 1 / -1;
    margin-top: .15rem;
}

.film-ribbon {
    position: absolute;
    left: 3.2rem;
    right: 1.2rem;
    bottom: 1rem;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .35rem;
    padding: .42rem;
    border-radius: 999px;
    background: rgba(48, 41, 35, .78);
    box-shadow: 0 18px 40px rgba(84, 61, 45, .18);
}

.film-ribbon span {
    height: .62rem;
    border-radius: 999px;
    background: rgba(255, 250, 244, .72);
}

.focus-corners {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.focus-corners::before,
.focus-corners::after {
    content: "";
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-color: rgba(185, 143, 120, .64);
}

.focus-corners::before {
    right: .4rem;
    top: 2rem;
    border-top: 2px solid;
    border-right: 2px solid;
}

.focus-corners::after {
    left: .4rem;
    bottom: 3.4rem;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.trust-band {
    color: var(--text-main);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .58), transparent 24rem),
        linear-gradient(90deg, rgba(203, 216, 220, .42), rgba(230, 199, 194, .28));
    border-top: 1px solid rgba(255, 255, 255, .62);
    border-bottom: 1px solid rgba(92, 73, 60, .08);
}

.trust-grid {
    display: grid;
    gap: 0;
}

.trust-grid div {
    display: grid;
    gap: .45rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(92, 73, 60, .1);
}

.trust-grid div:last-child {
    border-bottom: 0;
}

.trust-grid strong {
    color: var(--accent-clay);
    font-size: .82rem;
}

.trust-grid span {
    max-width: 18rem;
    font-weight: 760;
    line-height: 1.35;
}

.scroll-story {
    --story-progress: 0;
    --story-shift: 0px;
    --story-glow: 38%;
    --story-orbit-rotate: -7deg;
    --story-device-rotate: -2deg;
    --story-device-scale: 1;
    position: relative;
    overflow: visible;
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 4%, rgba(255, 255, 255, .82), transparent 25rem),
        radial-gradient(circle at var(--story-glow) 42%, rgba(230, 199, 194, .44), transparent 27rem),
        linear-gradient(180deg, rgba(248, 241, 232, .88), rgba(220, 230, 236, .52) 46%, rgba(234, 216, 202, .74));
    border-bottom: 1px solid rgba(92, 73, 60, .1);
}

.scroll-story::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(92, 73, 60, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 73, 60, .026) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 50% 42%, #000, transparent 72%);
}

.scroll-story__sticky {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
    padding-block: 4.5rem;
}

.scroll-story__copy {
    position: relative;
    z-index: 2;
    max-width: 42rem;
}

.scroll-story__copy h2 {
    max-width: 12ch;
}

.scroll-story__copy > p:not(.eyebrow) {
    max-width: 42rem;
    color: var(--text-soft);
}

.story-steps {
    display: grid;
    gap: .72rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.story-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .2rem .75rem;
    padding: .85rem .95rem;
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 24px 16px 26px 18px;
    background: rgba(255, 250, 244, .36);
    box-shadow: 0 12px 36px rgba(84, 61, 45, .06);
    opacity: .62;
    transform: translate3d(0, 0, 0);
    transition: opacity .58s var(--ease-soft), transform .62s var(--ease-soft), background .58s var(--ease-soft), box-shadow .58s var(--ease-soft);
    will-change: opacity, transform;
}

.story-step span {
    grid-row: span 2;
    color: var(--accent-clay);
    font-size: .78rem;
    font-weight: 900;
}

.story-step strong {
    line-height: 1.15;
}

.story-step p {
    margin: 0;
    color: var(--text-soft);
    font-size: .86rem;
    line-height: 1.38;
}

.story-step.is-active {
    opacity: 1;
    transform: translate3d(.35rem, 0, 0);
    background: rgba(255, 250, 244, .74);
    box-shadow: 0 20px 58px rgba(84, 61, 45, .12);
}

.scroll-story__stage {
    position: relative;
    min-height: 29rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 42px 24px 48px 26px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .78), transparent 27%),
        linear-gradient(135deg, rgba(255, 250, 244, .62), rgba(203, 216, 220, .34));
    box-shadow: 0 22px 70px rgba(84, 61, 45, .13);
    transform: translate3d(0, var(--story-shift), 0);
    isolation: isolate;
    contain: layout paint;
    backface-visibility: hidden;
    will-change: transform;
}

.story-orbit {
    position: absolute;
    inset: 12% 10%;
    border: 1px solid rgba(92, 73, 60, .12);
    border-radius: 999px;
    opacity: .58;
    transform: rotate(var(--story-orbit-rotate));
    transform-origin: center;
    will-change: transform;
}

.story-orbit::before,
.story-orbit::after {
    content: "";
    position: absolute;
    width: .78rem;
    height: .78rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-apricot));
    box-shadow: 0 0 0 .5rem rgba(255, 250, 244, .48);
}

.story-orbit::before {
    left: 14%;
    top: 10%;
}

.story-orbit::after {
    right: 16%;
    bottom: 14%;
}

.story-device {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    width: min(64%, 18rem);
    min-height: 20rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 36px 24px 40px 26px;
    background: rgba(255, 250, 244, .5);
    box-shadow: 0 18px 52px rgba(84, 61, 45, .1);
    transform: translate(-50%, -50%) rotate(var(--story-device-rotate)) scale(var(--story-device-scale));
    backface-visibility: hidden;
    will-change: transform;
}

.story-device span {
    min-height: 5.4rem;
    border-radius: 24px 16px 28px 18px;
    background: linear-gradient(135deg, rgba(203, 216, 220, .7), rgba(230, 199, 194, .5));
}

.story-device span:nth-child(2) {
    background: linear-gradient(135deg, rgba(216, 169, 141, .48), rgba(255, 250, 244, .7));
    transform: translateY(1rem);
}

.story-device strong {
    grid-column: 1 / -1;
    align-self: end;
    color: var(--text-soft);
    font-size: .82rem;
    text-transform: uppercase;
}

.story-layer {
    position: absolute;
    z-index: 3;
    display: grid;
    align-content: end;
    padding: .9rem;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px 18px 32px 20px;
    background: rgba(255, 250, 244, .7);
    box-shadow: 0 18px 52px rgba(84, 61, 45, .11);
    opacity: .18;
    transform: translate3d(var(--layer-x, 0), var(--layer-y, 0), 0) scale(.92) rotate(var(--layer-rotate, 0deg));
    transition: opacity .72s var(--ease-soft), transform .82s var(--ease-soft);
    backface-visibility: hidden;
    will-change: opacity, transform;
}

.story-layer.is-active {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--active-rotate, 0deg));
}

.story-layer strong {
    position: relative;
    z-index: 2;
    line-height: 1.14;
}

.story-layer--photo {
    left: 8%;
    top: 11%;
    width: 44%;
    min-height: 17rem;
    --layer-x: -1.4rem;
    --layer-y: 1rem;
    --layer-rotate: -7deg;
    --active-rotate: -3deg;
    background:
        radial-gradient(circle at 70% 22%, rgba(255, 255, 255, .9) 0 2.1rem, rgba(255, 236, 209, .45) 2.2rem 6rem, transparent 10rem),
        linear-gradient(180deg, rgba(220, 230, 236, .9) 0 36%, rgba(247, 241, 232, .88) 36% 60%, rgba(234, 208, 189, .92) 60%);
}

.story-sun,
.story-horizon {
    position: absolute;
    pointer-events: none;
}

.story-sun {
    right: 16%;
    top: 18%;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
}

.story-horizon {
    left: -8%;
    right: -10%;
    bottom: 24%;
    height: 24%;
    border-radius: 50%;
    background: rgba(185, 201, 212, .5);
    transform: rotate(-2deg);
}

.story-layer--social {
    right: 9%;
    top: 17%;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
    width: 36%;
    min-height: 13rem;
    --layer-x: 1.4rem;
    --layer-y: -.6rem;
    --layer-rotate: 6deg;
}

.story-layer--social span {
    min-height: 4.2rem;
    border-radius: 18px 14px 22px 15px;
    background: linear-gradient(135deg, rgba(203, 216, 220, .74), rgba(230, 199, 194, .5));
}

.story-layer--social strong {
    grid-column: 1 / -1;
}

.story-layer--dog {
    left: 14%;
    bottom: 12%;
    width: 35%;
    min-height: 10rem;
    --layer-x: -1.2rem;
    --layer-y: 1.2rem;
    --layer-rotate: 5deg;
    color: var(--text-main);
    background: linear-gradient(135deg, rgba(234, 208, 189, .78), rgba(255, 250, 244, .72));
}

.story-layer--dog svg {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: .85rem;
    color: var(--accent-clay);
    filter: drop-shadow(0 10px 20px rgba(84, 61, 45, .12));
}

.story-layer--dog svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.story-layer--cta {
    right: 11%;
    bottom: 11%;
    width: 42%;
    min-height: 11rem;
    --layer-x: 1.4rem;
    --layer-y: 1.2rem;
    --layer-rotate: -5deg;
    background:
        radial-gradient(circle at 100% 0%, rgba(203, 216, 220, .62), transparent 50%),
        linear-gradient(135deg, rgba(255, 250, 244, .86), rgba(216, 169, 141, .34));
}

.story-layer--cta span {
    width: max-content;
    margin-bottom: 1rem;
    padding: .38rem .68rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: var(--accent-clay);
    font-size: .78rem;
    font-weight: 850;
}

.service-grid {
    display: grid;
    gap: 1rem;
}

.service-card,
.detail-card,
.process-step,
.consulting-points article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 242, .78);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, var(--shadow-soft);
}

.service-card::before,
.detail-card::before,
.consulting-points article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-amber), var(--color-coral));
}

.service-card {
    min-height: 24rem;
    padding: 1.4rem;
}

.service-card > span,
.process-step > span {
    display: inline-flex;
    margin-bottom: 2.2rem;
    color: var(--color-copper);
    font-weight: 850;
}

.service-card p,
.detail-card p,
.process-step p,
.consulting-points p,
.about-copy p {
    color: rgba(20, 32, 51, .72);
}

.service-card ul {
    display: grid;
    gap: .5rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(20, 32, 51, .72);
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: .35rem;
    height: .35rem;
    border-radius: 999px;
    background: var(--color-teal);
}

.offer-suite {
    position: relative;
    overflow: hidden;
}

.offer-suite::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8rem;
    width: min(72rem, 88vw);
    height: min(72rem, 88vw);
    pointer-events: none;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .52), transparent 28%),
        radial-gradient(circle at 28% 60%, rgba(203, 216, 220, .34), transparent 34%),
        radial-gradient(circle at 72% 52%, rgba(230, 199, 194, .32), transparent 36%);
    transform: translateX(-50%);
    filter: blur(10px);
}

.offer-suite > * {
    position: relative;
}

.offer-stack {
    display: grid;
    gap: 1.2rem;
}

.offer-panel {
    position: relative;
    display: grid;
    gap: 1.4rem;
    overflow: hidden;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 30px;
    background: rgba(255, 250, 244, .58);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.offer-panel:nth-child(odd) {
    border-top-left-radius: 46px;
    border-bottom-right-radius: 42px;
}

.offer-panel:nth-child(even) {
    border-top-right-radius: 46px;
    border-bottom-left-radius: 42px;
}

.offer-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .58), transparent 28%),
        linear-gradient(135deg, transparent, rgba(255, 255, 255, .26));
}

.offer-panel > * {
    position: relative;
}

.offer-copy {
    display: grid;
    align-content: center;
}

.offer-number {
    width: fit-content;
    margin-bottom: 1.2rem;
    padding: .35rem .65rem;
    color: var(--text-soft);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
    font-size: .78rem;
    font-weight: 850;
}

.offer-copy h3 {
    max-width: 15ch;
    font-size: 1.75rem;
    text-wrap: balance;
}

.offer-copy p:not(.eyebrow) {
    max-width: 42rem;
    color: var(--text-soft);
}

.offer-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.offer-copy li {
    padding: .5rem .68rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 999px;
    background: rgba(255, 250, 244, .54);
    font-size: .86rem;
    font-weight: 760;
}

.offer-visual {
    min-height: 15rem;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 30px;
    background: rgba(255, 255, 255, .28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}

.social-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .62rem;
    padding: .85rem;
}

.social-mockup span {
    min-height: 5.4rem;
    border-radius: 24px 18px 26px 17px;
    background:
        linear-gradient(135deg, rgba(255, 250, 244, .58), transparent),
        linear-gradient(135deg, var(--bg-water), var(--bg-rose));
    box-shadow: 0 14px 30px rgba(84, 61, 45, .08);
}

.social-mockup span:nth-child(2),
.social-mockup span:nth-child(5) {
    transform: translateY(1rem);
    background:
        linear-gradient(135deg, rgba(255, 250, 244, .54), transparent),
        linear-gradient(135deg, var(--bg-peach), var(--bg-cream));
}

.social-mockup span:nth-child(3),
.social-mockup span:nth-child(4) {
    background:
        linear-gradient(135deg, rgba(255, 250, 244, .52), transparent),
        linear-gradient(135deg, var(--accent-sage), var(--bg-mist));
}

.dog-mockup {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .78), transparent 28%),
        linear-gradient(180deg, rgba(234, 208, 189, .56), rgba(203, 216, 220, .42));
}

.dog-mockup strong {
    max-width: 12rem;
    color: var(--text-main);
    font-size: 1.35rem;
    line-height: 1.08;
    text-align: center;
}

.paw {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(185, 143, 120, .35);
    box-shadow:
        1.3rem -.8rem 0 -.45rem rgba(185, 143, 120, .32),
        -.1rem -1.2rem 0 -.55rem rgba(185, 143, 120, .32),
        -.95rem -.55rem 0 -.52rem rgba(185, 143, 120, .32);
}

.paw-1 {
    left: 17%;
    top: 26%;
    transform: rotate(-18deg);
}

.paw-2 {
    right: 18%;
    bottom: 20%;
    transform: rotate(18deg) scale(.86);
}

.training-line {
    position: absolute;
    inset: 22% 12%;
    border: 1px dashed rgba(111, 98, 89, .24);
    border-radius: 45% 55% 48% 52%;
}

.video-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    align-content: end;
    padding: .85rem;
    background:
        linear-gradient(135deg, rgba(203, 216, 220, .58), rgba(255, 250, 244, .34)),
        rgba(255, 255, 255, .24);
}

.video-mockup .clapper {
    grid-column: 1 / -1;
    height: 4.8rem;
    border-radius: 24px 18px 22px 18px;
    background:
        repeating-linear-gradient(135deg, rgba(48, 41, 35, .62) 0 14px, rgba(255, 250, 244, .72) 14px 28px),
        var(--text-main);
    box-shadow: var(--shadow-card);
}

.video-mockup span {
    height: 6rem;
    border-radius: 20px 24px 18px 26px;
    background: linear-gradient(180deg, rgba(48, 41, 35, .64), rgba(185, 201, 212, .54));
}

.photo-mockup {
    position: relative;
    min-height: 18rem;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 250, 244, .72), transparent 28%),
        linear-gradient(135deg, rgba(230, 199, 194, .46), rgba(216, 169, 141, .34));
}

.photo-layer {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 28px 18px 30px 20px;
    background: linear-gradient(135deg, rgba(255, 250, 244, .72), rgba(203, 216, 220, .46));
    box-shadow: var(--shadow-card);
}

.photo-layer--one {
    inset: 13% 18% 21% 15%;
    transform: rotate(-4deg);
}

.photo-layer--two {
    inset: 23% 12% 13% 28%;
    transform: rotate(5deg);
}

.photo-focus {
    position: absolute;
    inset: 25% 25%;
    border: 2px solid rgba(185, 143, 120, .62);
    border-radius: 18px;
}

.info-mockup {
    display: grid;
    gap: .7rem;
    align-content: center;
    padding: 1rem;
    background:
        linear-gradient(135deg, rgba(255, 250, 244, .64), rgba(230, 199, 194, .36)),
        rgba(255, 255, 255, .24);
}

.info-mockup span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.8rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 250, 244, .62);
    color: var(--text-main);
    font-weight: 820;
}

.info-mockup span::after {
    content: "Anfrage";
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 760;
}

.process-section {
    border-block: 1px solid rgba(92, 73, 60, .1);
}

.process-list {
    display: grid;
    border-top: 1px solid rgba(92, 73, 60, .12);
}

.process-step {
    padding: 1.35rem 0;
    color: var(--text-main);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(92, 73, 60, .12);
    border-radius: 0;
    box-shadow: none;
}

.process-step > span {
    color: var(--accent-clay);
}

.process-step p {
    color: var(--text-soft);
}

.portfolio-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1.4rem;
}

.filter-button {
    min-height: 2.75rem;
    padding: .65rem .9rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    color: var(--color-ink);
    background: rgba(255, 250, 242, .6);
    font-weight: 800;
    transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}

.filter-button:hover {
    transform: translateY(-1px);
    border-color: rgba(185, 143, 120, .36);
}

.filter-button.is-active {
    color: var(--text-main);
    background: linear-gradient(135deg, rgba(255, 250, 244, .9), rgba(216, 169, 141, .38));
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    gap: 1rem;
}

.project-card {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 28rem;
    overflow: hidden;
    padding: 1.1rem;
    border: 0;
    border-radius: 28px;
    color: var(--bg-cream);
    background: var(--text-main);
    text-align: left;
    isolation: isolate;
    box-shadow: var(--shadow-soft);
}

.project-card:nth-child(2n) {
    border-top-left-radius: 42px;
    border-bottom-right-radius: 22px;
}

.project-card:nth-child(2n + 1) {
    border-top-right-radius: 42px;
    border-bottom-left-radius: 22px;
}

.project-card[hidden] {
    display: none;
}

.project-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease), filter .55s var(--ease);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(48, 41, 35, 0), rgba(48, 41, 35, .88)),
        linear-gradient(135deg, rgba(216, 169, 141, .18), transparent 46%);
}

.project-card:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.05);
}

.project-card span {
    margin-bottom: .45rem;
    color: rgba(248, 241, 232, .78);
    font-size: .85rem;
    font-weight: 800;
}

.project-card .project-title {
    display: block;
    max-width: 12ch;
    margin-bottom: 0;
    color: var(--bg-cream);
    font-size: 1.55rem;
    font-weight: 820;
    line-height: 1.05;
}

.split-layout,
.consulting-layout,
.about-layout,
.contact-layout {
    display: grid;
    gap: 2rem;
}

.audience-grid {
    display: grid;
    gap: .65rem;
}

.audience-grid span {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    padding: .85rem 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(203, 216, 220, .3), rgba(255, 250, 242, .72)),
        rgba(255, 255, 255, .5);
    font-weight: 800;
}

.consulting-section {
    overflow: hidden;
}

.consulting-points {
    display: grid;
    gap: 1rem;
}

.consulting-points article {
    padding: 1.25rem;
    color: var(--text-main);
    background: rgba(255, 250, 244, .5);
    border-color: rgba(255, 255, 255, .66);
    box-shadow: var(--shadow-card);
}

.consulting-points p {
    color: var(--text-soft);
}

.about-visual {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-deep);
    aspect-ratio: 36 / 43;
    box-shadow: var(--shadow-soft);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-copy {
    align-self: center;
}

.about-copy h2 {
    max-width: 14ch;
}

.cta-section {
    padding-block: 4rem;
    border-block: 1px solid rgba(92, 73, 60, .1);
}

.cta-panel {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 24px;
    background: rgba(255, 250, 244, .48);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.cta-panel h2 {
    max-width: 14ch;
}

.cta-panel p {
    max-width: 42rem;
}

.cta-panel .button {
    width: fit-content;
}

.contact-layout {
    align-items: start;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(203, 216, 220, .54), transparent 26rem),
        radial-gradient(circle at 84% 28%, rgba(230, 199, 194, .48), transparent 25rem),
        linear-gradient(180deg, rgba(248, 241, 232, .9), rgba(239, 228, 213, .94));
}

.contact-section::before {
    content: "";
    position: absolute;
    right: -8rem;
    bottom: -10rem;
    width: 30rem;
    height: 30rem;
    pointer-events: none;
    border-radius: 999px;
    background: rgba(216, 169, 141, .28);
    filter: blur(20px);
}

.contact-note {
    display: grid;
    gap: .55rem;
    margin-top: 1.4rem;
}

.contact-note span {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: .72rem .88rem;
    border: 1px solid rgba(255, 255, 255, .66);
    border-left: 3px solid var(--accent-clay);
    border-radius: 14px;
    background: rgba(255, 250, 244, .5);
    color: var(--text-soft);
    box-shadow: 0 12px 28px rgba(84, 61, 45, .06);
    font-weight: 760;
}

.form-wrap {
    width: 100%;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 1rem;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .86), transparent 24rem),
        linear-gradient(135deg, rgba(255, 250, 244, .82), rgba(234, 208, 189, .35)),
        rgba(255, 250, 244, .72);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(18px);
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: .65rem;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 18px;
}

.contact-form > * {
    position: relative;
}

.form-kicker {
    display: grid;
    gap: .2rem;
    padding: .85rem .9rem;
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 16px;
    background: rgba(255, 250, 244, .48);
}

.form-kicker span {
    color: var(--accent-clay);
    font-size: .8rem;
    font-weight: 850;
    text-transform: uppercase;
}

.form-kicker p {
    margin: 0;
    color: var(--text-soft);
    font-size: .92rem;
    line-height: 1.45;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: .45rem;
    color: var(--text-main);
    font-weight: 800;
}

.contact-form label > span {
    font-size: .9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 3.2rem;
    border: 1px solid rgba(92, 73, 60, .16);
    border-radius: 14px;
    padding: .85rem .9rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, .58);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.contact-form textarea {
    min-height: 10rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-clay);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(216, 169, 141, .18);
    outline: 0;
}

.contact-form [aria-invalid="true"] {
    border-color: var(--color-error-text);
}

.field-error {
    color: var(--color-error-text);
    font-size: .86rem;
    font-weight: 760;
}

.checkbox-field {
    grid-template-columns: 1.2rem minmax(0, 1fr);
    align-items: start;
    gap: .7rem;
    font-weight: 680;
}

.checkbox-field input {
    -webkit-appearance: none;
    appearance: none;
    display: grid;
    place-items: center;
    min-height: 0;
    inline-size: 1.15rem;
    block-size: 1.15rem;
    width: 1.15rem;
    height: 1.15rem;
    min-width: 1.15rem;
    margin: .24rem 0 0;
    padding: 0;
    border: 1.5px solid rgba(92, 73, 60, .34);
    border-radius: .36rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 250, 244, .68));
    box-shadow: 0 8px 18px rgba(84, 61, 45, .08);
    transition:
        background .22s var(--ease-soft),
        border-color .22s var(--ease-soft),
        box-shadow .22s var(--ease-soft);
}

.checkbox-field input::before {
    content: "";
    width: .34rem;
    height: .62rem;
    border-right: 2px solid var(--color-paper);
    border-bottom: 2px solid var(--color-paper);
    opacity: 0;
    transform: translateY(-.08rem) rotate(42deg) scale(.72);
    transition:
        opacity .18s var(--ease-soft),
        transform .2s var(--ease-soft);
}

.checkbox-field input:checked {
    border-color: rgba(185, 143, 120, .82);
    background: linear-gradient(135deg, var(--accent-clay), var(--accent-apricot));
    box-shadow: 0 10px 24px rgba(185, 143, 120, .2);
}

.checkbox-field input:checked::before {
    opacity: 1;
    transform: translateY(-.08rem) rotate(42deg) scale(1);
}

.checkbox-field input:focus-visible {
    outline: 2px solid rgba(185, 143, 120, .72);
    outline-offset: 3px;
}

.checkbox-field span {
    min-width: 0;
    line-height: 1.45;
}

.checkbox-field a {
    text-decoration: underline;
    text-underline-offset: .18em;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: none;
    padding: .9rem 1rem;
    border-radius: 14px;
    font-weight: 760;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: var(--color-success-text);
    background: var(--color-success-bg);
    border: 1px solid #b7dfc9;
}

.form-status.is-error {
    color: var(--color-error-text);
    background: var(--color-error-bg);
    border: 1px solid #edc1bb;
}

.page-hero {
    padding-block: 5rem 4rem;
    border-bottom: 1px solid var(--line-light);
}

.page-hero h1 {
    max-width: 12ch;
}

.page-hero p:not(.eyebrow) {
    max-width: 42rem;
}

.topic-hero {
    position: relative;
    overflow: hidden;
    padding-block: 5rem 4rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(203, 216, 220, .66), transparent 26rem),
        radial-gradient(circle at 84% 26%, rgba(230, 199, 194, .5), transparent 28rem),
        linear-gradient(180deg, rgba(238, 244, 246, .88), rgba(246, 236, 225, .94));
}

.topic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(0deg, rgba(92, 73, 60, .025) 0 1px, transparent 1px 5px),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .7), transparent 26rem);
}

.topic-hero__grid {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.topic-hero__copy h1 {
    max-width: 11ch;
    text-wrap: balance;
}

.topic-hero__copy p:not(.eyebrow) {
    max-width: 43rem;
    color: var(--text-soft);
}

.topic-visual {
    position: relative;
    min-height: 20rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 38px 22px 44px 24px;
    background: rgba(255, 250, 244, .5);
    box-shadow: var(--shadow-float);
    transform: translate3d(0, var(--parallax-y, 0), 0);
    backface-visibility: hidden;
    contain: layout paint;
    will-change: transform;
}

.topic-visual--feed {
    display: grid;
    place-items: center;
    padding: .9rem;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .7), transparent 26%),
        linear-gradient(135deg, rgba(203, 216, 220, .44), rgba(230, 199, 194, .36)),
        rgba(255, 250, 244, .46);
}

.topic-visual--feed > span {
    min-height: 6rem;
    border-radius: 28px 18px 24px 20px;
    background: linear-gradient(135deg, rgba(203, 216, 220, .8), rgba(230, 199, 194, .56));
}

.topic-visual--feed > span:nth-child(2n) {
    transform: translateY(1.2rem);
    background: linear-gradient(135deg, rgba(216, 169, 141, .54), rgba(255, 250, 244, .74));
}

.social-cinema {
    position: relative;
    width: min(100%, 32rem);
    aspect-ratio: 1.54;
    color: var(--text-main);
    isolation: isolate;
}

[data-motion-root].is-motion-paused *,
[data-motion-root].is-motion-static * {
    animation-play-state: paused !important;
}

.social-cinema__glow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .68;
    transform: translate3d(0, 0, 0);
}

.social-cinema__glow--blue {
    left: 4%;
    top: 8%;
    width: 12rem;
    height: 12rem;
    background: rgba(185, 201, 212, .58);
    animation: social-glow-drift 8s var(--ease-soft) infinite alternate;
}

.social-cinema__glow--rose {
    right: 4%;
    bottom: 2%;
    width: 14rem;
    height: 14rem;
    background: rgba(230, 199, 194, .44);
    animation: social-glow-drift 9s var(--ease-soft) infinite alternate-reverse;
}

.social-cinema__phone {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    gap: .8rem;
    width: 58%;
    min-height: 78%;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 36px 22px 42px 24px;
    background:
        radial-gradient(circle at 76% 12%, rgba(255, 255, 255, .78), transparent 30%),
        rgba(255, 250, 244, .56);
    box-shadow: 0 24px 70px rgba(84, 61, 45, .13);
    transform: translate(-50%, -50%) rotate(-2deg);
    animation: social-phone-float 6.2s var(--ease-soft) infinite alternate;
}

.social-cinema__profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .65rem;
    align-items: center;
    min-width: 0;
}

.social-cinema__profile span {
    position: relative;
    display: block;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 250, 244, .96) 0 34%, transparent 35%),
        conic-gradient(from 20deg, var(--accent-blue), var(--accent-apricot), var(--accent-rose), var(--accent-blue));
    box-shadow: 0 0 0 .42rem rgba(255, 250, 244, .48);
    animation: social-ring-spin 8s linear infinite;
}

.social-cinema__profile strong,
.social-cinema__reel strong,
.social-cinema__insight strong {
    position: relative;
    z-index: 2;
    font-size: .78rem;
    line-height: 1.05;
}

.social-cinema__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .48rem;
}

.social-cinema__grid span {
    --social-tile-y: 0rem;
    min-height: 4.7rem;
    border-radius: 20px 14px 24px 16px;
    background: linear-gradient(135deg, rgba(203, 216, 220, .76), rgba(230, 199, 194, .42));
    box-shadow: 0 10px 24px rgba(84, 61, 45, .06);
    transform: translate3d(0, var(--social-tile-y), 0);
    animation: social-tile-rise 5.8s var(--ease-soft) infinite alternate;
}

.social-cinema__grid span:nth-child(2),
.social-cinema__grid span:nth-child(5) {
    --social-tile-y: .9rem;
    background: linear-gradient(135deg, rgba(216, 169, 141, .48), rgba(255, 250, 244, .78));
    animation-delay: .7s;
}

.social-cinema__grid span:nth-child(3),
.social-cinema__grid span:nth-child(4) {
    background: linear-gradient(135deg, rgba(184, 197, 180, .56), rgba(203, 216, 220, .56));
    animation-delay: 1.1s;
}

.social-cinema__reel,
.social-cinema__insight {
    position: absolute;
    z-index: 5;
    display: grid;
    gap: .42rem;
    padding: .72rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 250, 244, .72);
    box-shadow: 0 18px 44px rgba(84, 61, 45, .12);
    backdrop-filter: blur(14px);
}

.social-cinema__reel {
    --social-card-rotate: 5deg;
    left: 5%;
    bottom: 12%;
    width: 9.8rem;
    border-radius: 24px 16px 30px 18px;
    transform: rotate(var(--social-card-rotate));
    animation: social-card-float 5.8s var(--ease-soft) infinite alternate;
}

.social-cinema__reel span {
    position: relative;
    display: block;
    min-height: 4.6rem;
    overflow: hidden;
    border-radius: 18px 12px 22px 14px;
    background:
        radial-gradient(circle at 70% 24%, rgba(255, 255, 255, .92) 0 1rem, transparent 1.1rem),
        linear-gradient(180deg, rgba(220, 230, 236, .8), rgba(234, 208, 189, .7));
}

.social-cinema__reel span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: .48rem solid transparent;
    border-bottom: .48rem solid transparent;
    border-left: .72rem solid rgba(48, 41, 35, .62);
    transform: translate(-38%, -50%);
}

.social-cinema__insight {
    --social-card-rotate: -4deg;
    right: 5%;
    top: 14%;
    width: 10rem;
    border-radius: 22px 16px 26px 18px;
    transform: rotate(var(--social-card-rotate));
    animation: social-card-float 6.4s var(--ease-soft) infinite alternate-reverse;
}

.social-cinema__insight span {
    display: block;
    height: .46rem;
    border-radius: 999px;
    background: rgba(185, 143, 120, .24);
}

.social-cinema__insight span:nth-child(1) {
    width: 72%;
}

.social-cinema__insight span:nth-child(2) {
    width: 92%;
    background: rgba(185, 201, 212, .54);
}

.social-cinema__insight span:nth-child(3) {
    width: 52%;
    background: rgba(216, 169, 141, .5);
}

.social-cinema__orbit {
    position: absolute;
    inset: 3% 0 0;
    z-index: 2;
    width: 100%;
    height: 96%;
    overflow: visible;
    pointer-events: none;
}

.social-cinema__orbit * {
    fill: none;
    stroke: rgba(185, 143, 120, .44);
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.social-cinema__orbit path {
    stroke-width: 2;
    stroke-dasharray: 10 14;
    animation: social-orbit-flow 8s linear infinite;
}

.social-cinema__orbit circle {
    fill: rgba(255, 250, 244, .68);
    stroke-width: 2;
    animation: social-dot-pulse 4.8s var(--ease-soft) infinite;
}

.social-cinema__orbit circle:nth-of-type(2) {
    animation-delay: .6s;
}

.social-cinema__orbit circle:nth-of-type(3) {
    animation-delay: 1.2s;
}

@keyframes social-glow-drift {
    from {
        transform: translate3d(-.45rem, .22rem, 0) scale(.98);
    }

    to {
        transform: translate3d(.55rem, -.32rem, 0) scale(1.04);
    }
}

@keyframes social-phone-float {
    0%,
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(-2deg);
    }

    50% {
        transform: translate3d(calc(-50% + .24rem), calc(-50% - .32rem), 0) rotate(.8deg);
    }
}

@keyframes social-ring-spin {
    to {
        transform: rotate(1turn);
    }
}

@keyframes social-tile-rise {
    from {
        transform: translate3d(0, var(--social-tile-y), 0);
    }

    to {
        transform: translate3d(0, calc(var(--social-tile-y) - .28rem), 0);
    }
}

@keyframes social-card-float {
    from {
        transform: translate3d(0, 0, 0) rotate(var(--social-card-rotate));
    }

    to {
        transform: translate3d(.2rem, -.34rem, 0) rotate(calc(var(--social-card-rotate) + .8deg));
    }
}

@keyframes social-orbit-flow {
    to {
        stroke-dashoffset: -96;
    }
}

@keyframes social-dot-pulse {
    0%,
    100% {
        opacity: .52;
        transform: scale(.94);
    }

    50% {
        opacity: .88;
        transform: scale(1.08);
    }
}

.social-cinema--account {
    width: min(100%, 33rem);
    aspect-ratio: 1.45;
    display: grid;
    place-items: center;
}

.social-account {
    position: relative;
    z-index: 4;
    width: min(100%, 25.8rem);
    min-height: 92%;
    overflow: hidden;
    padding: .78rem .84rem .88rem;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 34px 22px 38px 24px;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 255, 255, .9), transparent 22%),
        linear-gradient(180deg, rgba(255, 250, 244, .92), rgba(255, 250, 244, .62) 48%, rgba(234, 208, 189, .5));
    box-shadow: 0 26px 72px rgba(84, 61, 45, .15);
    transform: translate3d(0, 0, 0);
    animation: none;
    will-change: auto;
}

.social-account::before,
.social-account::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.social-account::before {
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, .5), transparent 28% 72%, rgba(255, 250, 244, .42)),
        repeating-linear-gradient(0deg, rgba(48, 41, 35, .045) 0 1px, transparent 1px 5px);
    opacity: .34;
}

.social-account::after {
    left: -18%;
    top: 20%;
    z-index: 1;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: rgba(216, 169, 141, .16);
    filter: blur(2px);
    animation: social-account-halo 8.8s var(--ease-soft) infinite alternate;
}

.social-account > * {
    position: relative;
    z-index: 2;
}

.social-account__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 1.4rem;
}

.social-account__back,
.social-account__bell,
.social-account__share,
.social-account__actions span:last-child {
    position: relative;
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    color: rgba(48, 41, 35, .86);
}

.social-account__back::before {
    content: "";
    position: absolute;
    left: .34rem;
    top: .24rem;
    width: .72rem;
    height: .72rem;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
}

.social-account__tools {
    display: inline-flex;
    gap: .48rem;
    align-items: center;
}

.social-account__bell::before {
    content: "";
    position: absolute;
    left: .24rem;
    top: .16rem;
    width: .82rem;
    height: .82rem;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
}

.social-account__bell::after {
    content: "";
    position: absolute;
    left: .22rem;
    right: .22rem;
    bottom: .18rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: .38rem .18rem 0 -.12rem currentColor;
}

.social-account__share::before {
    content: "";
    position: absolute;
    right: .16rem;
    top: .22rem;
    width: .78rem;
    height: .78rem;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg);
}

.social-account__share::after {
    content: "";
    position: absolute;
    left: .18rem;
    top: .7rem;
    width: .86rem;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(-28deg);
}

.social-account__identity {
    display: grid;
    justify-items: center;
    gap: .22rem;
    margin-top: -.1rem;
    text-align: center;
}

.social-account__avatar {
    position: relative;
    display: grid;
    place-items: center;
    width: 5.75rem;
    height: 5.75rem;
    margin-bottom: .28rem;
    border-radius: 999px;
    background: rgba(255, 250, 244, .96);
    box-shadow: 0 14px 32px rgba(84, 61, 45, .13);
    isolation: isolate;
}

.social-account__avatar::before {
    content: "";
    position: absolute;
    inset: .35rem;
    z-index: 1;
    border-radius: inherit;
    background: rgba(255, 250, 244, .96);
}

.social-account__avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: conic-gradient(from 16deg, rgba(185, 201, 212, .95), rgba(216, 169, 141, .95), rgba(207, 166, 162, .92), rgba(185, 201, 212, .95));
    animation: social-avatar-ring 8s linear infinite;
}

.social-account__avatar span {
    position: relative;
    z-index: 2;
    width: 4.55rem;
    height: 4.55rem;
    overflow: hidden;
    border: .18rem solid rgba(255, 250, 244, .95);
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, .08), rgba(48, 41, 35, .14)),
        url("../img/social-profile-avatar.jpg") center 50% / 116% auto no-repeat;
}

.social-account__identity strong {
    max-width: 21rem;
    color: var(--text-main);
    font-size: clamp(1rem, 2vw, 1.16rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.social-account__identity small,
.social-account__stats small,
.social-account__bio,
.social-account__highlights span {
    color: var(--text-soft);
}

.social-account__identity small {
    color: rgba(48, 41, 35, .68);
    font-size: .74rem;
    font-weight: 650;
}

.social-account__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem;
    margin-top: .72rem;
    text-align: center;
}

.social-account__stats span {
    display: grid;
    gap: .08rem;
    min-width: 0;
}

.social-account__stats span + span {
    border-left: 1px solid rgba(92, 73, 60, .14);
}

.social-account__stats strong {
    color: var(--text-main);
    font-size: clamp(1.04rem, 2.3vw, 1.28rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.social-account__stats small {
    color: rgba(48, 41, 35, .66);
    font-size: .64rem;
    line-height: 1.05;
}

.social-account__actions {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: .38rem;
    margin-top: .72rem;
}

.social-account__actions span {
    display: inline-grid;
    place-items: center;
    min-height: 2.05rem;
    border-radius: 999px;
    color: var(--text-main);
    background: rgba(255, 255, 255, .55);
    font-size: .74rem;
    font-weight: 840;
}

.social-account__actions span:first-child {
    color: #fffaf4;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-clay));
    box-shadow: 0 14px 30px rgba(185, 143, 120, .16);
}

.social-account__actions span:last-child {
    width: 2.05rem;
    height: 2.05rem;
    min-height: 2.05rem;
}

.social-account__actions span:last-child::before {
    content: "";
    width: 0;
    height: 0;
    border-left: .32rem solid transparent;
    border-right: .32rem solid transparent;
    border-top: .42rem solid currentColor;
}

.social-account__bio {
    margin: .64rem 0 0;
    color: rgba(48, 41, 35, .78);
    font-size: .73rem;
    line-height: 1.22;
    text-align: center;
}

.social-account__highlights {
    display: flex;
    justify-content: center;
    gap: .78rem;
    margin-top: .62rem;
}

.social-account__highlights span {
    display: grid;
    justify-items: center;
    gap: .14rem;
    min-width: 4.8rem;
    font-size: .66rem;
    line-height: 1;
}

.social-account__highlights i {
    position: relative;
    width: 2.35rem;
    height: 2.35rem;
    border: .18rem solid rgba(255, 255, 255, .82);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 52%, rgba(255, 250, 244, .75) 0 .38rem, transparent .4rem),
        linear-gradient(145deg, rgba(185, 201, 212, .58), rgba(216, 169, 141, .48));
    box-shadow: 0 0 0 .12rem rgba(92, 73, 60, .08);
}

.social-account__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .4rem;
    align-items: center;
    margin-top: .64rem;
    padding-top: .42rem;
    border-top: 1px solid rgba(92, 73, 60, .1);
}

.social-account__tabs span {
    position: relative;
    min-height: .82rem;
}

.social-account__tabs span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.12rem;
    height: .12rem;
    border-radius: 999px;
    background: rgba(48, 41, 35, .55);
    box-shadow: 0 .32rem 0 rgba(48, 41, 35, .45);
    transform: translate(-50%, -50%);
}

.social-account__videos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .22rem;
    margin: .38rem -.38rem -.46rem;
}

.social-account__video {
    position: relative;
    display: grid;
    align-content: space-between;
    min-height: 5.15rem;
    overflow: hidden;
    padding: .34rem .36rem;
    border-radius: 14px 10px 16px 11px;
    color: #fffaf4;
    background:
        linear-gradient(145deg, rgba(128, 143, 151, .9), rgba(216, 169, 141, .78));
    box-shadow: inset 0 -2.2rem 2.15rem rgba(48, 41, 35, .3);
    transform: translate3d(0, 0, 0);
    animation: social-video-rise 6.8s var(--ease-soft) infinite alternate;
}

.social-account__video::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, .05), rgba(48, 41, 35, .4) 76%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 6px);
    pointer-events: none;
}

.social-account__video:nth-child(2),
.social-account__video:nth-child(5) {
    animation-delay: .5s;
}

.social-account__video:nth-child(3),
.social-account__video:nth-child(6) {
    animation-delay: 1s;
}

.social-account__video--two,
.social-account__video--five {
    background:
        linear-gradient(145deg, rgba(218, 187, 179, .94), rgba(156, 111, 88, .82));
}

.social-account__video--three,
.social-account__video--six {
    background:
        linear-gradient(145deg, rgba(65, 57, 51, .86), rgba(142, 160, 168, .76));
}

.social-account__video em,
.social-account__video b,
.social-account__video small {
    position: relative;
    z-index: 1;
}

.social-account__video em {
    justify-self: start;
    padding: .12rem .28rem;
    border-radius: 6px;
    background: rgba(207, 166, 162, .95);
    font-size: .54rem;
    font-style: normal;
    font-weight: 850;
}

.social-account__video b {
    align-self: end;
    color: #fffaf4;
    font-size: .62rem;
    line-height: 1.05;
    text-shadow: 0 1px 10px rgba(48, 41, 35, .62);
}

.social-account__video small {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    margin-top: .16rem;
    color: rgba(255, 250, 244, .95);
    font-size: .58rem;
    font-weight: 760;
    font-variant-numeric: tabular-nums;
}

.social-account__video small i {
    width: 0;
    height: 0;
    border-top: .26rem solid transparent;
    border-bottom: .26rem solid transparent;
    border-left: .38rem solid currentColor;
}

.social-account__growth-chip {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.95rem;
    padding: .36rem .66rem;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    color: var(--text-main);
    background: rgba(255, 250, 244, .76);
    box-shadow: 0 16px 42px rgba(84, 61, 45, .12);
    backdrop-filter: blur(12px);
    font-size: .7rem;
    font-weight: 850;
    animation: social-growth-chip 5.8s var(--ease-soft) infinite alternate;
}

.social-account__growth-chip--one {
    --chip-rotate: 5deg;
    left: 3.5%;
    bottom: 22%;
}

.social-account__growth-chip--two {
    --chip-rotate: -4deg;
    right: 2.5%;
    top: 22%;
    animation-delay: .8s;
}

@keyframes social-account-float {
    from {
        transform: translate3d(0, .22rem, 0) rotate(-1.1deg);
    }

    to {
        transform: translate3d(.22rem, -.32rem, 0) rotate(.7deg);
    }
}

@keyframes social-account-halo {
    from {
        transform: translate3d(-.25rem, .2rem, 0) scale(.98);
    }

    to {
        transform: translate3d(1.4rem, -.55rem, 0) scale(1.05);
    }
}

@keyframes social-avatar-ring {
    to {
        transform: rotate(1turn);
    }
}

@keyframes social-video-rise {
    from {
        transform: translate3d(0, .18rem, 0);
    }

    to {
        transform: translate3d(0, -.18rem, 0);
    }
}

@keyframes social-growth-chip {
    from {
        opacity: .74;
        transform: translate3d(0, .16rem, 0) rotate(var(--chip-rotate, 0deg)) scale(.98);
    }

    to {
        opacity: 1;
        transform: translate3d(.16rem, -.22rem, 0) rotate(var(--chip-rotate, 0deg)) scale(1.02);
    }
}

@media (max-width: 760px) {
    .social-cinema--account {
        width: min(100%, 20.75rem);
        aspect-ratio: .76;
    }

    .social-account {
        width: min(100%, 18.9rem);
        min-height: 94%;
        padding: .68rem .68rem .72rem;
        border-radius: 30px 20px 34px 22px;
    }

    .social-account__toolbar {
        min-height: 1.05rem;
    }

    .social-account__back,
    .social-account__bell,
    .social-account__share,
    .social-account__actions span:last-child {
        width: 1.05rem;
        height: 1.05rem;
    }

    .social-account__avatar {
        width: 4.55rem;
        height: 4.55rem;
        margin-bottom: .18rem;
    }

    .social-account__avatar span {
        width: 3.6rem;
        height: 3.6rem;
    }

    .social-account__identity {
        gap: .16rem;
    }

    .social-account__identity strong {
        max-width: 15.5rem;
        font-size: .86rem;
    }

    .social-account__identity small {
        font-size: .58rem;
    }

    .social-account__stats {
        gap: .22rem;
        margin-top: .5rem;
    }

    .social-account__stats strong {
        font-size: .9rem;
    }

    .social-account__stats small {
        font-size: .5rem;
    }

    .social-account__actions {
        gap: .28rem;
        margin-top: .52rem;
    }

    .social-account__actions span {
        min-height: 1.7rem;
        font-size: .62rem;
    }

    .social-account__actions span:last-child {
        width: 1.7rem;
        height: 1.7rem;
        min-height: 1.7rem;
    }

    .social-account__bio {
        margin-top: .46rem;
        font-size: .58rem;
        line-height: 1.17;
    }

    .social-account__highlights {
        gap: .42rem;
        margin-top: .42rem;
    }

    .social-account__highlights span {
        min-width: 3.85rem;
        font-size: .52rem;
    }

    .social-account__highlights i {
        width: 1.8rem;
        height: 1.8rem;
        border-width: .13rem;
    }

    .social-account__tabs {
        gap: .26rem;
        margin-top: .42rem;
        padding-top: .32rem;
    }

    .social-account__videos {
        gap: .16rem;
        margin: .3rem -.28rem -.36rem;
    }

    .social-account__video {
        min-height: 4.05rem;
        padding: .24rem .25rem;
        border-radius: 12px 9px 14px 10px;
    }

    .social-account__video em {
        padding: .1rem .22rem;
        font-size: .45rem;
    }

    .social-account__video b,
    .social-account__video small {
        font-size: .48rem;
    }

    .social-account__growth-chip {
        min-height: 1.55rem;
        padding: .24rem .46rem;
        font-size: .56rem;
    }

    .social-account__growth-chip--one {
        left: 0;
        bottom: 17%;
    }

    .social-account__growth-chip--two {
        right: 0;
        top: 17%;
    }
}

@media (max-width: 420px) {
    .social-cinema--account {
        width: min(100%, 19.2rem);
        aspect-ratio: .72;
    }

    .social-account {
        width: min(100%, 17.35rem);
        padding: .62rem .62rem .68rem;
    }

    .social-account__avatar {
        width: 4.25rem;
        height: 4.25rem;
    }

    .social-account__avatar span {
        width: 3.34rem;
        height: 3.34rem;
    }

    .social-account__bio {
        font-size: .54rem;
    }

    .social-account__video {
        min-height: 3.75rem;
    }

    .social-account__growth-chip--one {
        bottom: 15%;
    }

    .social-account__growth-chip--two {
        top: 15%;
    }
}

.topic-visual--dog,
.topic-visual--photo {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .78), transparent 28%),
        linear-gradient(135deg, rgba(234, 208, 189, .56), rgba(203, 216, 220, .44));
}

.topic-visual--dog strong {
    color: var(--text-main);
    font-size: 2rem;
}

.dog-cinema {
    position: relative;
    width: min(100%, 32rem);
    aspect-ratio: 1.54;
    color: var(--text-main);
}

.dog-cinema__glow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .72;
    transform: translate3d(0, 0, 0);
}

.dog-cinema__glow--blue {
    left: 5%;
    top: 12%;
    width: 12rem;
    height: 12rem;
    background: rgba(185, 201, 212, .48);
    animation: dog-glow-drift 7.5s var(--ease-soft) infinite alternate;
}

.dog-cinema__glow--rose {
    right: 0;
    bottom: 4%;
    width: 13rem;
    height: 13rem;
    background: rgba(230, 199, 194, .42);
    animation: dog-glow-drift 8.5s var(--ease-soft) infinite alternate-reverse;
}

.dog-cinema__frame {
    position: absolute;
    inset: 7% 4%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 38px 22px 44px 24px;
    background:
        radial-gradient(circle at 76% 16%, rgba(255, 255, 255, .72), transparent 26%),
        linear-gradient(135deg, rgba(255, 250, 244, .5), rgba(203, 216, 220, .24)),
        rgba(255, 250, 244, .3);
    box-shadow: 0 24px 68px rgba(84, 61, 45, .12);
}

.dog-cinema__frame::before,
.dog-cinema__frame::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.dog-cinema__frame::before {
    inset: 1rem;
    border: 1px solid rgba(92, 73, 60, .08);
    border-radius: 30px 18px 36px 20px;
}

.dog-cinema__frame::after {
    left: 31%;
    top: 39%;
    width: 42%;
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .8), transparent 32%),
        rgba(216, 169, 141, .2);
    opacity: .78;
    transform: translate3d(0, 0, 0);
    animation: none;
}

.dog-cinema__scene {
    position: absolute;
    inset: 4% 2% 2%;
    z-index: 2;
    width: 96%;
    height: 94%;
    overflow: visible;
}

.dog-cinema__scene * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.dog-cinema__route {
    color: rgba(185, 143, 120, .42);
    stroke-width: 2.1;
    stroke-dasharray: 10 14;
    animation: dog-route-flow 9s linear infinite;
}

.dog-cinema__route--glow {
    color: rgba(185, 201, 212, .62);
    stroke-width: 6;
    stroke-dasharray: 1 18;
    opacity: .42;
    filter: drop-shadow(0 0 12px rgba(185, 201, 212, .35));
    animation-duration: 6.5s;
}

.dog-cinema__frisbee {
    opacity: .96;
    filter: drop-shadow(0 11px 18px rgba(84, 61, 45, .18));
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform, opacity;
}

.dog-cinema__frisbee * {
    vector-effect: non-scaling-stroke;
}

.dog-cinema__frisbee-shadow {
    fill: rgba(84, 61, 45, .14);
    stroke: none;
}

.dog-cinema__frisbee-disc {
    fill: rgba(255, 250, 244, .96);
    stroke: rgba(185, 143, 120, .7);
    stroke-width: 2;
}

.dog-cinema__frisbee-rim,
.dog-cinema__frisbee-cut {
    fill: none;
    stroke: rgba(185, 143, 120, .78);
    stroke-width: 2;
    stroke-linecap: round;
}

.dog-cinema__frisbee-cut {
    stroke: rgba(185, 201, 212, .78);
}

.dog-cinema__paw {
    --paw-shift-x: -.55rem;
    filter: drop-shadow(0 18px 30px rgba(84, 61, 45, .15));
    transform-box: view-box;
    transform-origin: 55% 66%;
    animation: dog-paw-float 5.8s var(--ease-soft) infinite;
    will-change: transform;
}

.dog-cinema__paw * {
    vector-effect: non-scaling-stroke;
}

.dog-cinema__paw-shadow {
    fill: rgba(84, 61, 45, .13);
    stroke: none;
    transform-box: view-box;
    transform-origin: 286px 284px;
    animation: dog-paw-shadow 5.8s var(--ease-soft) infinite;
}

.dog-cinema__paw-print {
    transform-box: view-box;
    transform-origin: 289px 222px;
    animation: dog-paw-print 7.8s var(--ease-soft) infinite;
}

.dog-cinema__paw-sticker {
    fill: rgba(255, 250, 244, .82);
    stroke: rgba(255, 255, 255, .82);
    stroke-width: 2.4;
    filter: drop-shadow(0 10px 18px rgba(84, 61, 45, .08));
}

.dog-cinema__paw-pad,
.dog-cinema__paw-toe-pad {
    fill: rgba(178, 133, 109, .86);
    stroke: rgba(255, 250, 244, .52);
    stroke-width: 2;
}

.dog-cinema__paw-toe-pad {
    fill: rgba(207, 158, 132, .8);
}

.dog-cinema__paw-pad-light {
    fill: rgba(255, 250, 244, .23);
    stroke: none;
}

.dog-cinema__paw-pad-line,
.dog-cinema__paw-soft-line {
    fill: none;
    stroke: rgba(255, 250, 244, .48);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dog-cinema__paw-soft-line {
    stroke: rgba(185, 143, 120, .34);
    stroke-width: 2;
    stroke-dasharray: 7 10;
    animation: dog-route-flow 10s linear infinite;
}

.dog-cinema__paw-toe {
    --paw-toe-x: 0;
    --paw-toe-y: -.1rem;
    --paw-toe-scale: 1.012;
    transform-box: view-box;
    transform-origin: center;
    animation: dog-paw-toe 6.4s var(--ease-soft) infinite;
}

.dog-cinema__paw-toe--one {
    --paw-toe-x: -.05rem;
    --paw-toe-y: -.05rem;
    --paw-toe-scale: 1.008;
    animation-delay: .08s;
}

.dog-cinema__paw-toe--two {
    --paw-toe-x: -.02rem;
    --paw-toe-y: -.18rem;
    --paw-toe-scale: 1.018;
    animation-delay: .24s;
}

.dog-cinema__paw-toe--three {
    --paw-toe-x: .02rem;
    --paw-toe-y: -.18rem;
    --paw-toe-scale: 1.018;
    animation-delay: .38s;
}

.dog-cinema__paw-toe--four {
    --paw-toe-x: .05rem;
    --paw-toe-y: -.05rem;
    --paw-toe-scale: 1.008;
    animation-delay: .14s;
}

.dog-cinema__paw-spark {
    fill: rgba(203, 216, 220, .72);
    stroke: rgba(255, 250, 244, .5);
    stroke-width: 1.5;
    transform-box: view-box;
    transform-origin: center;
    animation: dog-paw-spark 4.8s var(--ease-soft) infinite;
}

.dog-cinema__paw-spark--two {
    fill: rgba(230, 199, 194, .7);
    animation-delay: .7s;
}

.dog-cinema__collie {
    filter: drop-shadow(0 18px 28px rgba(84, 61, 45, .15));
    transform-box: view-box;
    transform-origin: 56% 60%;
    animation: dog-breathe 5.6s var(--ease-soft) infinite;
    will-change: transform;
}

.dog-cinema__collie * {
    fill: rgba(42, 36, 31, .92);
    stroke: none;
}

.dog-cinema__ground-shadow {
    fill: rgba(84, 61, 45, .12);
}

.dog-cinema__outline-sticker {
    fill: rgba(255, 250, 244, .74);
    opacity: .82;
    filter: drop-shadow(0 7px 13px rgba(84, 61, 45, .06));
}

.dog-cinema__chest,
.dog-cinema__blaze,
.dog-cinema__body-white,
.dog-cinema__belly-white,
.dog-cinema__face-white,
.dog-cinema__tail-tip,
.dog-cinema__ruff,
.dog-cinema__front-leg--light,
.dog-cinema__back-leg--light {
    fill: rgba(255, 250, 244, .9);
}

.dog-cinema__body-white,
.dog-cinema__belly-white,
.dog-cinema__face-white,
.dog-cinema__tail-tip,
.dog-cinema__front-leg--light,
.dog-cinema__back-leg--light,
.dog-cinema__ruff {
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .22));
}

.dog-cinema__body,
.dog-cinema__head,
.dog-cinema__ears,
.dog-cinema__legs,
.dog-cinema__tail {
    transform-box: view-box;
}

.dog-cinema__tail {
    transform-origin: 164px 188px;
    animation: dog-tail 3.1s var(--ease-soft) infinite;
    will-change: transform;
}

.dog-cinema__head {
    transform-origin: 398px 164px;
    animation: dog-head-track 6.2s var(--ease-soft) infinite;
    will-change: transform;
}

.dog-cinema__legs {
    transform-origin: 285px 224px;
}

.dog-cinema__ear {
    transform-box: view-box;
    transform-origin: center;
}

.dog-cinema__ear--front {
    animation: dog-ear-listen 5.4s var(--ease-soft) infinite;
}

.dog-cinema__collar,
.dog-cinema__tail-fur,
.dog-cinema__snout-line {
    fill: none;
    stroke: rgba(185, 143, 120, .74);
    stroke-width: 4.4;
    stroke-linecap: round;
}

.dog-cinema__tail-fur {
    stroke: rgba(255, 250, 244, .74);
    stroke-width: 2.8;
    opacity: .76;
}

.dog-cinema__snout-line {
    stroke: rgba(255, 250, 244, .5);
    stroke-width: 2.1;
}

.dog-cinema__eye,
.dog-cinema__nose {
    fill: rgba(20, 17, 15, .94);
}

.dog-cinema__cue {
    color: var(--accent-clay);
    stroke-width: 2;
    opacity: .58;
    transform-origin: center;
    animation: dog-cue-pulse 4.8s var(--ease-soft) infinite;
}

.dog-cinema__cue--two {
    animation-delay: .55s;
}

.dog-cinema__cue--three {
    animation-delay: 1.1s;
}

.dog-cinema__chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: .42rem .72rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 250, 244, .68);
    box-shadow: 0 14px 32px rgba(84, 61, 45, .1);
    font-size: .76rem;
    font-weight: 850;
    line-height: 1;
    backdrop-filter: blur(14px);
    animation: dog-chip-float 5.8s var(--ease-soft) infinite alternate;
}

.dog-cinema__chip--one {
    left: 8%;
    bottom: 13%;
}

.dog-cinema__chip--two {
    right: 11%;
    top: 14%;
    animation-delay: .7s;
}

.dog-cinema__chip--three {
    right: 8%;
    bottom: 16%;
    animation-delay: 1.2s;
}

@keyframes dog-route-flow {
    to {
        stroke-dashoffset: -96;
    }
}

@keyframes dog-paw-float {
    0%,
    100% {
        transform: translate3d(var(--paw-shift-x), 0, 0) rotate(-.7deg) scale(1);
    }

    48% {
        transform: translate3d(calc(var(--paw-shift-x) + .14rem), -.34rem, 0) rotate(.8deg) scale(1.014);
    }
}

@keyframes dog-paw-print {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-.28deg);
    }

    40% {
        transform: translate3d(0, -.1rem, 0) rotate(.42deg);
    }

    72% {
        transform: translate3d(.04rem, .05rem, 0) rotate(-.18deg);
    }
}

@keyframes dog-paw-toe {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    44% {
        transform: translate3d(var(--paw-toe-x), var(--paw-toe-y), 0) scale(var(--paw-toe-scale));
    }
}

@keyframes dog-paw-shadow {
    0%,
    100% {
        opacity: .86;
        transform: scale(1);
    }

    48% {
        opacity: .58;
        transform: scale(.92);
    }
}

@keyframes dog-paw-spark {
    0%,
    100% {
        opacity: .42;
        transform: translate3d(0, 0, 0) scale(.9);
    }

    45% {
        opacity: .9;
        transform: translate3d(0, -.22rem, 0) scale(1.16);
    }
}

@keyframes dog-breathe {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-.4deg);
    }

    50% {
        transform: translate3d(.28rem, -.18rem, 0) rotate(.5deg);
    }
}

@keyframes dog-tail {
    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes dog-head-track {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    44% {
        transform: translate3d(.1rem, -.06rem, 0) rotate(-1.3deg);
    }

    70% {
        transform: translate3d(.04rem, .02rem, 0) rotate(.7deg);
    }
}

@keyframes dog-ear-listen {
    0%,
    100% {
        transform: rotate(0deg);
    }

    42% {
        transform: rotate(-4deg);
    }
}

@keyframes dog-cue-pulse {
    0%,
    100% {
        opacity: .42;
        transform: scale(.94);
    }

    48% {
        opacity: .82;
        transform: scale(1.08);
    }
}

@keyframes dog-chip-float {
    from {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }

    to {
        transform: translate3d(.28rem, -.36rem, 0) rotate(1deg);
    }
}

@keyframes dog-glow-drift {
    from {
        transform: translate3d(-.45rem, .25rem, 0) scale(.98);
    }

    to {
        transform: translate3d(.55rem, -.3rem, 0) scale(1.04);
    }
}

@keyframes dog-light-sweep {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(78%, 54%, 0);
    }
}

.topic-visual--video,
.topic-visual--prices {
    display: grid;
    place-items: center;
    padding: clamp(.85rem, 2vw, 1.2rem);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .8), transparent 29%),
        linear-gradient(135deg, rgba(203, 216, 220, .46), rgba(234, 208, 189, .5));
}

.hero-motion {
    position: relative;
    width: min(100%, 32rem);
    aspect-ratio: 1.54;
    isolation: isolate;
    color: var(--text-main);
    transform: translate3d(0, 0, 0);
}

.video-motion__glow,
.photo-motion__light,
.pricing-motion__highlight {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
}

.video-motion__glow {
    filter: blur(17px);
    opacity: .62;
}

.video-motion__glow--blue {
    left: 0;
    top: 9%;
    width: 13rem;
    height: 13rem;
    background: rgba(185, 201, 212, .54);
    animation: hero-motion-glow-drift 8s var(--ease-soft) infinite alternate;
}

.video-motion__glow--peach {
    right: 2%;
    bottom: 3%;
    width: 14rem;
    height: 14rem;
    background: rgba(216, 169, 141, .34);
    animation: hero-motion-glow-drift 9.2s var(--ease-soft) infinite alternate-reverse;
}

.video-motion__panel {
    position: absolute;
    inset: 7% 7% 8%;
    z-index: 2;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: .7rem;
    overflow: hidden;
    padding: .95rem;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 36px 22px 42px 24px;
    background:
        radial-gradient(circle at 76% 16%, rgba(255, 255, 255, .75), transparent 32%),
        rgba(255, 250, 244, .56);
    box-shadow: 0 24px 70px rgba(84, 61, 45, .13);
    backdrop-filter: blur(18px);
}

.video-motion__panel::after,
.photo-motion__card--front::after,
.pricing-motion__card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, .38) 49%, transparent 60% 100%);
    transform: translate3d(-120%, 0, 0);
    animation: hero-motion-sheen 7.5s var(--ease-soft) infinite;
}

.video-motion__clapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .48rem;
    min-height: 4rem;
    padding: .52rem;
    overflow: hidden;
    border-radius: 24px 16px 24px 18px;
    background:
        repeating-linear-gradient(135deg, rgba(48, 41, 35, .7) 0 15px, rgba(255, 250, 244, .82) 15px 30px),
        rgba(48, 41, 35, .18);
    transform-origin: 50% 100%;
    animation: video-motion-clapper 6.6s var(--ease-soft) infinite;
    will-change: transform;
}

.video-motion__clapper span {
    min-height: 2.1rem;
    border-radius: 14px 10px 16px 11px;
    background: rgba(255, 250, 244, .42);
}

.video-motion__preview {
    position: relative;
    min-height: 8.2rem;
    overflow: hidden;
    border: 1px solid rgba(92, 73, 60, .08);
    border-radius: 28px 18px 34px 20px;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .92) 0 1.55rem, transparent 1.62rem),
        linear-gradient(160deg, rgba(203, 216, 220, .72), rgba(234, 208, 189, .52));
}

.video-motion__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4.2rem;
    height: 4.2rem;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 999px;
    background: rgba(255, 250, 244, .58);
    box-shadow: 0 18px 48px rgba(84, 61, 45, .12);
    transform: translate3d(-50%, -50%, 0);
    animation: video-motion-play-pulse 4.8s var(--ease-soft) infinite;
}

.video-motion__play::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: .55rem solid transparent;
    border-bottom: .55rem solid transparent;
    border-left: .82rem solid rgba(48, 41, 35, .68);
    transform: translate3d(-36%, -50%, 0);
}

.video-motion__record {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: .7rem;
    height: .7rem;
    border-radius: 999px;
    background: var(--accent-rose);
    box-shadow: 0 0 0 .44rem rgba(207, 166, 162, .15);
    animation: video-motion-record 2.4s var(--ease-soft) infinite;
}

.video-motion__timeline {
    display: grid;
    grid-template-columns: 1.15fr .72fr 1.4fr .52fr;
    gap: .42rem;
}

.video-motion__timeline span {
    min-height: .62rem;
    border-radius: 999px;
    background: rgba(185, 143, 120, .28);
    transform-origin: left center;
    animation: video-motion-timeline 4.6s var(--ease-soft) infinite;
}

.video-motion__timeline span:nth-child(2) {
    background: rgba(185, 201, 212, .58);
    animation-delay: .35s;
}

.video-motion__timeline span:nth-child(3) {
    background: rgba(216, 169, 141, .48);
    animation-delay: .7s;
}

.video-motion__timeline span:nth-child(4) {
    animation-delay: 1.05s;
}

.video-motion__wave {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 22%;
    width: 84%;
    height: 4.8rem;
    overflow: visible;
    opacity: .72;
}

.video-motion__wave path {
    fill: none;
    stroke: rgba(185, 143, 120, .56);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 16 18;
    animation: video-motion-wave 6.2s linear infinite;
}

.video-motion__reel {
    position: absolute;
    z-index: 3;
    width: 7.6rem;
    height: 9.4rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 24px 16px 28px 18px;
    background:
        linear-gradient(180deg, rgba(48, 41, 35, .16), rgba(255, 250, 244, .56)),
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .8), transparent 34%);
    box-shadow: 0 20px 54px rgba(84, 61, 45, .13);
    backdrop-filter: blur(12px);
    animation: video-motion-reel-float 6.4s var(--ease-soft) infinite alternate;
}

.video-motion__reel--one {
    left: 3%;
    bottom: 10%;
    transform: rotate(-6deg);
}

.video-motion__reel--two {
    right: 2%;
    top: 13%;
    height: 7.4rem;
    transform: rotate(5deg);
    animation-delay: .9s;
}

.photo-motion {
    overflow: visible;
}

.photo-motion__light {
    inset: 12% 7% auto auto;
    width: 12rem;
    height: 12rem;
    background: rgba(216, 169, 141, .24);
    filter: blur(14px);
    animation: hero-motion-glow-drift 8.4s var(--ease-soft) infinite alternate-reverse;
}

.photo-motion__stack {
    position: absolute;
    inset: 8% 8% 10%;
    perspective: 900px;
}

.photo-motion__card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 36px 22px 42px 24px;
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 255, 255, .82), transparent 32%),
        linear-gradient(155deg, rgba(255, 250, 244, .68), rgba(203, 216, 220, .42));
    box-shadow: 0 24px 70px rgba(84, 61, 45, .13);
    transform-origin: center;
    will-change: transform;
}

.photo-motion__card--back {
    inset: 8% 7% 2% 7%;
    opacity: .72;
    transform: rotate(-7deg) translate3d(-.4rem, .4rem, 0);
    animation: photo-motion-back 7s var(--ease-soft) infinite alternate;
}

.photo-motion__card--mid {
    inset: 4% 4% 5% 8%;
    opacity: .86;
    transform: rotate(5deg) translate3d(.45rem, .1rem, 0);
    animation: photo-motion-mid 6.6s var(--ease-soft) infinite alternate-reverse;
}

.photo-motion__card--front {
    inset: 9% 9% 6% 5%;
    background:
        linear-gradient(155deg, rgba(255, 250, 244, .62), rgba(203, 216, 220, .28));
    transform: rotate(-2deg);
    animation: photo-motion-front 6.8s var(--ease-soft) infinite alternate;
}

.photo-motion__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, .02), rgba(48, 41, 35, .05)),
        url("../img/fotoshooting-dog-card.jpg") 51% 50% / cover no-repeat;
    filter: saturate(.96) contrast(1.02) brightness(1.02);
}

.photo-motion__card--front::before {
    display: none;
}

.photo-motion__card--front::after {
    display: none;
}

.photo-motion__subject {
    display: none;
}

.photo-motion__focus {
    position: absolute;
    z-index: 3;
    inset: 18% 16% 20%;
    border: 2px solid rgba(185, 143, 120, .42);
    border-radius: 26px 16px 30px 18px;
    animation: photo-motion-focus 5.4s var(--ease-soft) infinite;
}

.photo-motion__focus::before,
.photo-motion__focus::after {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    border-color: rgba(48, 41, 35, .7);
}

.photo-motion__focus::before {
    right: -1rem;
    top: -1rem;
    border-top: 2px solid;
    border-right: 2px solid;
}

.photo-motion__focus::after {
    left: -1rem;
    bottom: -1rem;
    border-left: 2px solid;
    border-bottom: 2px solid;
}

.photo-motion__shutter {
    position: absolute;
    right: 18%;
    top: 38%;
    z-index: 4;
    width: 4.9rem;
    height: 4.9rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .96) 0 36%, transparent 37%),
        conic-gradient(from 0deg, rgba(203, 216, 220, .58), rgba(216, 169, 141, .5), rgba(207, 166, 162, .42), rgba(203, 216, 220, .58));
    box-shadow: 0 16px 44px rgba(84, 61, 45, .12);
    animation: photo-motion-shutter 5.2s var(--ease-soft) infinite;
}

.photo-motion__label {
    position: absolute;
    left: 13%;
    bottom: 9%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    padding: .42rem .75rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 250, 244, .7);
    box-shadow: 0 14px 34px rgba(84, 61, 45, .1);
    font-size: .78rem;
    font-weight: 850;
    backdrop-filter: blur(12px);
    animation: photo-motion-label 6s var(--ease-soft) infinite alternate;
}

.pricing-motion {
    overflow: visible;
    --pricing-highlight-x-one: 13rem;
    --pricing-highlight-y-one: 1.6rem;
    --pricing-highlight-x-two: 5.6rem;
    --pricing-highlight-y-two: 8.8rem;
}

.pricing-motion__highlight {
    left: 8%;
    top: 15%;
    z-index: 0;
    width: 11.5rem;
    height: 11.5rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .82), transparent 32%),
        rgba(185, 201, 212, .34);
    filter: blur(10px);
    animation: pricing-motion-highlight 9s var(--ease-soft) infinite;
}

.pricing-motion__card {
    position: absolute;
    z-index: 2;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: .5rem;
    width: 46%;
    min-height: 45%;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 30px 18px 36px 20px;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .76), transparent 34%),
        rgba(255, 250, 244, .6);
    box-shadow: 0 20px 56px rgba(84, 61, 45, .12);
    backdrop-filter: blur(16px);
    animation: pricing-motion-card-float 6.6s var(--ease-soft) infinite alternate;
    will-change: transform;
}

.pricing-motion__card--1 {
    left: 4%;
    top: 10%;
    transform: rotate(-4deg);
}

.pricing-motion__card--2 {
    right: 4%;
    top: 17%;
    min-height: 50%;
    transform: rotate(3deg);
    animation-delay: .65s;
}

.pricing-motion__card--3 {
    left: 25%;
    bottom: 8%;
    transform: rotate(-1deg);
    animation-delay: 1.15s;
}

.pricing-motion__card span {
    display: inline-flex;
    width: fit-content;
    min-height: 1.7rem;
    align-items: center;
    padding: .26rem .58rem;
    color: var(--text-soft);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: rgba(255, 250, 244, .7);
    font-size: .68rem;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-motion__card strong {
    font-size: clamp(1.34rem, 3vw, 1.92rem);
    line-height: 1;
}

.pricing-motion__card i {
    display: block;
    width: 78%;
    height: .48rem;
    border-radius: 999px;
    background: rgba(185, 143, 120, .2);
    transform-origin: left center;
    animation: pricing-motion-line 4.8s var(--ease-soft) infinite;
}

.pricing-motion__card i:nth-of-type(2) {
    width: 62%;
    background: rgba(185, 201, 212, .45);
    animation-delay: .28s;
}

.pricing-motion__card i:nth-of-type(3) {
    width: 46%;
    background: rgba(216, 169, 141, .38);
    animation-delay: .56s;
}

@keyframes hero-motion-glow-drift {
    from {
        transform: translate3d(-.35rem, .2rem, 0) scale(.98);
    }

    to {
        transform: translate3d(.48rem, -.32rem, 0) scale(1.04);
    }
}

@keyframes hero-motion-sheen {
    0%,
    42% {
        transform: translate3d(-125%, 0, 0);
        opacity: 0;
    }

    52% {
        opacity: .72;
    }

    68%,
    100% {
        transform: translate3d(125%, 0, 0);
        opacity: 0;
    }
}

@keyframes video-motion-clapper {
    0%,
    100% {
        transform: rotate(0deg);
    }

    18% {
        transform: rotate(-3deg);
    }

    25% {
        transform: rotate(.8deg);
    }

    34% {
        transform: rotate(0deg);
    }
}

@keyframes video-motion-play-pulse {
    0%,
    100% {
        transform: translate3d(-50%, -50%, 0) scale(1);
    }

    50% {
        transform: translate3d(-50%, -50%, 0) scale(1.05);
    }
}

@keyframes video-motion-record {
    0%,
    100% {
        opacity: .5;
        transform: scale(.94);
    }

    50% {
        opacity: .92;
        transform: scale(1.08);
    }
}

@keyframes video-motion-timeline {
    0%,
    100% {
        transform: scaleX(.52);
    }

    48% {
        transform: scaleX(1);
    }
}

@keyframes video-motion-wave {
    to {
        stroke-dashoffset: -136;
    }
}

@keyframes video-motion-reel-float {
    from {
        transform: translate3d(0, 0, 0) rotate(-6deg);
    }

    to {
        transform: translate3d(.28rem, -.34rem, 0) rotate(-3.5deg);
    }
}

.video-motion__reel--two {
    animation-name: video-motion-reel-float-two;
}

@keyframes video-motion-reel-float-two {
    from {
        transform: translate3d(0, 0, 0) rotate(5deg);
    }

    to {
        transform: translate3d(-.24rem, .32rem, 0) rotate(2.5deg);
    }
}

@keyframes photo-motion-back {
    to {
        transform: rotate(-5.5deg) translate3d(-.1rem, .2rem, 0);
    }
}

@keyframes photo-motion-mid {
    to {
        transform: rotate(3deg) translate3d(.18rem, -.18rem, 0);
    }
}

@keyframes photo-motion-front {
    to {
        transform: rotate(-.6deg) translate3d(.18rem, -.24rem, 0);
    }
}

@keyframes photo-motion-focus {
    0%,
    100% {
        transform: translate3d(-.22rem, .12rem, 0) scale(.98);
        opacity: .62;
    }

    52% {
        transform: translate3d(.22rem, -.18rem, 0) scale(1.02);
        opacity: .9;
    }
}

@keyframes photo-motion-shutter {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: .78;
    }

    45% {
        transform: rotate(32deg) scale(1.04);
        opacity: .98;
    }
}

@keyframes photo-motion-label {
    to {
        transform: translate3d(.22rem, -.28rem, 0);
    }
}

@keyframes pricing-motion-highlight {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(.98);
    }

    38% {
        transform: translate3d(var(--pricing-highlight-x-one), var(--pricing-highlight-y-one), 0) scale(1.05);
    }

    70% {
        transform: translate3d(var(--pricing-highlight-x-two), var(--pricing-highlight-y-two), 0) scale(1);
    }
}

@keyframes pricing-motion-card-float {
    to {
        transform: translate3d(.16rem, -.3rem, 0) rotate(-2deg);
    }
}

.pricing-motion__card--2 {
    animation-name: pricing-motion-card-float-two;
}

.pricing-motion__card--3 {
    animation-name: pricing-motion-card-float-three;
}

@keyframes pricing-motion-card-float-two {
    to {
        transform: translate3d(-.18rem, -.22rem, 0) rotate(1.6deg);
    }
}

@keyframes pricing-motion-card-float-three {
    to {
        transform: translate3d(.2rem, .18rem, 0) rotate(.8deg);
    }
}

@keyframes pricing-motion-line {
    0%,
    100% {
        transform: scaleX(.46);
        opacity: .58;
    }

    50% {
        transform: scaleX(1);
        opacity: .95;
    }
}

.topic-detail-grid {
    display: grid;
    gap: 1rem;
}

.topic-card {
    min-width: 0;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 28px 18px 32px 20px;
    background: rgba(255, 250, 244, .58);
    box-shadow: var(--shadow-card);
}

.topic-card span {
    display: inline-flex;
    margin-bottom: 1.4rem;
    color: var(--accent-clay);
    font-weight: 850;
}

.topic-card h2 {
    font-size: 1.45rem;
}

.topic-card p {
    color: var(--text-soft);
}

.service-detail-grid {
    display: grid;
    gap: 1rem;
}

.detail-card {
    padding: 1.35rem;
}

.detail-card h2 {
    font-size: 1.45rem;
}

.detail-meta {
    margin-bottom: 0;
    font-weight: 760;
}

.legal-content h2 {
    max-width: none;
    margin-top: 2rem;
    font-size: 1.45rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    text-decoration: underline;
    text-underline-offset: .18em;
}

.site-footer {
    color: var(--text-main);
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .62), transparent 24rem),
        linear-gradient(180deg, rgba(234, 216, 202, .92), rgba(203, 216, 220, .42));
    border-top: 1px solid rgba(92, 73, 60, .12);
    padding-block: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand p {
    max-width: 25rem;
    margin: 1rem 0 0;
    color: var(--text-soft);
}

.footer-logo {
    display: inline-grid;
    place-items: center;
    width: var(--footer-logo-chip-width);
    height: var(--footer-logo-chip-height);
    overflow: hidden;
    padding: 0;
    border-radius: 999px;
    background: rgba(48, 41, 35, .82);
    box-shadow: 0 18px 48px rgba(84, 61, 45, .12);
}

.footer-logo img {
    display: block;
    width: var(--footer-logo-mark-size);
    height: var(--footer-logo-mark-size);
    inline-size: var(--footer-logo-mark-size);
    block-size: var(--footer-logo-mark-size);
    min-width: var(--footer-logo-mark-size);
    min-height: var(--footer-logo-mark-size);
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    transform: translate3d(-.03rem, -.08rem, 0);
}

.footer-nav,
.footer-contact,
.social-links {
    display: grid;
    gap: .7rem;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
    color: var(--text-soft);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(92, 73, 60, .12);
    color: var(--text-muted);
    font-size: .9rem;
}

.footer-bottom span:last-child {
    display: flex;
    gap: 1rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(48, 41, 35, .76);
    backdrop-filter: blur(18px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-panel {
    position: relative;
    width: min(100%, 960px);
    max-height: min(90vh, 760px);
    display: grid;
    gap: 1.2rem;
    overflow: auto;
    padding: 1rem;
    color: var(--color-paper);
    background: var(--color-deep);
    border: 1px solid var(--line-light);
    border-radius: 28px;
    box-shadow: var(--shadow-deep);
}

.lightbox-panel img {
    width: 100%;
    max-height: 58vh;
    object-fit: cover;
    border-radius: 22px;
}

.lightbox-panel h2 {
    font-size: 1.7rem;
}

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 201;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    color: var(--color-paper);
    background: rgba(255, 250, 242, .1);
    font-size: 1.7rem;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(3px);
    transition:
        opacity .86s var(--ease-soft),
        transform .92s var(--ease-soft),
        filter .86s var(--ease-soft);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.tilt-ready {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
    transition: transform .32s var(--ease-soft), box-shadow .32s var(--ease-soft);
    will-change: transform;
}

.tilt-ready:hover {
    --lift: -4px;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.82);
        opacity: .7;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (min-width: 640px) {
    .shell {
        width: min(100% - 3rem, 1180px);
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .form-grid,
    .service-detail-grid,
    .topic-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-actions .button {
        flex: 0 1 auto;
    }
}

@media (min-width: 860px) {
    :root {
        --header-height: 98px;
    }

    .scroll-story {
        min-height: 318vh;
    }

    .scroll-story__sticky {
        position: sticky;
        top: var(--header-height);
        height: calc(100svh - var(--header-height));
        min-height: 36rem;
        grid-template-columns: minmax(0, .82fr) minmax(25rem, 1.04fr);
        gap: clamp(2rem, 4vw, 3.25rem);
        align-content: center;
        padding-block: clamp(.9rem, 2vh, 1.35rem);
    }

    .scroll-story__copy h2 {
        max-width: 15ch;
        font-size: clamp(2.15rem, 3.45vw, 3.15rem);
    }

    .scroll-story__copy > p:not(.eyebrow) {
        max-width: 38rem;
        font-size: .98rem;
        line-height: 1.55;
    }

    .story-steps {
        max-width: 31.5rem;
        gap: .52rem;
        margin-top: 1rem;
    }

    .story-step {
        padding: .62rem .75rem;
        border-radius: 20px 14px 24px 16px;
    }

    .story-step p {
        font-size: .78rem;
        line-height: 1.3;
    }

    .scroll-story__stage {
        height: min(66vh, 35rem);
        min-height: clamp(27rem, 55vh, 33rem);
        max-height: calc(100svh - var(--header-height) - 2rem);
    }

    .section {
        padding-block: 7rem;
    }

    .brand-logo {
        width: var(--header-logo-chip-width-open);
        height: var(--header-logo-chip-height-open);
    }

    .site-header.is-scrolled .brand-logo {
        transform: translate3d(0, -.04rem, 0) scale(.9);
    }

    .icon-nav {
        width: min(100%, 34.25rem);
    }

    .site-header.is-scrolled .icon-nav {
        transform: translate3d(0, -.18rem, 0) scale(.94);
    }

    .hero {
        padding-block: 5.5rem 4rem;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .72fr);
        gap: 3rem;
    }

    .topic-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, .8fr);
        gap: 4rem;
    }

    .topic-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-media {
        width: min(100%, 30rem);
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .trust-grid div {
        padding: 1.4rem 1.2rem;
        border-right: 1px solid var(--line-light);
        border-bottom: 0;
    }

    .trust-grid div:first-child {
        padding-left: 0;
    }

    .trust-grid div:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .offer-panel {
        grid-template-columns: minmax(0, .92fr) minmax(18rem, .72fr);
        align-items: stretch;
        min-height: 25rem;
        padding: 1.45rem;
    }

    .offer-panel:nth-child(even) {
        grid-template-columns: minmax(18rem, .72fr) minmax(0, .92fr);
    }

    .offer-panel:nth-child(even) .offer-copy {
        order: 2;
    }

    .offer-panel:nth-child(even) .offer-visual {
        order: 1;
    }

    .offer-copy h3 {
        font-size: 2.18rem;
    }

    .process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-left: 1px solid var(--line-light);
    }

    .process-step {
        min-height: 17rem;
        padding: 1.35rem;
        border-right: 1px solid var(--line-light);
    }

    .split-layout,
    .consulting-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 4rem;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .consulting-points {
        align-self: center;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .7fr .8fr;
    }

    .lightbox-panel {
        grid-template-columns: minmax(0, .95fr) minmax(18rem, .65fr);
        align-items: end;
    }
}

@media (min-width: 761px) and (max-width: 859px) {
    .scroll-story {
        min-height: 282vh;
    }

    .scroll-story__sticky {
        position: sticky;
        top: var(--header-height);
        height: calc(100svh - var(--header-height));
        min-height: 46rem;
        grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
        gap: 2rem;
        align-content: center;
        padding-block: 2rem;
    }

    .scroll-story__copy h2 {
        max-width: 14ch;
        font-size: clamp(2.12rem, 4.6vw, 3.25rem);
    }

    .story-step {
        padding: .66rem .78rem;
    }

    .story-step p {
        font-size: .78rem;
        line-height: 1.3;
    }

    .scroll-story__stage {
        height: min(58vh, 36rem);
        min-height: 31rem;
        max-height: calc(100svh - var(--header-height) - 2rem);
    }
}

@media (min-width: 1120px) {
    h1 {
        font-size: 5.2rem;
    }

    h2 {
        font-size: 3.3rem;
    }

    .hero-text {
        font-size: 1.16rem;
    }

    .portfolio-grid-large,
    .portfolio-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .project-card {
        min-height: 32rem;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 84px;
        --header-logo-chip-width: min(15.35rem, calc(100vw - 1.6rem));
        --header-logo-chip-height: 4.28rem;
        --header-logo-mark-width: 3.2rem;
        --header-logo-mark-height: 3.2rem;
    }

    body {
        padding-bottom: calc(6.4rem + env(safe-area-inset-bottom));
    }

    .site-header {
        position: sticky;
        background: linear-gradient(180deg, rgba(248, 241, 232, .76), rgba(248, 241, 232, .16));
        border-bottom: 0;
        box-shadow: none;
        transition: background 0s linear, box-shadow 0s linear, border-color 0s linear;
    }

    .site-header.is-scrolled {
        background: linear-gradient(180deg, rgba(248, 241, 232, .76), rgba(248, 241, 232, .16));
        box-shadow: none;
    }

    .header-shell {
        width: min(100% - 1rem, 1180px);
        gap: .45rem;
        padding-block: .48rem .6rem;
        transform: none;
    }

    .site-header.is-scrolled .header-shell {
        padding-block: .48rem .6rem;
        transform: none;
    }

    .brand-logo {
        --brand-mark-y: -.06rem;
        --brand-mark-scale: .92;
        --brand-mark-hover-scale: .92;
        width: var(--header-logo-chip-width);
        height: var(--header-logo-chip-height);
        min-height: 0;
        gap: .52rem;
        padding: .46rem .76rem .48rem .6rem;
        opacity: 1;
        animation: none;
        transform: translate3d(0, 0, 0);
        transition: none;
    }

    .site-header.is-scrolled .brand-logo {
        --brand-mark-y: -.06rem;
        --brand-mark-scale: .92;
        --brand-mark-hover-scale: .92;
        transform: translate3d(0, 0, 0);
    }

    .site-brand__mark {
        width: var(--header-logo-mark-width);
        height: var(--header-logo-mark-height);
    }

    .site-brand__image {
        width: 100%;
        opacity: 1;
        animation: none;
        transform: translate3d(0, var(--brand-mark-y), 0) scale(var(--brand-mark-scale));
    }

    .site-brand__copy {
        opacity: 1;
        min-width: 0;
        animation: none;
        transform: translate3d(0, 0, 0);
        transition: none;
    }

    .site-header.is-scrolled .site-brand__copy {
        transform: translate3d(0, 0, 0);
    }

    .site-brand__name {
        font-size: clamp(.82rem, 3.5vw, .94rem);
        line-height: 1.03;
        letter-spacing: .055em;
    }

    .site-brand__tagline {
        display: block;
        margin-top: .1rem;
        max-width: 100%;
        overflow: hidden;
        color: rgba(255, 250, 244, .8);
        font-size: clamp(.39rem, 1.55vw, .48rem);
        line-height: 1.02;
        letter-spacing: .13em;
        text-overflow: clip;
        white-space: nowrap;
    }

    .site-brand__shine {
        display: none;
        animation: none;
    }

    .icon-nav {
        display: none;
    }

    .mobile-page-nav {
        position: fixed;
        left: 50%;
        bottom: calc(.78rem + env(safe-area-inset-bottom));
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: .28rem;
        width: min(calc(100vw - 1rem), 26rem);
        padding: .42rem;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: 28px;
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .82), transparent 72%),
            rgba(255, 250, 244, .74);
        box-shadow: 0 20px 70px rgba(84, 61, 45, .18);
        backdrop-filter: blur(22px);
        transform: translate3d(-50%, 0, 0);
        will-change: transform;
    }

    .mobile-page-nav__item {
        position: relative;
        display: grid;
        place-items: center;
        min-height: 3.2rem;
        color: var(--text-soft);
        border-radius: 21px;
        transition: color .24s var(--ease-soft), background .24s var(--ease-soft), transform .24s var(--ease-soft), box-shadow .24s var(--ease-soft);
    }

    .mobile-page-nav__item span {
        display: grid;
        place-items: center;
        width: 2.3rem;
        height: 2.3rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .38);
        transition: transform .24s var(--ease-soft), background .24s var(--ease-soft);
    }

    .mobile-page-nav__item svg {
        width: 1.38rem;
        height: 1.38rem;
    }

    .mobile-page-nav__item--dog svg {
        width: 1.62rem;
        height: 1.62rem;
    }

    .mobile-page-nav__item--dog svg * {
        fill: none;
        stroke: currentColor;
        stroke-width: 2.35;
        stroke-linecap: round;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
    }

    .mobile-page-nav__item strong {
        position: absolute;
        left: 50%;
        bottom: calc(100% + .42rem);
        width: max-content;
        max-width: 8.2rem;
        padding: .32rem .54rem;
        color: var(--text-main);
        border: 1px solid rgba(255, 255, 255, .68);
        border-radius: 999px;
        background: rgba(255, 250, 244, .78);
        box-shadow: 0 12px 28px rgba(84, 61, 45, .12);
        font-size: .7rem;
        line-height: 1.1;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, .35rem) scale(.94);
        transition: opacity .22s var(--ease-soft), transform .22s var(--ease-soft);
    }

    .mobile-page-nav__item:hover,
    .mobile-page-nav__item:focus-visible,
    .mobile-page-nav__item.is-active {
        color: var(--text-main);
        background: rgba(255, 255, 255, .42);
        transform: translateY(-.18rem);
    }

    .mobile-page-nav__item:hover strong,
    .mobile-page-nav__item:focus-visible strong,
    .mobile-page-nav__item.is-active strong {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }

    .mobile-page-nav__item.is-active span {
        background: linear-gradient(135deg, rgba(216, 169, 141, .42), rgba(203, 216, 220, .48));
        box-shadow: 0 0 0 6px rgba(216, 169, 141, .12);
    }

    .hero-soft .hero-layout {
        padding-block: .2rem .3rem;
    }

    .scroll-story {
        min-height: 286vh;
    }

    .scroll-story__sticky {
        position: sticky;
        top: var(--header-height);
        min-height: 0;
        height: calc(100svh - var(--header-height) - 5.9rem);
        align-content: start;
        gap: .72rem;
        padding-block: .72rem;
    }

    .scroll-story__copy {
        max-width: 100%;
    }

    .scroll-story__copy h2 {
        max-width: 17ch;
        margin-bottom: .55rem;
        font-size: clamp(1.48rem, 6vw, 2rem);
        line-height: 1.02;
    }

    .scroll-story__copy > p:not(.eyebrow) {
        display: none;
    }

    .story-steps {
        position: relative;
        min-height: 6.55rem;
        margin-top: .72rem;
        isolation: isolate;
    }

    .story-step {
        position: absolute;
        inset: 0;
        align-content: center;
        padding: .68rem .8rem;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, .55rem, 0) scale(.985);
    }

    .story-step.is-active {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    .scroll-story__stage {
        height: clamp(18.6rem, 42svh, 22rem);
        min-height: 0;
        max-height: calc(100svh - var(--header-height) - 15.5rem);
        border-radius: 30px 20px 36px 22px;
    }

    .story-device {
        width: min(78%, 18rem);
        min-height: 17rem;
    }

    .story-layer--photo {
        left: 6%;
        top: 9%;
        width: 52%;
        min-height: 14rem;
    }

    .story-layer--social {
        right: 6%;
        top: 18%;
        width: 44%;
        min-height: 11rem;
    }

    .story-layer--dog {
        left: 7%;
        bottom: 11%;
        width: 43%;
        min-height: 9.6rem;
    }

    .story-layer--dog svg {
        width: 4.1rem;
        height: 4.1rem;
    }

    .story-layer--cta {
        right: 6%;
        bottom: 9%;
        width: 50%;
        min-height: 10.2rem;
    }

    .hero {
        min-height: auto;
        padding-block: 2.4rem 3.2rem;
    }

    .hero-layout {
        gap: 1.65rem;
    }

    .hero-copy {
        max-width: 34rem;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-artboard {
        width: min(100%, 22.5rem);
        min-height: 25.5rem;
        margin-top: .5rem;
    }

    .section {
        padding-block: 4rem;
    }

    .topic-hero {
        padding-block: 3.2rem 3rem;
    }

    .topic-hero__grid {
        gap: 1.5rem;
    }

    .topic-visual {
        min-height: 16rem;
        border-radius: 28px 18px 34px 20px;
    }

    .topic-card,
    .detail-card,
    .project-card,
    .contact-card,
    .contact-form {
        border-radius: 24px 18px 28px 20px;
    }

    .page-topic .topic-hero {
        padding-block: 2.65rem 2.9rem;
    }

    .page-topic .topic-hero__grid {
        gap: 1.35rem;
    }

    .page-topic .topic-hero__copy {
        max-width: 34rem;
    }

    .page-topic .topic-hero__copy h1 {
        max-width: 12.5ch;
        font-size: clamp(2.12rem, 8.6vw, 3rem);
    }

    .page-topic .topic-hero__copy p:not(.eyebrow) {
        max-width: 33rem;
        font-size: .98rem;
        line-height: 1.65;
    }

    .page-topic .topic-hero__copy .button {
        width: min(100%, 18.5rem);
    }

    .page-topic .topic-visual {
        justify-self: center;
        width: min(100%, 24rem);
        min-height: clamp(14.5rem, 58vw, 19rem);
    }

    .topic-visual--dog,
    .topic-visual--photo,
    .topic-visual--video,
    .topic-visual--prices {
        padding: .75rem;
    }

    .hero-motion {
        width: min(100%, 23rem);
        aspect-ratio: 1.28;
    }

    .video-motion__panel {
        inset: 5%;
        gap: .52rem;
        padding: .78rem;
        border-radius: 30px 20px 36px 22px;
    }

    .video-motion__clapper {
        min-height: 3.35rem;
        padding: .42rem;
        border-radius: 20px 14px 22px 16px;
    }

    .video-motion__preview {
        min-height: 6.8rem;
        border-radius: 24px 16px 30px 18px;
    }

    .video-motion__play {
        width: 3.45rem;
        height: 3.45rem;
    }

    .video-motion__reel {
        width: 6.25rem;
        height: 7.4rem;
        border-radius: 20px 14px 24px 16px;
    }

    .video-motion__reel--two {
        height: 5.95rem;
    }

    .photo-motion__stack {
        inset: 7% 7% 9%;
    }

    .photo-motion__card {
        border-radius: 30px 20px 36px 22px;
    }

    .photo-motion__focus {
        inset: 18% 14% 21%;
    }

    .photo-motion__shutter {
        right: 16%;
        top: 38%;
        width: 4rem;
        height: 4rem;
    }

    .photo-motion__label {
        left: 10%;
        bottom: 8%;
        min-height: 1.9rem;
        padding: .34rem .62rem;
        font-size: .7rem;
    }

    .pricing-motion {
        --pricing-highlight-x-one: 8.4rem;
        --pricing-highlight-y-one: 1.2rem;
        --pricing-highlight-x-two: 3.7rem;
        --pricing-highlight-y-two: 6.8rem;
    }

    .pricing-motion__highlight {
        width: 8.6rem;
        height: 8.6rem;
    }

    .pricing-motion__card {
        width: 48%;
        min-height: 45%;
        padding: .78rem;
        border-radius: 24px 16px 30px 18px;
    }

    .pricing-motion__card--1 {
        left: 2%;
        top: 9%;
    }

    .pricing-motion__card--2 {
        right: 2%;
        top: 15%;
    }

    .pricing-motion__card--3 {
        left: 23%;
        bottom: 7%;
    }

    .pricing-motion__card span {
        min-height: 1.45rem;
        padding-inline: .48rem;
        font-size: .58rem;
    }

    .topic-visual--feed {
        padding: .75rem;
    }

    .social-cinema {
        width: min(100%, 23rem);
        aspect-ratio: 1.28;
    }

    .social-cinema__phone {
        width: 63%;
        min-height: 77%;
        gap: .58rem;
        padding: .78rem;
        border-radius: 30px 20px 36px 22px;
    }

    .social-cinema__profile {
        gap: .48rem;
    }

    .social-cinema__profile span {
        width: 2.05rem;
        height: 2.05rem;
        box-shadow: 0 0 0 .32rem rgba(255, 250, 244, .48);
    }

    .social-cinema__profile strong,
    .social-cinema__reel strong,
    .social-cinema__insight strong {
        font-size: .68rem;
    }

    .social-cinema__grid {
        gap: .34rem;
    }

    .social-cinema__grid span {
        min-height: 3.42rem;
        border-radius: 16px 12px 20px 14px;
    }

    .social-cinema__reel,
    .social-cinema__insight {
        gap: .32rem;
        padding: .56rem;
    }

    .social-cinema__reel {
        left: 3%;
        bottom: 9%;
        width: 7.8rem;
        border-radius: 20px 14px 24px 16px;
    }

    .social-cinema__reel span {
        min-height: 3.5rem;
        border-radius: 15px 10px 18px 12px;
    }

    .social-cinema__insight {
        right: 3%;
        top: 9%;
        width: 7.8rem;
        border-radius: 20px 14px 24px 16px;
    }

    .dog-cinema {
        width: min(100%, 23rem);
        aspect-ratio: 1.28;
    }

    .dog-cinema__frame {
        inset: 4%;
        border-radius: 30px 20px 36px 22px;
    }

    .dog-cinema__frame::before {
        inset: .75rem;
        border-radius: 24px 16px 30px 18px;
    }

    .dog-cinema__scene {
        inset: 2% 0 0;
        width: 100%;
        height: 94%;
    }

    .dog-cinema__collie {
        transform-origin: 55% 58%;
    }

    .dog-cinema__chip {
        min-height: 1.95rem;
        padding: .34rem .56rem;
        font-size: .68rem;
    }

    .dog-cinema__chip--one {
        left: 6%;
        bottom: 10%;
    }

    .dog-cinema__chip--two {
        right: 7%;
        top: 10%;
    }

    .dog-cinema__chip--three {
        right: 5%;
        bottom: 12%;
    }

    .page-topic .topic-detail-grid {
        gap: .85rem;
    }

    .photo-card--main {
        inset: .8rem 1rem 2.2rem .6rem;
    }

    .photo-card--dog {
        right: .2rem;
        width: 11.4rem;
    }

    .social-preview-card {
        width: 10.2rem;
    }

    .offer-panel {
        border-radius: 20px;
    }

    .offer-copy h3 {
        font-size: 1.55rem;
    }

    .offer-visual {
        min-height: 13rem;
    }

    .social-mockup span {
        min-height: 4.4rem;
    }
}

@media (min-width: 761px) and (max-width: 1024px) {
    .reveal {
        filter: none;
    }

    .page-topic .topic-hero {
        padding-block: 4rem 3.6rem;
    }

    .page-topic .topic-hero__grid {
        grid-template-columns: minmax(0, .98fr) minmax(17rem, .72fr);
        gap: 2rem;
    }

    .page-topic .topic-hero__copy h1 {
        max-width: 12ch;
        font-size: clamp(3.1rem, 6.4vw, 4rem);
    }

    .page-topic .topic-visual {
        min-height: 18rem;
    }

    .page-topic .topic-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .9rem;
    }

    .page-topic .topic-card {
        padding: 1.05rem;
    }

    .page-topic .topic-card h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 84px;
        --header-logo-chip-width: min(15rem, calc(100vw - 1.35rem));
        --header-logo-chip-height: 4.18rem;
        --header-logo-mark-width: 3.02rem;
        --header-logo-mark-height: 3.02rem;
    }

    .brand-logo {
        gap: .48rem;
        padding-inline: .54rem .68rem;
    }

    .site-brand__name {
        font-size: clamp(.8rem, 3.85vw, .9rem);
    }

    .site-brand__tagline {
        font-size: clamp(.36rem, 1.75vw, .44rem);
        letter-spacing: .115em;
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.95rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-metrics div {
        min-height: 0;
    }

    .frame-readout {
        display: none;
    }

    .hero-actions .button,
    .cta-panel .button {
        width: 100%;
    }

    .hero-artboard {
        min-height: 25.5rem;
    }

    .scroll-story__stage {
        height: clamp(18rem, 40svh, 20.8rem);
        min-height: 0;
    }

    .story-steps {
        min-height: 6.35rem;
        gap: .55rem;
    }

    .story-step {
        padding: .78rem .82rem;
        border-radius: 20px 14px 22px 16px;
    }

    .story-layer {
        padding: .74rem;
    }

    .story-layer--photo {
        width: 56%;
        min-height: 12.4rem;
    }

    .story-layer--social {
        width: 46%;
        min-height: 9.8rem;
    }

    .story-layer--social span {
        min-height: 3.25rem;
    }

    .story-layer--dog {
        width: 47%;
        min-height: 8.7rem;
    }

    .story-layer--dog svg {
        width: 3.45rem;
        height: 3.45rem;
        margin-bottom: .55rem;
    }

    .story-layer--cta {
        width: 54%;
        min-height: 9.2rem;
    }

    .dog-cinema {
        aspect-ratio: 1.18;
    }

    .dog-cinema__paw {
        --paw-shift-x: -.32rem;
    }

    .social-cinema {
        aspect-ratio: 1.18;
    }

    .hero-motion {
        width: min(100%, 20.75rem);
        aspect-ratio: 1.18;
    }

    .video-motion__panel {
        inset: 4%;
        padding: .68rem;
    }

    .video-motion__wave {
        bottom: 20%;
        height: 4rem;
    }

    .video-motion__timeline {
        gap: .32rem;
    }

    .video-motion__reel {
        width: 5.55rem;
        height: 6.7rem;
    }

    .photo-motion__stack {
        inset: 5%;
    }

    .photo-motion__card--front {
        inset: 9% 8% 6% 5%;
    }

    .photo-motion__shutter {
        width: 3.45rem;
        height: 3.45rem;
    }

    .pricing-motion {
        --pricing-highlight-x-one: 7.2rem;
        --pricing-highlight-y-one: .95rem;
        --pricing-highlight-x-two: 3.1rem;
        --pricing-highlight-y-two: 5.9rem;
    }

    .pricing-motion__card {
        gap: .38rem;
        padding: .68rem;
    }

    .pricing-motion__card strong {
        font-size: 1.32rem;
    }

    .pricing-motion__card i {
        height: .4rem;
    }

    .social-cinema__phone {
        width: 67%;
        min-height: 75%;
        padding: .68rem;
    }

    .social-cinema__grid span {
        min-height: 3rem;
    }

    .social-cinema__reel {
        left: 0;
        bottom: 8%;
        width: 7rem;
    }

    .social-cinema__insight {
        right: 0;
        top: 8%;
        width: 7rem;
    }

    .dog-cinema__chip--three {
        display: none;
    }

    .photo-card--dog {
        bottom: 3rem;
        width: 10.4rem;
        padding: .78rem;
    }

    .social-preview-card {
        top: 4.2rem;
        width: 9.4rem;
    }

    .film-ribbon {
        left: 2rem;
        right: .8rem;
    }

    .contact-form {
        padding: .8rem;
    }

    .checkbox-field {
        grid-template-columns: 1.25rem minmax(0, 1fr);
        gap: .68rem;
        align-items: start;
        padding-inline: .06rem;
    }

    .checkbox-field input {
        inline-size: 1.18rem;
        block-size: 1.18rem;
        width: 1.18rem;
        height: 1.18rem;
        min-width: 1.18rem;
        margin-top: .22rem;
    }

    .checkbox-field span {
        font-size: .86rem;
        line-height: 1.48;
    }

    .footer-grid {
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        display: grid;
        justify-items: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.page-topic-info .info-hero {
    padding-bottom: clamp(4.6rem, 8vw, 7.25rem);
}

.page-topic-info .info-hero__grid {
    gap: clamp(2.2rem, 5vw, 5.25rem);
}

.page-topic-info .info-hero__visual {
    isolation: isolate;
}

.page-topic-info .info-hero__visual::before {
    content: "";
    position: absolute;
    inset: 1rem;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, .84), transparent 32%),
        radial-gradient(circle at 22% 84%, rgba(185, 201, 212, .38), transparent 36%);
}

.page-topic-info .info-pricing-section {
    position: relative;
    overflow: clip;
    padding-block: clamp(3.8rem, 7vw, 7.5rem);
    background:
        radial-gradient(circle at 9% 18%, rgba(255, 250, 244, .82), transparent 23rem),
        radial-gradient(circle at 88% 8%, rgba(230, 199, 194, .34), transparent 24rem);
}

.page-topic-info .info-pricing-section::before {
    content: "";
    position: absolute;
    inset: auto -8rem -10rem auto;
    width: min(34rem, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(203, 216, 220, .24);
    filter: blur(4px);
    pointer-events: none;
}

.page-topic-info .info-pricing-layout {
    position: relative;
    display: grid;
    gap: clamp(1.4rem, 4vw, 3.5rem);
    align-items: start;
}

.page-topic-info .info-pricing-copy {
    max-width: 40rem;
}

.page-topic-info .info-pricing-copy h2,
.page-topic-info .info-flow-heading h2,
.page-topic-info .info-placeholder-panel h2 {
    max-width: 11ch;
    text-wrap: balance;
}

.page-topic-info .info-pricing-copy p:not(.eyebrow),
.page-topic-info .info-flow-heading p:not(.eyebrow),
.page-topic-info .info-placeholder-panel p:not(.eyebrow) {
    max-width: 38rem;
    color: var(--text-soft);
}

.page-topic-info .info-package-grid {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.page-topic-info .price-package-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-rows: auto auto minmax(3.2rem, 1fr) auto auto;
    gap: .28rem;
    min-width: 0;
    min-height: clamp(13rem, 18vw, 17.5rem);
    padding: clamp(1.05rem, 2.5vw, 1.65rem);
    overflow: hidden;
    color: var(--text-main);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 34px 22px 42px 24px;
    background:
        linear-gradient(145deg, rgba(255, 250, 244, .82), rgba(248, 241, 232, .58)),
        radial-gradient(circle at 78% 12%, rgba(216, 169, 141, .28), transparent 14rem);
    box-shadow: var(--shadow-card);
    transform: translate3d(0, 0, 0);
    transition:
        transform .42s var(--ease-soft),
        box-shadow .42s var(--ease-soft),
        border-color .42s var(--ease-soft),
        background .42s var(--ease-soft);
}

.page-topic-info .price-package-card > * {
    position: relative;
    z-index: 1;
}

.page-topic-info .price-package-card::before,
.page-topic-info .price-package-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-topic-info .price-package-card::before {
    inset: .75rem;
    z-index: -1;
    border: 1px solid rgba(92, 73, 60, .08);
    border-radius: 28px 16px 36px 18px;
}

.page-topic-info .price-package-card::after {
    right: -2.4rem;
    bottom: -3rem;
    width: 11rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .72), transparent 32%),
        rgba(185, 201, 212, .22);
}

.page-topic-info .price-package-card:hover,
.page-topic-info .price-package-card:focus-visible {
    border-color: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-float);
    transform: translate3d(0, -6px, 0);
}

.page-topic-info .price-package-card--featured {
    background:
        linear-gradient(145deg, rgba(255, 250, 244, .9), rgba(234, 208, 189, .42)),
        radial-gradient(circle at 88% 14%, rgba(207, 166, 162, .24), transparent 16rem);
}

.page-topic-info .price-package-card__tag {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: .35rem .72rem;
    color: var(--text-soft);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: rgba(255, 250, 244, .56);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-topic-info .price-package-card strong {
    align-self: end;
    max-width: 100%;
    font-size: clamp(1.42rem, 1.85vw, 2.08rem);
    line-height: .98;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.page-topic-info .price-package-card p {
    align-self: start;
    max-width: 22rem;
    margin: .5rem 0 0;
    color: var(--text-soft);
}

.page-topic-info .price-package-card__price {
    align-self: end;
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
    padding: .38rem .78rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 250, 244, .58);
    font-size: 1.08rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(84, 61, 45, .08);
}

.page-topic-info .price-package-card small {
    align-self: start;
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    color: var(--accent-clay);
    font-weight: 850;
}

.page-topic-info .price-package-card small::after {
    content: "";
    width: 1.7rem;
    height: 1px;
    background: currentColor;
    transform-origin: left center;
    transition: transform .34s var(--ease-soft);
}

.page-topic-info .price-package-card:hover small::after,
.page-topic-info .price-package-card:focus-visible small::after {
    transform: scaleX(1.35);
}

.page-topic-info .info-flow-section {
    position: relative;
    overflow: clip;
    padding-block: clamp(3.6rem, 7vw, 7rem);
    background:
        linear-gradient(180deg, rgba(255, 250, 244, .16), rgba(255, 250, 244, .38)),
        radial-gradient(circle at 20% 24%, rgba(216, 169, 141, .18), transparent 22rem);
}

.page-topic-info .info-flow-layout {
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.4rem);
}

.page-topic-info .info-flow-heading {
    max-width: 42rem;
}

.page-topic-info .info-flow-grid {
    position: relative;
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.page-topic-info .info-flow-grid::before {
    content: none !important;
    display: none !important;
}

.page-topic-info .info-flow-card {
    position: relative;
    min-width: 0;
    padding: clamp(1.65rem, 3vw, 2rem);
    overflow: hidden;
}

.page-topic-info .info-flow-card::before {
    content: "";
    position: absolute;
    inset: 1.45rem auto auto 1.16rem;
    width: .58rem;
    height: .58rem;
    border-radius: 50%;
    background: var(--accent-clay);
    box-shadow: 0 0 0 .38rem rgba(216, 169, 141, .16);
    transform: translateY(-50%);
}

.page-topic-info .info-flow-card > span {
    position: relative;
    z-index: 1;
    margin-left: 1rem;
}

.page-topic-info .info-placeholder-section {
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.page-topic-info .info-placeholder-panel {
    position: relative;
    display: grid;
    gap: 1.4rem;
    align-items: center;
    padding: clamp(1.35rem, 4vw, 2.5rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 38px 24px 46px 26px;
    background:
        radial-gradient(circle at 78% 26%, rgba(185, 201, 212, .2), transparent 18rem),
        rgba(255, 250, 244, .08);
}

.page-topic-info .info-placeholder-panel::after {
    content: "";
    position: absolute;
    right: clamp(1rem, 5vw, 4rem);
    bottom: -2.7rem;
    width: min(15rem, 46vw);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 250, 244, .18);
    border-radius: 50%;
    pointer-events: none;
}

.page-topic-info .info-addon-section {
    position: relative;
    overflow: clip;
    padding-block: clamp(3.6rem, 7vw, 6.75rem);
    background:
        radial-gradient(circle at 82% 20%, rgba(203, 216, 220, .28), transparent 24rem),
        radial-gradient(circle at 18% 74%, rgba(216, 169, 141, .18), transparent 24rem);
}

.page-topic-info .info-addon-layout {
    display: grid;
    gap: clamp(1.3rem, 3.5vw, 2.8rem);
}

.page-topic-info .info-addon-heading {
    max-width: 43rem;
}

.page-topic-info .info-addon-heading h2 {
    max-width: 10ch;
    text-wrap: balance;
}

.page-topic-info .info-addon-heading p:not(.eyebrow) {
    max-width: 39rem;
    color: var(--text-soft);
}

.page-topic-info .info-addon-grid {
    display: grid;
    gap: .85rem;
    min-width: 0;
}

.page-topic-info .info-addon-card {
    position: relative;
    display: flex;
    min-width: 0;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    min-height: 5.25rem;
    padding: 1rem 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 250, 244, .74), rgba(248, 241, 232, .48)),
        radial-gradient(circle at 92% 50%, rgba(230, 199, 194, .26), transparent 12rem);
    box-shadow: var(--shadow-card);
}

.page-topic-info .info-addon-card h3 {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.page-topic-info .info-addon-card strong {
    flex: 0 0 auto;
    display: inline-grid;
    min-width: 4.4rem;
    min-height: 2.55rem;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: rgba(255, 250, 244, .62);
    font-size: 1.04rem;
}

.price-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    align-items: end;
    padding: 1rem;
    background: rgba(48, 41, 35, .42);
    backdrop-filter: blur(18px);
}

.price-modal[hidden] {
    display: none;
}

.price-modal__panel {
    position: relative;
    width: min(100%, 58rem);
    min-width: 0;
    max-height: calc(100svh - 2rem);
    overflow: auto;
    padding: clamp(1rem, 3vw, 1.8rem);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 34px 24px 0 0;
    background:
        radial-gradient(circle at 82% 8%, rgba(230, 199, 194, .34), transparent 18rem),
        linear-gradient(145deg, rgba(255, 250, 244, .96), rgba(248, 241, 232, .88));
    box-shadow: var(--shadow-float);
    animation: price-modal-in .34s var(--ease-soft) both;
    outline: none;
}

.price-modal__close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    place-items: center;
    color: var(--text-main);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: rgba(255, 250, 244, .72);
    box-shadow: 0 12px 26px rgba(84, 61, 45, .1);
    transition:
        transform .28s var(--ease-soft),
        background .28s var(--ease-soft);
}

.price-modal__close:hover,
.price-modal__close:focus-visible {
    background: rgba(255, 255, 255, .86);
    transform: translateY(-2px);
}

.price-modal__summary {
    min-height: 13rem;
    padding: clamp(1rem, 3vw, 1.6rem);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px 18px 34px 20px;
    background:
        radial-gradient(circle at 74% 18%, rgba(255, 255, 255, .72), transparent 36%),
        rgba(255, 250, 244, .58);
}

.price-modal__summary h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 2.8vw, 2.85rem);
    line-height: .94;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.price-modal__summary p:last-child {
    color: var(--text-soft);
    font-weight: 800;
}

.price-modal__summary [data-price-modal-intro] {
    color: var(--text-soft);
    font-weight: 760;
}

.price-modal__summary strong {
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
    padding: .44rem .9rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background: rgba(255, 250, 244, .6);
    font-size: 1.18rem;
    font-weight: 900;
}

.price-modal__content {
    display: grid;
    gap: .8rem;
    margin-top: 1rem;
    min-width: 0;
}

.price-modal__content article {
    position: relative;
    min-width: 0;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 22px 16px 26px 18px;
    background: rgba(255, 250, 244, .48);
}

.price-modal__content span {
    display: inline-flex;
    margin-bottom: .65rem;
    color: var(--accent-clay);
    font-weight: 850;
}

.price-modal__content h3 {
    margin: 0;
    font-size: 1.04rem;
}

.price-modal__content p {
    margin: .35rem 0 0;
    color: var(--text-soft);
}

.price-modal__content ul {
    display: grid;
    gap: .45rem;
    padding: 0;
    margin: .7rem 0 0;
    color: var(--text-soft);
    list-style: none;
}

.price-modal__content li {
    position: relative;
    padding-left: 1.05rem;
}

.price-modal__content li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: .34rem;
    height: .34rem;
    border-radius: 50%;
    background: var(--accent-clay);
}

.price-modal__content li span {
    display: inline;
    margin: 0;
    color: var(--text-main);
    font-weight: 820;
}

.price-modal__content li ul {
    gap: .28rem;
    margin-top: .34rem;
}

.price-modal__content li li {
    padding-left: .95rem;
}

.price-modal__content li li::before {
    width: .24rem;
    height: .24rem;
    background: var(--text-muted);
}

.price-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1rem;
}

.price-modal__actions .button {
    min-width: 0;
}

@keyframes price-modal-in {
    from {
        opacity: 0;
        transform: translate3d(0, 1.4rem, 0) scale(.985);
    }

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

@media (min-width: 860px) {
    .page-topic-info .info-pricing-layout {
        grid-template-columns: minmax(14rem, .58fr) minmax(0, 1.42fr);
    }

    .page-topic-info .info-pricing-copy {
        position: sticky;
        top: calc(var(--header-height) + 2rem);
    }

    .page-topic-info .info-package-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .page-topic-info .price-package-card--featured {
        margin-top: -1.2rem;
        min-height: clamp(14.2rem, 20vw, 19rem);
    }

    .page-topic-info .info-flow-layout {
        grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
        gap: clamp(3rem, 5vw, 5rem);
        align-items: start;
    }

    .page-topic-info .info-flow-heading {
        position: sticky;
        top: calc(var(--header-height) + 2rem);
    }

    .page-topic-info .info-flow-heading h2 {
        max-width: 10.4ch;
        font-size: clamp(2.65rem, 3.65vw, 3.15rem);
    }

    .page-topic-info .info-flow-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-topic-info .info-addon-layout {
        grid-template-columns: minmax(14rem, .58fr) minmax(0, 1.42fr);
        align-items: start;
    }

    .page-topic-info .info-addon-heading {
        position: sticky;
        top: calc(var(--header-height) + 2rem);
    }

    .page-topic-info .info-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-topic-info .info-flow-grid::before {
        content: none !important;
        display: none !important;
    }

    .page-topic-info .info-flow-card:nth-child(2) {
        margin-top: 2.2rem;
    }

    .page-topic-info .info-flow-card:nth-child(3) {
        margin-top: 4.4rem;
    }

    .page-topic-info .info-placeholder-panel {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .price-modal {
        place-items: center;
        padding: 2rem;
    }

    .price-modal__panel {
        display: grid;
        grid-template-columns: minmax(15rem, .78fr) minmax(0, 1.22fr);
        gap: 1rem;
        max-height: min(82svh, 46rem);
        border-radius: 38px 24px 46px 26px;
    }

    .price-modal__content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
        padding-right: 3.2rem;
    }

    .price-modal__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (min-width: 860px) and (max-width: 1024px) {
    .page-topic-info .info-pricing-layout,
    .page-topic-info .info-flow-layout,
    .page-topic-info .info-addon-layout {
        grid-template-columns: 1fr;
    }

    .page-topic-info .info-pricing-copy,
    .page-topic-info .info-flow-heading,
    .page-topic-info .info-addon-heading {
        position: static;
    }
}

@media (min-width: 761px) and (max-width: 859px) {
    .page-topic-info .info-pricing-copy,
    .page-topic-info .info-flow-heading,
    .page-topic-info .info-addon-heading {
        display: grid;
        justify-items: center;
        text-align: center;
        justify-self: center;
    }

    .page-topic-info .info-pricing-copy .eyebrow,
    .page-topic-info .info-flow-heading .eyebrow,
    .page-topic-info .info-addon-heading .eyebrow {
        display: grid;
        gap: .5rem;
        justify-items: center;
        width: 100%;
    }

    .page-topic-info .info-pricing-copy .eyebrow::before,
    .page-topic-info .info-flow-heading .eyebrow::before,
    .page-topic-info .info-addon-heading .eyebrow::before {
        width: 2.25rem;
        height: 1px;
    }

    .page-topic-info .info-pricing-copy p:not(.eyebrow),
    .page-topic-info .info-flow-heading p:not(.eyebrow),
    .page-topic-info .info-addon-heading p:not(.eyebrow) {
        margin-inline: auto;
    }

    .page-topic-info .info-package-grid,
    .page-topic-info .info-flow-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-topic-info .info-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-topic-info .price-package-card {
        min-height: 14rem;
    }

    .page-topic-info .price-package-card--featured {
        margin-top: -.8rem;
    }

    .page-topic-info .info-flow-grid::before {
        content: none !important;
        display: none !important;
    }

    .page-topic-info .info-flow-card:nth-child(2) {
        margin-top: 1.5rem;
    }

    .page-topic-info .info-flow-card:nth-child(3) {
        margin-top: 3rem;
    }

    .price-modal {
        place-items: center;
        padding: 1.5rem;
    }

    .price-modal__panel {
        width: min(100%, 46rem);
        max-height: min(86svh, 46rem);
        border-radius: 36px 22px 42px 24px;
    }

    .price-modal__content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-topic-info .info-addon-card {
        display: grid;
        min-height: 8rem;
        border-radius: 28px 18px 34px 20px;
    }
}

@media (max-width: 760px) {
    .reveal {
        transform: translate3d(0, 18px, 0);
        filter: none;
    }

    .page-topic-info .info-hero {
        padding-bottom: 3.7rem;
    }

    .page-topic-info .info-pricing-section,
    .page-topic-info .info-flow-section,
    .page-topic-info .info-placeholder-section {
        padding-block: 3rem;
    }

    .page-topic-info .info-pricing-section,
    .page-topic-info .info-flow-section {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
    }

    .page-topic-info .info-pricing-copy,
    .page-topic-info .info-flow-heading,
    .page-topic-info .info-addon-heading {
        display: grid;
        justify-items: center;
        text-align: center;
        justify-self: center;
    }

    .page-topic-info .info-pricing-copy .eyebrow,
    .page-topic-info .info-flow-heading .eyebrow,
    .page-topic-info .info-addon-heading .eyebrow {
        display: grid;
        gap: .5rem;
        justify-items: center;
        width: 100%;
    }

    .page-topic-info .info-pricing-copy .eyebrow::before,
    .page-topic-info .info-flow-heading .eyebrow::before,
    .page-topic-info .info-addon-heading .eyebrow::before {
        width: 2.25rem;
        height: 1px;
    }

    .page-topic-info .info-pricing-copy p:not(.eyebrow),
    .page-topic-info .info-flow-heading p:not(.eyebrow),
    .page-topic-info .info-addon-heading p:not(.eyebrow) {
        margin-inline: auto;
    }

    .page-topic-info .price-package-card {
        min-height: clamp(16rem, 58vw, 19.5rem);
        padding: 1.22rem;
        border-radius: 28px 18px 34px 20px;
    }

    .page-topic-info .price-package-card::before {
        inset: .78rem;
        border-radius: 22px 14px 28px 16px;
    }

    .page-topic-info .price-package-card__tag {
        min-height: 2.12rem;
        padding-inline: .82rem;
    }

    .page-topic-info .price-package-card strong {
        align-self: start;
        font-size: clamp(1.68rem, 8vw, 2.24rem);
        line-height: 1;
    }

    .page-topic-info .price-package-card p {
        max-width: 100%;
        margin-top: .62rem;
        font-size: .96rem;
        line-height: 1.5;
    }

    .page-topic-info .price-package-card__price {
        margin-top: 1.15rem;
        margin-bottom: .18rem;
        padding: .48rem .86rem;
        font-size: 1.08rem;
    }

    .page-topic-info .price-package-card small {
        padding-bottom: .18rem;
    }

    .page-topic-info .info-flow-grid::before {
        content: none !important;
        display: none !important;
    }

    .page-topic-info .info-placeholder-panel {
        text-align: center;
        justify-items: center;
    }

    .page-topic-info .info-placeholder-panel h2,
    .page-topic-info .info-placeholder-panel p {
        margin-inline: auto;
    }

    .price-modal__actions {
        flex-direction: column;
    }

    .price-modal__actions .button {
        width: 100%;
    }

    .price-modal__content article {
        padding: 1.08rem;
        border-radius: 24px 17px 28px 19px;
    }

    .page-topic-info .info-flow-card::before {
        inset: 1.5rem auto auto 1.08rem;
    }

    .page-topic-info .info-flow-card > span {
        margin-left: 1rem;
    }

    .page-topic-info .info-addon-card {
        border-radius: 26px 18px 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-topic-info .info-package-grid,
    .page-topic-info .info-flow-grid,
    .page-topic-info .info-addon-grid,
    .price-modal__content {
        gap: .75rem;
    }

    .page-topic-info .price-package-card {
        min-height: 17rem;
        padding: 1.08rem;
    }

    .price-modal {
        padding: .65rem;
    }

    .price-modal__panel {
        max-height: calc(100svh - 1.8rem);
        border-radius: 28px 18px 0 0;
    }
}

@media (hover: none) {
    .cursor-spotlight {
        display: none;
    }

    .tilt-ready,
    .tilt-ready:hover {
        transform: none;
    }
}

/* Final sizing guard for the Social Media hero mockup.
   Kept near the end so older generic .social-cinema media rules cannot crop it. */
.social-cinema.social-cinema--account {
    width: min(100%, 35rem);
    aspect-ratio: 1.14;
}

.social-cinema.social-cinema--account .social-account {
    width: min(92%, 26.8rem);
    min-height: 0;
    padding: .66rem .72rem .72rem;
}

.social-cinema.social-cinema--account .social-account__avatar {
    width: 4.82rem;
    height: 4.82rem;
    margin-bottom: .1rem;
}

.social-cinema.social-cinema--account .social-account__avatar span {
    width: 3.88rem;
    height: 3.88rem;
}

.social-cinema.social-cinema--account .social-account__identity {
    gap: .14rem;
}

.social-cinema.social-cinema--account .social-account__identity strong {
    font-size: 1rem;
}

.social-cinema.social-cinema--account .social-account__identity small {
    font-size: .66rem;
}

.social-cinema.social-cinema--account .social-account__stats {
    margin-top: .45rem;
}

.social-cinema.social-cinema--account .social-account__stats strong {
    font-size: 1.04rem;
}

.social-cinema.social-cinema--account .social-account__stats small {
    font-size: .56rem;
}

.social-cinema.social-cinema--account .social-account__actions {
    margin-top: .5rem;
}

.social-cinema.social-cinema--account .social-account__actions span {
    min-height: 1.72rem;
    font-size: .64rem;
}

.social-cinema.social-cinema--account .social-account__actions span:last-child {
    width: 1.72rem;
    height: 1.72rem;
    min-height: 1.72rem;
}

.social-cinema.social-cinema--account .social-account__bio {
    margin-top: .34rem;
    font-size: .6rem;
    line-height: 1.16;
}

.social-cinema.social-cinema--account .social-account__highlights {
    gap: .5rem;
    margin-top: .34rem;
}

.social-cinema.social-cinema--account .social-account__highlights span {
    min-width: 3.9rem;
    font-size: .54rem;
}

.social-cinema.social-cinema--account .social-account__highlights i {
    width: 1.82rem;
    height: 1.82rem;
}

.social-cinema.social-cinema--account .social-account__tabs {
    margin-top: .32rem;
    padding-top: .26rem;
}

.social-cinema.social-cinema--account .social-account__videos {
    gap: .16rem;
    margin: .24rem -.18rem -.16rem;
}

.social-cinema.social-cinema--account .social-account__video {
    min-height: 3.28rem;
    padding: .26rem .27rem;
}

.social-cinema.social-cinema--account .social-account__video em,
.social-cinema.social-cinema--account .social-account__video b,
.social-cinema.social-cinema--account .social-account__video small {
    font-size: .52rem;
}

@media (max-width: 760px) {
    .social-cinema.social-cinema--account {
        width: min(100%, 21rem);
        aspect-ratio: .74;
    }

    .social-cinema.social-cinema--account .social-account {
        width: min(94%, 18.35rem);
    }

    .social-cinema.social-cinema--account .social-account__growth-chip {
        display: none;
    }
}

@media (max-width: 420px) {
    .social-cinema.social-cinema--account {
        width: min(100%, 19.35rem);
        aspect-ratio: .72;
    }

    .social-cinema.social-cinema--account .social-account {
        width: min(94%, 17.35rem);
        padding: .58rem .58rem .62rem;
    }

    .social-cinema.social-cinema--account .social-account__video {
        min-height: 3.12rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-story {
        min-height: auto;
    }

    .scroll-story__sticky,
    .scroll-story__stage,
    .story-step,
    .story-layer {
        transform: none;
    }

    .story-layer {
        opacity: .9;
    }

    .cursor-spotlight,
    .play-pulse::after,
    .site-brand__shine {
        display: none;
    }

    .brand-logo,
    .site-brand__copy,
    .site-brand__image {
        opacity: 1;
        transform: none;
    }
}
