/*
 * SO.GL landing page
 * Pure CSS, no build step. Brand colors and sizing live here as variables.
 */

:root {
    --paper: #fffdf9;
    --cream: #fff6e9;
    --cream-strong: #f7eadb;
    --ink: #251b2b;
    --ink-soft: #44384a;
    --muted: #706773;
    --line: rgba(37, 27, 43, 0.13);
    --white-line: rgba(255, 255, 255, 0.18);
    --pink: #ff4f8b;
    --pink-dark: #e93475;
    --coral: #ff765f;
    --yellow: #ffd567;
    --lilac: #d9c3ff;
    --violet: #8658e8;
    --mint: #ace8d3;
    --blue: #a8d8ff;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-xl: 48px;
    --shadow-sm: 0 10px 30px rgba(56, 33, 65, 0.08);
    --shadow-md: 0 24px 70px rgba(56, 33, 65, 0.14);
    --shadow-paper: 0 22px 50px rgba(21, 13, 25, 0.24);
    --shell: 1220px;
    --header-height: 82px;
    --font-sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-display: "Arial Black", Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    background: var(--paper);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 6%, rgba(255, 213, 103, 0.18), transparent 23rem),
        var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
select {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

[hidden] {
    display: none !important;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--violet);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

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

.shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.section--paper {
    background: var(--paper);
}

.section--soft {
    background: var(--cream);
}

.section--ink {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(134, 88, 232, 0.4), transparent 28rem),
        radial-gradient(circle at 5% 90%, rgba(255, 79, 139, 0.19), transparent 24rem),
        var(--ink);
    color: #fff;
}

.section--ink::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 22px 22px;
    content: "";
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    pointer-events: none;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--pink-dark);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2.45rem, 5vw, 5.2rem);
    line-height: 0.98;
}

h2 em,
h1 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
}

.section-heading--split > p {
    max-width: 440px;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading--center {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--light .eyebrow {
    color: var(--yellow);
}

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.68);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 12px 28px rgba(255, 79, 139, 0.23);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    background: var(--pink-dark);
    box-shadow: 0 16px 34px rgba(255, 79, 139, 0.3);
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button--dark {
    background: var(--ink);
    box-shadow: 0 14px 32px rgba(37, 27, 43, 0.2);
}

.button--dark:hover {
    background: #3b2b43;
    box-shadow: 0 18px 38px rgba(37, 27, 43, 0.26);
}

.button--small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.88rem;
}

.button--block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    position: absolute;
}

.text-link span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 180ms ease, background 180ms ease;
}

.text-link:hover span {
    background: var(--yellow);
    transform: translateY(2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.has-open-nav {
    border-color: var(--line);
    background: rgba(255, 253, 249, 0.89);
    box-shadow: 0 8px 30px rgba(37, 27, 43, 0.06);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(78, 43, 89, 0.14);
}

.brand__words {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__words strong {
    font-family: var(--font-display);
    font-size: 1.12rem;
    letter-spacing: -0.04em;
}

.brand__words small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav > a:not(.button) {
    position: relative;
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    border-radius: 3px;
    background: var(--pink);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    min-width: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
}

.menu-toggle__icon {
    display: grid;
    width: 28px;
    gap: 6px;
}

.menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 58px) 0 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 45%),
        var(--cream);
}

.hero::after {
    position: absolute;
    top: 18%;
    left: -70px;
    width: 180px;
    height: 180px;
    border: 34px solid rgba(255, 79, 139, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero__orb--one {
    top: -115px;
    right: 8%;
    width: 270px;
    height: 270px;
    background: rgba(217, 195, 255, 0.34);
    filter: blur(8px);
}

.hero__orb--two {
    right: -100px;
    bottom: 4%;
    width: 300px;
    height: 300px;
    background: rgba(255, 213, 103, 0.5);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    grid-template-rows: auto auto;
    column-gap: clamp(40px, 5vw, 72px);
    align-items: start;
}

.hero__intro {
    grid-column: 1;
    grid-row: 1;
}

.hero__details {
    grid-column: 1;
    grid-row: 2;
    padding-bottom: 74px;
}

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(3.6rem, 7.1vw, 7rem);
    line-height: 0.88;
}

.hero h1 em {
    display: block;
    margin-top: 0.08em;
    color: var(--pink-dark);
    font-size: 0.92em;
    line-height: 0.91;
}

.hero__lead {
    max-width: 650px;
    margin: 34px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero__facts li {
    display: inline-flex;
    min-width: 0;
    min-height: 0;
    flex: 0 1 auto;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(37, 27, 43, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    white-space: nowrap;
}

.hero__facts .hero__fact--price {
    background: rgba(255, 255, 255, 0.38);
}

.hero__facts strong,
.hero__facts span {
    display: block;
}

.hero__facts strong {
    font-size: 0.8rem;
    font-weight: 750;
}

.hero__facts span {
    margin-top: 0;
    color: var(--muted);
    font-size: 0.64rem;
}

.hero__fact-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero__fact-price small {
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 600;
}

.hero__fact-price s {
    color: var(--muted);
    font-size: 0.6rem;
}

.hero__facts .hero__fact--price strong {
    font-size: 0.86rem;
    font-weight: 750;
    letter-spacing: -0.03em;
}

.hero__visual {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 580px;
    align-self: center;
    justify-self: end;
    padding-bottom: 70px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 27, 43, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.video-card--hero {
    transform: rotate(1.5deg);
}

.video-card__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.video-card__bar span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 5px rgba(255, 79, 139, 0.12);
}

.video-frame {
    position: relative;
    overflow: hidden;
    background: var(--lilac);
}

.video-frame--hero {
    aspect-ratio: 4 / 5;
}

.video-frame video,
.bot-flow__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-control {
    position: absolute;
    right: 16px;
    bottom: 16px;
    min-width: 76px;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(37, 27, 43, 0.74);
    color: #fff;
    cursor: pointer;
    font-size: 0.74rem;
    font-weight: 800;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.floating-print {
    position: absolute;
    z-index: 3;
    width: 160px;
    padding: 10px 10px 17px;
    background: #fff;
    box-shadow: var(--shadow-paper);
    transform: rotate(-9deg);
}

.floating-print--grid {
    bottom: 16px;
    left: -50px;
}

.floating-print__shots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.floating-print__shots i {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--pink), var(--lilac));
}

.floating-print__shots i:nth-child(2) { background: linear-gradient(135deg, var(--yellow), var(--coral)); }
.floating-print__shots i:nth-child(3) { background: linear-gradient(135deg, var(--mint), var(--blue)); }
.floating-print__shots i:nth-child(4) { background: linear-gradient(135deg, var(--violet), var(--pink)); }

.floating-print > span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.floating-sticker {
    position: absolute;
    z-index: 4;
    top: 12%;
    right: -54px;
    display: grid;
    width: 118px;
    height: 118px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 7px 8px 0 var(--ink);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
}

.ticker {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--line);
}

.ticker__track {
    display: flex;
    width: max-content;
    min-height: 70px;
    align-items: center;
    gap: 26px;
    animation: ticker-move 28s linear infinite;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ticker__track i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pink);
}

@keyframes ticker-move {
    from { transform: translateX(0); }
    to { transform: translateX(-35%); }
}

/* Compact sections */
.section--compact {
    padding: 96px 0;
}

.section--compact .section-heading {
    margin-bottom: 38px;
}

.section--compact h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.7rem);
}

.section--process {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 79, 139, 0.12), transparent 22rem),
        linear-gradient(135deg, #f2eaff, #fff4f0 78%);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition: box-shadow 220ms ease;
}

.process-list li:hover {
    box-shadow: var(--shadow-sm);
}

.process-list__number {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.92);
    box-shadow: 0 7px 18px rgba(37, 27, 43, 0.12);
    color: var(--pink-dark);
    font-size: 0.62rem;
    font-weight: 900;
}

.process-list__photo {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--cream-strong);
}

.process-list__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.process-list li:hover .process-list__photo img {
    transform: scale(1.025);
}

.process-list__copy {
    padding: 17px 18px 20px;
}

.process-list h3 {
    margin: 0;
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.05;
}

.process-list p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Included */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.included-card {
    display: grid;
    min-height: 132px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--cream);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

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

.included-card--coral { background: #ffd0c8; }
.included-card--lilac { background: var(--lilac); }
.included-card--yellow { background: var(--yellow); }
.included-card--mint { background: var(--mint); }
.included-card--blue { background: var(--blue); }

.included-card--link {
    color: inherit;
    text-decoration: none;
}

.included-card__mark {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(37, 27, 43, 0.2);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.included-card__mark--price {
    font-size: 0.72rem;
    letter-spacing: -0.03em;
}

.included-card h3 {
    margin: 0 0 5px;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
    line-height: 1.08;
}

.included-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.8rem;
    line-height: 1.4;
}

.included-card__link-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--pink-dark);
    font-size: 0.7rem;
    font-weight: 900;
}

.included-card__link-label i {
    font-style: normal;
    transition: transform 180ms ease;
}

.included-card--link:hover .included-card__link-label i {
    transform: translateX(3px);
}

/* Formats */
.formats-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.format-card {
    display: grid;
    min-height: 610px;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--white-line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
}

.format-card--accent {
    background: rgba(255, 79, 139, 0.14);
}

.format-card__copy {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.pill {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid var(--white-line);
    border-radius: 999px;
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.format-card h3 {
    margin: 18px 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1;
}

.format-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
}

.print-sheet {
    align-self: end;
    width: min(86%, 440px);
    margin: 54px auto 0;
    padding: 16px 16px 32px;
    background: #fff;
    box-shadow: var(--shadow-paper);
    color: var(--ink);
    transform: rotate(-2deg);
}

.print-sheet--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.print-sheet .shot {
    aspect-ratio: 4 / 3;
}

.shot--one { background: linear-gradient(135deg, #ff8bb1, #ffda78) !important; }
.shot--two { background: linear-gradient(135deg, #a6e5d0, #91c7ff) !important; }
.shot--three { background: linear-gradient(135deg, #b99bf8, #ff79a7) !important; }
.shot--four { background: linear-gradient(135deg, #ff8b77, #e6caff) !important; }

.print-sheet > span {
    grid-column: 1 / -1;
    margin-top: 8px;
    font-size: 0.57rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-align: center;
}

.strip-sheet {
    display: flex;
    align-self: end;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    transform: rotate(3deg);
}

.photo-strip {
    display: grid;
    width: 124px;
    gap: 7px;
    padding: 11px 11px 20px;
    background: #fff;
    box-shadow: var(--shadow-paper);
}

.photo-strip:last-child {
    transform: translateY(18px);
}

.photo-strip i {
    display: block;
    aspect-ratio: 4 / 3;
}

.photo-strip span {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.formats-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 22px;
    padding: 24px 28px;
    border: 1px solid var(--white-line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.formats-cta > div {
    max-width: 720px;
}

.formats-cta__label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.formats-cta h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.05;
}

.formats-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
}

.formats-cta .button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.formats-cta .button span {
    margin-left: 7px;
}

/* Bot print */
.section--bot {
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 15%, rgba(255, 79, 139, 0.2), transparent 22rem),
        linear-gradient(135deg, #f6edff, #fff7ec 62%);
}

.bot-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(360px, 3fr);
    gap: clamp(48px, 6vw, 90px);
    align-items: center;
}

.bot-flow {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
}

.bot-flow__card {
    width: 100%;
    max-width: 430px;
    min-width: 0;
    justify-self: center;
    margin: 0;
    transform: none;
    transition: transform 220ms ease;
}

.bot-flow__card:hover {
    transform: translateY(-3px);
}

.bot-flow__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 2px solid var(--ink);
    border-radius: 26px;
    background: var(--paper);
    box-shadow: 8px 10px 0 rgba(37, 27, 43, 0.96), var(--shadow-md);
}

.bot-flow__media video,
.bot-flow__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-flow__card figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--ink-soft);
}

.bot-flow__card figcaption span {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    color: var(--pink-dark);
    font-size: 0.58rem;
    font-weight: 900;
}

.bot-flow__card figcaption strong {
    font-size: 0.78rem;
}

.bot-flow__arrow {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 12px;
    padding: 2px 0 4px;
    place-items: center;
}

.bot-flow__arrow span {
    color: var(--pink-dark);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    transform: none;
}

.bot-flow__arrow i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 4px 5px 0 var(--pink);
    color: #fff;
    font-size: 1.35rem;
    font-style: normal;
    line-height: 1;
    transform: rotate(90deg);
}

.video-control--bot {
    right: 12px;
    bottom: 12px;
}

.bot-flow__media.video-unavailable::after {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(37, 27, 43, 0.78);
    color: #fff;
    content: "Схема";
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bot-flow__media video {
    overflow: hidden;
    background: var(--cream);
}

.bot-copy h2 {
    max-width: 760px;
}

.bot-copy h2 em {
    color: var(--pink-dark);
}

.bot-copy__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.bot-steps {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.bot-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.bot-steps li:first-child {
    border-top: 1px solid var(--line);
}

.bot-steps span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
}

.bot-steps p {
    margin-bottom: 0;
}

.messenger-row {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.messenger-row span {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 850;
}

.fine-print {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

/* Pricing */
.section--pricing {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 100%, rgba(255, 79, 139, 0.23), transparent 26rem),
        var(--yellow);
}

.section--pricing::before {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 330px;
    height: 330px;
    border: 60px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    content: "";
}

.pricing-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.pricing-copy > p:not(.eyebrow) {
    max-width: 600px;
    margin: 26px 0 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.price-formula {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 46px;
}

.price-formula > div {
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-formula strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
}

.price-formula small {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.price-formula__plus {
    font-family: Georgia, serif;
    font-size: 2.8rem;
}

.price-formula__old {
    margin-bottom: 5px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    text-decoration: line-through;
}

.discount-banner {
    display: flex;
    max-width: 560px;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 13px 16px;
    border: 1px solid rgba(37, 27, 43, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.45);
}

.discount-banner span {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discount-banner p {
    margin: 0 !important;
    color: var(--ink) !important;
    font-size: 0.84rem !important;
    font-weight: 750;
}

.calculator {
    padding: 34px;
    border: 1px solid rgba(37, 27, 43, 0.13);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-md);
    transform: rotate(1deg);
}

.calculator__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.calculator__top span {
    font-size: 0.8rem;
    font-weight: 850;
}

.calculator__top p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.74rem;
}

.hours-control {
    display: grid;
    grid-template-columns: 42px minmax(90px, auto) 42px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.hours-control button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 160ms ease;
}

.hours-control button:hover:not(:disabled) {
    background: var(--cream-strong);
}

.hours-control button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.hours-control output {
    font-size: 0.86rem;
    font-weight: 850;
    text-align: center;
}

.calculator__total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 34px 0 8px;
}

.calculator__total > span {
    padding-bottom: 7px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
}

.calculator__total > div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.calculator__total s {
    color: var(--muted);
    font-size: 0.86rem;
}

.calculator__total strong {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.calculator__breakdown {
    margin: 6px 0 24px;
    color: var(--muted);
    font-size: 0.76rem;
    text-align: right;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.check-list li::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 13px;
    height: 8px;
    border-bottom: 2px solid var(--pink-dark);
    border-left: 2px solid var(--pink-dark);
    content: "";
    transform: rotate(-45deg);
}

.check-list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.calculator__call {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 28px;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.7rem;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease;
}

.calculator__call:hover {
    border-color: rgba(37, 27, 43, 0.26);
    background: var(--cream);
}

.calculator__call span {
    color: var(--muted);
}

.calculator__call strong {
    overflow-wrap: anywhere;
    font-size: 0.78rem;
    text-align: right;
}

.calculator__call i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    font-style: normal;
}

.calculator__note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
    text-align: center;
}

.pricing-special {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-top: 48px;
    padding: 24px 28px;
    border: 1px solid rgba(37, 27, 43, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: var(--shadow-sm);
}

.pricing-special > div {
    max-width: 760px;
}

.pricing-special strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
}

.pricing-special p {
    margin: 5px 0 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.pricing-special a {
    display: inline-flex;
    min-height: 46px;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    padding: 11px 17px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.pricing-special a:hover {
    background: #3b2b43;
    transform: translateY(-2px);
}

/* Gallery */
.section--gallery {
    background:
        radial-gradient(circle at 88% 10%, rgba(217, 195, 255, 0.52), transparent 26rem),
        var(--paper);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 14px;
}

.gallery-slot {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.gallery-slot > div {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
}

.gallery-slot > div::before,
.gallery-slot > div::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.gallery-slot > div::before {
    top: 13%;
    right: 10%;
    width: 42%;
    aspect-ratio: 1;
    border: 2px solid rgba(37, 27, 43, 0.22);
    border-radius: 50%;
}

.gallery-slot > div::after {
    top: 22%;
    right: 21%;
    width: 21%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.52);
    clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.gallery-slot span,
.gallery-slot strong,
.gallery-slot small {
    position: relative;
    z-index: 2;
}

.gallery-slot span {
    position: absolute;
    top: 20px;
    left: 22px;
    font-size: 0.7rem;
    font-weight: 900;
}

.gallery-slot strong {
    max-width: 250px;
    font-size: clamp(1.15rem, 2.4vw, 2rem);
    line-height: 1;
}

.gallery-slot small {
    margin-top: 8px;
    color: rgba(37, 27, 43, 0.6);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.gallery-slot--booth {
    grid-column: span 7;
    grid-row: span 4;
}

.gallery-slot--booth > div { background: linear-gradient(135deg, #ffd1df, #f7b9cd); }

.gallery-slot--guests {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-slot--guests > div { background: linear-gradient(135deg, var(--lilac), #cbb0ff); }

.gallery-slot--strips {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-slot--strips > div { background: linear-gradient(135deg, var(--yellow), #ffe59d); }

.gallery-slot--wedding {
    grid-column: span 5;
    grid-row: span 3;
}

.gallery-slot--wedding > div { background: linear-gradient(135deg, #f7e7d8, #fff); }

.gallery-slot--screen {
    grid-column: span 7;
    grid-row: span 3;
}

.gallery-slot--screen > div { background: linear-gradient(135deg, var(--mint), #b8e6ff); }

/* FAQ */
.section--faq {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    gap: clamp(60px, 10vw, 150px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.faq-intro h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.faq-intro > p:not(.eyebrow) {
    margin: 28px 0 22px;
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 2px;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 800;
    list-style: none;
}

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

.faq-list summary span {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
    transform: translate(-50%, -50%);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
    background: var(--yellow);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
    max-width: 680px;
    margin: -2px 50px 24px 2px;
    color: var(--muted);
}

/* Booking */
.booking {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 79, 139, 0.26), transparent 28rem),
        radial-gradient(circle at 86% 90%, rgba(134, 88, 232, 0.32), transparent 32rem),
        var(--ink);
    color: #fff;
}

.booking__orb {
    position: absolute;
    top: -100px;
    right: 9%;
    width: 230px;
    height: 230px;
    border: 48px solid rgba(255, 213, 103, 0.32);
    border-radius: 50%;
}

.booking-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 0.65fr);
    gap: clamp(60px, 10vw, 140px);
    align-items: center;
}

.booking .eyebrow {
    color: var(--yellow);
}

.booking-copy h2 {
    font-size: clamp(3rem, 6vw, 6rem);
}

.booking-copy h2 em {
    color: var(--pink);
}

.booking-copy > p:not(.eyebrow) {
    max-width: 640px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
}

.contact-card {
    width: 100%;
    max-width: 600px;
    justify-self: end;
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-option {
    position: relative;
    display: flex;
    min-height: 154px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(34, 158, 217, 0.24), rgba(255, 255, 255, 0.07) 70%);
    color: #fff;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-option:hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.contact-option--phone {
    background:
        linear-gradient(145deg, rgba(255, 213, 103, 0.3), rgba(255, 255, 255, 0.07) 72%);
}

.contact-option--vk {
    background:
        linear-gradient(145deg, rgba(39, 135, 245, 0.28), rgba(255, 255, 255, 0.07) 70%);
}

.contact-option--max {
    background:
        linear-gradient(145deg, rgba(109, 92, 255, 0.3), rgba(255, 255, 255, 0.07) 70%);
}

.contact-option__mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 17px;
    background: #229ed9;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.contact-option--vk .contact-option__mark {
    background: #2787f5;
}

.contact-option--phone .contact-option__mark {
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.6rem;
}

.contact-option--max .contact-option__mark {
    background: linear-gradient(135deg, #7f70ff, #5648e8);
    font-size: 0.58rem;
}

.contact-option__copy strong,
.contact-option__copy small {
    display: block;
}

.contact-option__copy strong {
    overflow-wrap: anywhere;
    font-size: 1.06rem;
    font-weight: 850;
    line-height: 1.15;
}

.contact-option__copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

.contact-option__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    font-size: 0.9rem;
}

.contact-option.is-missing {
    cursor: help;
}

.contact-status {
    grid-column: 1 / -1;
    min-height: 1.3em;
    margin: 14px 2px 0;
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 750;
}

.contact-status:empty {
    display: none;
}

/* Footer */
.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px 30px;
    align-items: center;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.site-footer__copyright {
    text-align: right;
}

.site-footer__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}

.site-footer__contacts a {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration-color: rgba(37, 27, 43, 0.24);
    text-underline-offset: 4px;
}

.site-footer__contacts a:hover {
    color: var(--pink-dark);
}

.site-footer__cities {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.brand--footer .brand__mark {
    width: 40px;
    height: 40px;
}

.mobile-cta {
    display: none;
}

/* Progressive animation */
.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Tablet */
@media (max-width: 1050px) {
    :root {
        --header-height: 74px;
    }

    .site-nav {
        gap: 16px;
    }

    .site-nav > a:not(.button) {
        font-size: 0.8rem;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
        column-gap: 32px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 7.5vw, 5.8rem);
    }

    .floating-sticker {
        right: -20px;
    }

    .process-list {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .included-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid,
    .booking-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
        gap: 48px;
    }
}

/* Mobile navigation and single-column sections */
@media (max-width: 820px) {
    .shell {
        width: min(100% - 34px, var(--shell));
    }

    .section {
        padding: 88px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100dvh - var(--header-height));
        gap: 0;
        overflow-y: auto;
        padding: 22px 18px 30px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: rgba(255, 253, 249, 0.98);
        box-shadow: 0 25px 40px rgba(37, 27, 43, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .no-js .site-nav,
    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .no-js .site-header {
        position: relative;
        height: auto;
        border-color: var(--line);
        background: var(--paper);
    }

    .no-js .site-header__inner {
        min-height: var(--header-height);
        height: auto;
        flex-wrap: wrap;
        padding-block: 12px;
    }

    .no-js .menu-toggle,
    .no-js .mobile-cta {
        display: none;
    }

    .no-js .site-nav {
        position: static;
        width: 100%;
        max-height: none;
        margin-top: 10px;
        padding: 0 0 12px;
        border: 0;
        box-shadow: none;
    }

    .no-js .hero {
        padding-top: 52px;
    }

    .site-nav > a:not(.button) {
        padding: 15px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .site-nav .button {
        margin-top: 20px;
    }

    .section-heading--split,
    .bot-grid,
    .pricing-grid,
    .faq-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .section-heading--split {
        gap: 26px;
    }

    .section-heading--split > p {
        max-width: 620px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 44px);
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.68fr);
        grid-template-rows: auto auto;
        column-gap: 28px;
    }

    .hero__details {
        padding-bottom: 12px;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 3.8rem);
    }

    .hero__visual {
        width: 100%;
        max-width: 330px;
        align-self: start;
        justify-self: end;
        margin-top: 0;
        padding-bottom: 48px;
    }

    .hero__lead {
        font-size: 0.98rem;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 26px;
    }

    .floating-print--grid {
        left: -36px;
    }

    .ticker {
        margin-top: 24px;
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .format-card {
        min-height: 570px;
    }

    .formats-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .bot-flow {
        order: 2;
        margin-top: 18px;
    }

    .bot-copy {
        order: 1;
    }

    .pricing-grid,
    .booking-grid {
        gap: 54px;
    }

    .contact-card {
        justify-self: start;
    }

    .calculator {
        max-width: 600px;
        transform: none;
    }

    .faq-intro {
        position: static;
    }

    .gallery-grid {
        grid-auto-rows: 100px;
    }

    .gallery-slot--booth,
    .gallery-slot--screen {
        grid-column: span 7;
    }

    .gallery-slot--guests,
    .gallery-slot--strips,
    .gallery-slot--wedding {
        grid-column: span 5;
    }

    .site-footer__grid {
        grid-template-columns: 1fr auto;
    }

    .site-footer__contacts {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .site-footer__cities {
        display: none;
    }

    .mobile-cta {
        position: fixed;
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        z-index: 90;
        display: inline-flex;
        max-width: calc(100% - 28px);
        min-height: 50px;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 11px 16px 11px 19px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        background: rgba(37, 27, 43, 0.94);
        box-shadow: 0 16px 40px rgba(37, 27, 43, 0.3);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 850;
        line-height: 1.1;
        text-decoration: none;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    .mobile-cta span {
        font-size: 1rem;
    }

    .js .mobile-cta {
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 28px));
        transition: opacity 180ms ease, transform 220ms ease;
    }

    .js .mobile-cta.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

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

@media (max-width: 580px) {
    .shell {
        width: min(100% - 28px, var(--shell));
    }

    .section {
        padding: 74px 0;
    }

    .section--compact {
        padding: 62px 0;
    }

    h2 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .section--compact h2 {
        font-size: clamp(2.25rem, 9.8vw, 2.8rem);
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section--compact .section-heading {
        margin-bottom: 28px;
    }

    .section--compact .section-heading--split {
        gap: 18px;
    }

    .section--compact .section-heading--split > p {
        font-size: 0.92rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + 24px);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .hero__intro {
        grid-column: 1;
        grid-row: 1;
    }

    .hero .eyebrow {
        font-size: 0.64rem;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 11.5vw, 3rem);
    }

    .hero__details {
        grid-column: 1;
        grid-row: 3;
        display: block;
        padding-bottom: 12px;
    }

    .hero__lead {
        margin: 0;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(112px, 0.75fr);
        gap: 10px;
        margin-top: 24px;
    }

    .hero__actions .button {
        min-height: 56px;
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .hero__facts {
        gap: 7px;
        margin-top: 26px;
    }

    .hero__facts li {
        min-height: 0;
        padding: 7px 10px;
    }

    .hero__facts strong {
        font-size: 0.8rem;
    }

    .hero__facts span {
        font-size: 0.62rem;
        line-height: 1.2;
    }

    .hero__fact-price s {
        font-size: 0.58rem;
    }

    .hero__visual {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        max-width: none;
        justify-self: stretch;
        margin-top: 0;
        padding-bottom: 32px;
    }

    .video-card--hero {
        border-radius: var(--radius-md);
        transform: rotate(0.5deg);
    }

    .video-frame--hero {
        aspect-ratio: 16 / 10;
    }

    .video-card__bar {
        justify-content: space-between;
        gap: 8px;
        padding: 10px 12px;
        font-size: 0.55rem;
        letter-spacing: 0.045em;
    }

    .video-card__bar span:first-child {
        gap: 6px;
        font-size: inherit;
    }

    .video-card__bar span:first-child::after {
        content: none;
    }

    .video-card__bar span:last-child {
        display: block;
        text-align: right;
    }

    .status-dot {
        width: 6px;
        height: 6px;
        box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.12);
    }

    .floating-print {
        width: 94px;
        padding: 7px 7px 11px;
    }

    .floating-print--grid {
        bottom: 4px;
        left: -5px;
    }

    .floating-print > span {
        margin-top: 6px;
        font-size: 0.42rem;
    }

    .floating-sticker {
        top: 7%;
        right: -8px;
        width: 70px;
        height: 70px;
        box-shadow: 3px 4px 0 var(--ink);
        font-size: 0.48rem;
    }

    .bot-grid {
        gap: 42px;
    }

    .bot-flow {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 4px;
    }

    .bot-flow__card {
        width: 100%;
        max-width: 430px;
        justify-self: center;
        transform: none;
    }

    .bot-flow__media {
        border-radius: 22px;
        box-shadow: 6px 7px 0 rgba(37, 27, 43, 0.96), var(--shadow-sm);
    }

    .bot-flow__card figcaption {
        margin-top: 12px;
    }

    .bot-flow__arrow {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 12px;
        padding: 2px 0 4px;
    }

    .bot-flow__arrow span {
        transform: none;
    }

    .bot-flow__arrow i {
        width: 42px;
        height: 42px;
        transform: rotate(90deg);
    }

    .bot-copy__lead {
        margin-top: 22px;
        font-size: 1rem;
    }

    .bot-steps {
        margin-top: 24px;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .process-list li {
        min-height: 0;
    }

    .process-list__number {
        top: 8px;
        left: 8px;
        width: 30px;
        height: 30px;
        font-size: 0.54rem;
    }

    .process-list__copy {
        padding: 12px 12px 14px;
    }

    .process-list h3 {
        font-size: 1rem;
    }

    .process-list p {
        margin-top: 5px;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .included-card {
        min-height: 108px;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .included-card__mark {
        width: 48px;
        height: 48px;
    }

    .format-card {
        min-height: 530px;
        padding: 25px;
    }

    .formats-cta {
        gap: 18px;
        padding: 20px;
    }

    .formats-cta .button {
        width: 100%;
    }

    .print-sheet {
        width: 92%;
    }

    .photo-strip {
        width: 105px;
    }

    .price-formula {
        gap: 12px;
    }

    .price-formula strong {
        font-size: 1.9rem;
    }

    .calculator {
        padding: 24px 18px;
    }

    .pricing-special {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        margin-top: 32px;
        padding: 20px;
    }

    .pricing-special a {
        justify-content: space-between;
    }

    .calculator__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .hours-control {
        width: 100%;
        grid-template-columns: 46px 1fr 46px;
    }

    .calculator__total {
        align-items: flex-start;
        flex-direction: column;
    }

    .calculator__total > div {
        width: 100%;
        justify-content: flex-end;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .gallery-slot--booth,
    .gallery-slot--guests,
    .gallery-slot--strips,
    .gallery-slot--wedding,
    .gallery-slot--screen {
        grid-column: span 1;
        grid-row: span 2;
    }

    .gallery-slot--booth,
    .gallery-slot--screen {
        grid-column: 1 / -1;
        grid-row: span 2;
    }

    .gallery-slot > div {
        padding: 18px;
    }

    .gallery-slot span {
        top: 16px;
        left: 17px;
    }

    .faq-list summary {
        min-height: 72px;
        font-size: 0.94rem;
    }

    .booking-grid {
        gap: 40px;
    }

    .booking-copy h2 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .contact-card {
        padding: 0;
    }

    .contact-list {
        gap: 10px;
    }

    .contact-option {
        min-height: 140px;
        padding: 18px;
        border-radius: var(--radius-sm);
    }

    .contact-option__mark {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 15px;
    }

    .contact-option__arrow {
        top: 16px;
        right: 16px;
        width: 34px;
        height: 34px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand--footer {
        justify-self: center;
    }

    .site-footer__contacts {
        justify-content: center;
    }

    .site-footer__copyright {
        text-align: center;
    }
}

@media (max-width: 430px) {
    .contact-list {
        grid-template-columns: 1fr;
    }

    .contact-option {
        display: grid;
        min-height: 104px;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        justify-content: initial;
    }

    .contact-option__mark {
        margin-bottom: 0;
    }

    .contact-option__arrow {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
