
:root {
    --coral: #E94B1F;
    --coral-deep: #C73A12;
    --cream: #F5EAD2;
    --cream-deep: #ECDCB6;
    --gold: #F2A93B;
    --sky: #6BBFE0;
    --teal: #0F3D4D;
    --teal-deep: #082730;
    --sand: #D9C39A;
    --ink: #1A1410;
    --paper: #FBF4E2;

    --display: "Bungee", "Russo One", Impact, sans-serif;
    --hand: "Caveat", cursive;
    --body: "Onest", "Helvetica Neue", system-ui, sans-serif;

    --container: 1320px;
    --gutter: clamp(16px, 5vw, 56px);
    --sec-pad-y: clamp(56px, 8vw, 100px);
    --nav-height: 70px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
html { scroll-padding-top: var(--nav-height); }
body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,1) 0.5px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,1) 0.5px, transparent 1px);
    background-size: 7px 7px, 11px 11px;
}

.section {
    padding: var(--sec-pad-y) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.section--light { color: var(--cream); }

.section--full {
    padding: var(--sec-pad-y) var(--gutter);
}
.section__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.sec-head { padding: 0; max-width: 900px; margin: 0 0 clamp(28px, 5vw, 56px); }
.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head--center .kicker { justify-content: center; }
.sec-head__sub {
    font-size: 18px;
    color: rgba(26,20,16,0.7);
    margin-top: 14px;
    max-width: 640px;
    line-height: 1.5;
}
.section--light .sec-head__sub { color: rgba(245,234,210,0.7); }

.h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 12px;
    text-wrap: balance;
}
.h2 em {
    font-family: var(--hand);
    font-style: normal;
    font-weight: 700;
    color: var(--coral);
    font-size: 1.15em;
    letter-spacing: 0;
}
.h2--light { color: var(--cream); }
.h2--light em { color: var(--gold); }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--teal);
    margin-bottom: 18px;
}
.kicker--light { color: var(--gold); }
.kicker__num {
    display: inline-grid; place-items: center;
    width: 26px; height: 26px;
    background: var(--coral);
    color: var(--cream);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--display);
}

.lead { font-size: 19px; line-height: 1.55; color: var(--ink); }
.lead--light { color: rgba(245,234,210,0.85); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    transition:
        transform 0.15s ease,
        background 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease;
    white-space: nowrap;
    font-family: var(--body);
}
.btn--primary {
    background: var(--coral);
    color: var(--cream);
    box-shadow: 0 6px 0 var(--coral-deep), 0 12px 24px -8px rgba(231,75,31,0.4);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--coral-deep), 0 14px 28px -8px rgba(231,75,31,0.5);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--big { padding: 20px 32px; font-size: 17px; }

.marquee {
    overflow: hidden;
    background: var(--coral);
    color: var(--cream);
    padding: 22px 0;
    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
}
.marquee-track {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    width: max-content;
    animation: marq var(--dur, 55s) linear infinite;
    font-family: var(--display);
    font-size: clamp(18px, 3vw, 26px);
    text-transform: lowercase;
    white-space: nowrap;
}
.marquee-item { display: inline-flex; align-items: center; }
.marquee-sep {
    font-style: normal;
    color: var(--gold);
    margin-left: clamp(20px, 4vw, 40px);
}

@keyframes marq {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}

.quote-mark {
    font-family: var(--display);
    font-size: 80px;
    line-height: 0.6;
    color: var(--coral);
    margin-bottom: 4px;
}
.quote-mark--light { color: var(--gold); }


.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--gutter);
    gap: 16px;
    transition:
        background 0.25s ease,
        padding 0.25s ease,
        box-shadow 0.25s ease;
}
.nav--scrolled {
    background: var(--paper);
    padding: 10px var(--gutter);
    box-shadow: 0 1px 0 rgba(26,20,16,0.08);
}

.nav__logo {
    display: flex; align-items: baseline;
    gap: 4px;
    font-family: var(--display);
    color: var(--coral);
    line-height: 1;
    flex-shrink: 0;
}
.nav__logo-mark {
    display: inline-grid; place-items: center;
    width: 38px; height: 38px;
    background: var(--coral);
    color: var(--cream);
    border-radius: 8px;
    font-size: 24px;
    margin-right: 6px;
    transform: rotate(-4deg);
}
.nav__logo-text { font-size: 22px; }
.nav__logo-sub {
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-left: 12px;
    align-self: center;
}

.nav__links {
    display: flex; gap: 26px;
    font-weight: 500;
    font-size: 15px;
}
.nav__links a { position: relative; transition: color 0.15s; }
.nav__links a:hover { color: var(--coral); }

.nav__cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}
.nav__cta span { transition: transform 0.2s; }
.nav__cta:hover span { transform: translateX(4px); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
    z-index: 102;
}
.nav__burger span {
    display: block; width: 26px; height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(8px)  rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--coral);
    color: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 101;
    font-family: var(--display);
    font-size: 36px;
    text-transform: lowercase;
    letter-spacing: -0.01em;
}
.nav__mobile a { color: var(--cream); }
.nav__mobile a:hover { color: var(--ink); }
.nav__cta--mobile {
    background: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    padding: 18px 30px;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .nav__links     { display: none; }
    .nav__logo-sub  { display: none; }
    .nav__cta       { display: none; }
    .nav__burger    { display: flex; }
    .nav--open .nav__mobile { display: flex; }
}


.foot {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(48px, 7vw, 70px) var(--gutter) 24px;
    position: relative;
    overflow: hidden;
}
.foot__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(245,234,210,0.15);
}
.foot__logo {
    display: flex; align-items: center; gap: 16px;
}
.foot__mark {
    display: grid; place-items: center;
    width: 60px; height: 60px;
    background: var(--coral);
    color: var(--cream);
    border-radius: 14px;
    font-family: var(--display);
    font-size: 40px;
    transform: rotate(-4deg);
}
.foot__name { font-family: var(--display); font-size: 22px; }
.foot__sub {
    font-size: 11px;
    color: rgba(245,234,210,0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}
.foot__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.foot__cols h5 {
    margin: 0 0 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.foot__cols a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: rgba(245,234,210,0.8);
    transition: color 0.15s;
}
.foot__cols a:hover { color: var(--coral); }

.foot__big {
    font-family: var(--display);
    font-size: clamp(56px, 16vw, 240px);
    line-height: 0.85;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 2px var(--coral);
    margin: clamp(24px, 5vw, 40px) 0 clamp(18px, 3vw, 26px);
    letter-spacing: -0.02em;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}

.foot__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(245,234,210,0.5);
    flex-wrap: wrap;
    gap: 12px;
}
.foot__legal a { color: var(--gold); }

@media (max-width: 800px) {
    .foot__top  { grid-template-columns: 1fr; gap: 36px; }
    .foot__cols { grid-template-columns: 1fr 1fr; }
}


.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(90px, 12vw, 130px) var(--gutter) clamp(70px, 8vw, 90px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
        180deg,
        #FFDFB0 0%,
        #FBC785 35%,
        #F19560 60%,
        #E96A3A 80%,
        #C04A1A 100%
    );
}

.hero__sky { display: none; }

.hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.4;
    filter: blur(2px);
    transform: scale(1.2);
}
.hero__media-shade {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,223,176,0.25) 0%,
        rgba(231,75,31,0.35)   100%
    );
    pointer-events: none;
}

.hero__layout {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.hero__content {
    position: relative;
    max-width: 880px;
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(26,20,16,0.85);
    color: var(--cream);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero__eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(242,169,59,0.3);
    animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse { 50% { box-shadow: 0 0 0 10px rgba(242,169,59,0); } }

.hero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(56px, 11vw, 160px);
    line-height: 0.86;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    color: var(--ink);
    text-wrap: balance;
}
.hero__title .line { display: block; }
.hero__title .line-2 { color: var(--cream); margin-left: 0.5em; }
.hero__title .line-3 { color: var(--ink); }
.hero__title em {
    font-family: var(--hand);
    font-style: normal;
    color: var(--coral);
    font-size: 1.2em;
    display: inline-block;
    transform: rotate(-3deg);
    margin-left: 0.05em;
}

.hero__sub {
    font-size: 20px;
    color: rgba(26,20,16,0.92);
    max-width: 560px;
    margin: 0 0 36px;
    font-weight: 500;
    line-height: 1.5;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__flag {
    position: absolute;
    top: clamp(96px, 12vw, 130px);
    right: var(--gutter);
    z-index: 3;
    transform: rotate(8deg);
}
.flag {
    display: flex;
    gap: 4px;
    background: var(--cream);
    padding: 12px 18px;
    border-radius: 4px;
    font-family: var(--display);
    font-size: 32px;
    color: var(--coral);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
    position: relative;
    animation: flag-flutter 4s ease-in-out infinite;
}
.flag::before {
    content: "";
    position: absolute;
    left: -20px; top: 50%;
    width: 20px; height: 4px;
    background: var(--ink);
}
@keyframes flag-flutter {
    0%, 100% { transform: rotate(-1deg) skewY(-1deg); }
    50%      { transform: rotate( 2deg) skewY( 2deg); }
}
.flag span:nth-child(odd)  { color: var(--coral); }
.flag span:nth-child(even) { color: var(--ink); }

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: var(--gutter);
    display: flex; align-items: center; gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,20,16,0.6);
    z-index: 3;
}
.scroll-line {
    width: 60px; height: 1.5px;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: "";
    position: absolute; inset: 0;
    background: var(--cream);
    animation: hero-scroll-dot 2s ease-in-out infinite;
}
@keyframes hero-scroll-dot {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX( 100%); }
}

@media (max-width: 1100px) {
    .hero__flag {
        transform: rotate(4deg) scale(0.75);
        top: 80px;
        right: 0;
        transform-origin: top right;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: clamp(80px, 18vw, 100px) var(--gutter) 72px;
    }
    .hero__flag { display: none; }
    .hero__eyebrow { font-size: 11px; padding: 7px 13px; margin-bottom: 22px; }
    .hero__title { font-size: clamp(48px, 13vw, 96px); margin-bottom: 20px; }
    .hero__sub { font-size: 16px; margin-bottom: 28px; }
    .hero__actions .btn { font-size: 14px; padding: 12px 20px; }
    .hero__scroll {
        bottom: 22px;
        font-size: 10px;
        letter-spacing: 0.16em;
        gap: 10px;
    }
    .scroll-line { width: 44px; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 44px; }
    .hero__sub { font-size: 15px; }
    .hero__actions { gap: 10px; }
}

@media (max-height: 520px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .hero__title { font-size: clamp(40px, 7vw, 64px); margin-bottom: 14px; }
    .hero__eyebrow { margin-bottom: 16px; }
    .hero__sub { font-size: 14px; margin-bottom: 18px; max-width: 480px; }
    .hero__scroll { bottom: 14px; }
}


.strip { background: var(--ink); }


.pack__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pack {
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 0 var(--ink);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}
.pack:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 var(--ink);
}
.pack__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}
.pack__img img { width: 100%; height: 100%; object-fit: cover; }
.pack__num {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--display);
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 4px;
}
.pack__body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pack__t {
    font-family: var(--display);
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 10px;
    color: var(--ink);
    line-height: 1;
}
.pack__d {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(26,20,16,0.75);
    margin: 0 0 16px;
    flex: 1;
}
.pack__tag {
    display: inline-flex;
    align-self: flex-start;
    background: var(--gold);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pack__cta {
    margin-top: 48px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 22px;
    padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}
.pack__cta-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.pack__cta-price {
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
}
.pack__cta-price b {
    font-weight: 400;
    font-size: clamp(40px, 7vw, 56px);
    color: var(--gold);
}
.pack__cta-fine {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(245,234,210,0.6);
    max-width: 520px;
}

@media (max-width: 1000px) {
    .pack__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .pack__grid { grid-template-columns: 1fr; }
    .pack__cta  { grid-template-columns: 1fr; }
}


.about {
    padding: var(--sec-pad-y) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.about__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about__photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: 0 12px 0 var(--ink);
    aspect-ratio: 4 / 5;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__sticker {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 14px 18px;
    transform: rotate(-1deg);
}
.about__sticker-name {
    font-family: var(--hand);
    font-size: 30px;
    color: var(--coral);
    line-height: 1;
}
.about__sticker-role {
    font-size: 12px;
    color: rgba(26,20,16,0.7);
    letter-spacing: 0.04em;
    margin-top: 4px;
}
.about__body p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(26,20,16,0.85);
}
.about__sigline {
    display: flex; align-items: center; gap: 16px;
    margin-top: 24px;
}
.sig {
    font-family: var(--hand);
    font-size: 28px;
    color: var(--coral);
}
.sig-line {
    flex: 1; height: 1.5px;
    background: var(--ink);
    opacity: 0.2;
}

@media (max-width: 1000px) {
    .about__grid { grid-template-columns: 1fr; gap: 36px; }
}


.wing {
    position: relative;
    background: var(--teal);
    color: var(--cream);
    padding: var(--sec-pad-y) var(--gutter);
    overflow: hidden;
}
.wing > .wing__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.wing__bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.55;
}
.wing__bg-shade {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,61,77,0.55) 0%,
        rgba(15,61,77,0.30) 45%,
        rgba(15,61,77,0.75) 100%
    );
}
.wing > *:not(.wing__bg) { position: relative; z-index: 1; }

.wing__head {
    max-width: var(--container);
    margin: 0 auto 60px;
}
.wing__head .h2 { max-width: 900px; }
.wing__lead {
    font-size: 19px;
    color: rgba(245,234,210,0.85);
    max-width: 680px;
    margin-top: 18px;
    line-height: 1.55;
}

.wing__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto 80px;
}
.wfact {
    background: rgba(245,234,210,0.06);
    border: 1.5px solid rgba(245,234,210,0.2);
    border-radius: 16px;
    padding: 24px 22px;
    transition: all 0.2s;
}
.wfact:hover {
    border-color: var(--gold);
    background: rgba(245,234,210,0.1);
    transform: translateY(-3px);
}
.wfact__t {
    font-family: var(--display);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}
.wfact__d {
    font-size: 14px;
    color: rgba(245,234,210,0.75);
    line-height: 1.5;
}

.wing__progression { max-width: var(--container); margin: 0 auto 60px; }
.prog__head { margin-bottom: 36px; max-width: 700px; }
.prog__h {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    color: var(--cream);
    margin: 8px 0 0;
}
.prog__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pstep {
    background: var(--cream);
    color: var(--ink);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: 0 8px 0 var(--ink);
}
.pstep__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}
.pstep__img img { width: 100%; height: 100%; object-fit: cover; }
.pstep__day {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--coral);
    color: var(--cream);
    font-family: var(--display);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: lowercase;
}
.pstep__t {
    font-family: var(--display);
    font-weight: 400;
    font-size: 26px;
    margin: 20px 22px 8px;
    line-height: 1;
}
.pstep__txt {
    margin: 0 22px 22px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(26,20,16,0.75);
}

.wing__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
    align-items: stretch;
}
.wing__price {
    background: var(--gold);
    color: var(--ink);
    border-radius: 22px;
    padding: 36px;
    border: 2px solid var(--ink);
    box-shadow: 0 10px 0 var(--ink);
    display: flex;
    flex-direction: column;
}
.wing__price > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26,20,16,0.6);
    margin-bottom: 8px;
}
.wing__price > b {
    font-family: var(--display);
    font-size: clamp(40px, 7vw, 56px);
    font-weight: 400;
    color: var(--coral);
    line-height: 1;
}
.wing__price > em {
    font-style: normal;
    font-size: 14px;
    color: rgba(26,20,16,0.75);
    margin-top: 8px;
    margin-bottom: 24px;
    display: block;
}
.wing__price .btn { align-self: flex-start; margin-top: auto; }

.wing__quote {
    background: rgba(245,234,210,0.05);
    border: 1.5px dashed rgba(245,234,210,0.3);
    border-radius: 22px;
    padding: 32px 36px;
    color: var(--cream);
}
.wing__quote p {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.25;
    margin: 0;
    text-wrap: balance;
    color: var(--cream);
}
.qcap {
    font-family: var(--hand);
    font-size: 22px;
    color: var(--gold);
    margin-top: 18px;
}

@media (max-width: 1000px) {
    .wing__facts  { grid-template-columns: 1fr 1fr; }
    .prog__steps  { grid-template-columns: 1fr; }
    .wing__bottom { grid-template-columns: 1fr; }
}


.day__rail {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
}
.day__item {
    display: grid;
    grid-template-columns: 110px 24px 1fr;
    align-items: center;
    gap: 28px;
    padding: 14px 0;
    position: relative;
}
.day__time {
    font-family: var(--display);
    font-size: 32px;
    color: var(--ink);
    line-height: 1;
    text-align: right;
}
.day__dot {
    width: 24px; height: 24px;
    background: var(--c);
    border: 3px solid var(--ink);
    border-radius: 50%;
    z-index: 2;
    position: relative;
    justify-self: center;
}
.day__card {
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 14px;
    box-shadow: 0 5px 0 var(--ink);
    padding: 22px 28px;
    transition: transform 0.2s;
    border-left: 6px solid var(--c);
}
.day__card:hover { transform: translateX(4px); }
.day__card h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    color: var(--c);
    line-height: 1;
}
.day__card p {
    margin: 0;
    font-size: 18px;
    color: rgba(26,20,16,0.82);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .day__item { grid-template-columns: 80px 20px 1fr; gap: 18px; }
    .day__time { font-size: 24px; }
    .day__card { padding: 18px 22px; }
    .day__card h3 { font-size: 24px; }
    .day__card p { font-size: 16px; }
}

@media (max-width: 560px) {
    .day__item { grid-template-columns: 60px 18px 1fr; gap: 12px; padding: 10px 0; }
    .day__time { font-size: 19px; }
    .day__card { padding: 14px 16px; border-left-width: 5px; }
    .day__card h3 { font-size: 21px; }
    .day__card p { font-size: 15px; line-height: 1.5; }
}


.stay {
    padding: var(--sec-pad-y) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
    background: var(--teal-deep);
    color: var(--cream);
    display: none;
}
.stay__head { max-width: 800px; margin: 0 0 50px; }
.stay__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stay__card {
    background: rgba(245,234,210,0.04);
    border: 1.5px solid rgba(245,234,210,0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
}
.stay__card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stay__card-photo { aspect-ratio: 4 / 3; }
.stay__card-ph {
    width: 100%; height: 100%;
    background:
        repeating-linear-gradient(45deg, rgba(245,234,210,0.05) 0 14px, transparent 14px 28px),
        linear-gradient(180deg, rgba(15,61,77,0.6), rgba(8,39,48,0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(245,234,210,0.5);
    font-family: var(--display);
    text-transform: lowercase;
    font-size: 16px;
}
.stay__card-ph em {
    font-family: var(--body);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.stay__card-body { padding: 18px 20px 20px; }
.stay__card-name {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1;
    margin-bottom: 4px;
}
.stay__card-who {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.stay__card-what {
    font-size: 13px;
    color: rgba(245,234,210,0.7);
    line-height: 1.4;
    margin-bottom: 14px;
    min-height: 44px;
}
.stay__card-price {
    font-family: var(--display);
    font-size: 13px;
    color: rgba(245,234,210,0.5);
}
.stay__card-price b { font-size: 26px; color: var(--gold); }

.stay__note {
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(245,234,210,0.06);
    border: 1px dashed rgba(245,234,210,0.3);
    border-radius: 14px;
    font-size: 14px;
    color: rgba(245,234,210,0.8);
    line-height: 1.55;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.stay__partner-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
}

@media (max-width: 1000px) {
    .stay__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .stay__grid { grid-template-columns: 1fr; }
}


.food__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
.food__hero {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: 0 10px 0 var(--ink);
    min-height: 480px;
}
.food__hero img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.food__hero-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--cream);
    border: 2px solid var(--ink);
    padding: 12px 18px;
    border-radius: 10px;
    font-family: var(--display);
    transform: rotate(-3deg);
}
.food__hero-badge div {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    font-family: var(--body); font-weight: 700;
    color: rgba(26,20,16,0.6);
}
.food__hero-badge b {
    display: block;
    font-size: 36px; line-height: 0.95;
    color: var(--coral);
    font-weight: 400;
    margin: 2px 0;
}
.food__hero-badge em {
    font-style: normal;
    font-size: 12px;
    color: var(--ink);
    font-family: var(--body);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.food__menu {
    background: var(--ink);
    color: var(--cream);
    border-radius: 22px;
    padding: clamp(22px, 4vw, 32px) clamp(22px, 4vw, 36px);
}
.food__menu-head {
    font-family: var(--hand);
    font-size: 28px;
    color: var(--gold);
    border-bottom: 1px dashed rgba(245,234,210,0.2);
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.food__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(245,234,210,0.15);
}
.food__row:last-of-type { border-bottom: 0; }
.food__row b {
    display: block;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.1;
}
.food__row span {
    display: block;
    font-size: 12px;
    color: rgba(245,234,210,0.6);
    margin-top: 2px;
}
.food__row em {
    font-family: var(--display);
    font-style: normal;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}
.food__menu-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed rgba(245,234,210,0.2);
    font-size: 12px;
    color: rgba(245,234,210,0.6);
    font-style: italic;
}

.food__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.ftile {
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 0 var(--ink);
    display: flex;
    flex-direction: column;
}
.ftile img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.ftile__cap {
    padding: 14px 18px;
    font-family: var(--hand);
    font-size: 22px;
    color: var(--coral-deep);
    text-align: center;
}
.ftile--quote {
    background: var(--coral);
    color: var(--cream);
    padding: 24px 28px;
    justify-content: center;
}
.ftile--quote p {
    font-family: var(--display);
    font-size: 20px;
    line-height: 1.15;
    margin: 0;
}
.ftile--quote .quote-mark { color: var(--cream); }
.ftile__sign {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--gold);
    margin-top: 14px;
}

@media (max-width: 1000px) {
    .food__grid  { grid-template-columns: 1fr; }
    .food__hero  { min-height: 360px; }
    .food__tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .food__hero  { min-height: 280px; }
    .food__tiles { grid-template-columns: 1fr; }
}


.evening {
    position: relative;
    padding: var(--sec-pad-y) var(--gutter);
    background: linear-gradient(180deg, #1A1410 0%, #0a0506 100%);
    color: var(--cream);
    overflow: hidden;
}
.evening__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(231,75,31,0.25), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(15,61,77,0.4), transparent 60%);
    pointer-events: none;
}
.evening > * { position: relative; z-index: 1; }
.evening__head { max-width: 800px; margin: 0 auto 50px; }

.evening__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 18px;
    max-width: var(--container);
    margin: 0 auto;
}
.ev {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(245,234,210,0.2);
}
.ev--big { grid-row: 1 / 3; }
.ev img { width: 100%; height: 100%; object-fit: cover; }
.ev__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 24px;
    gap: 6px;
}
.ev__time {
    font-family: var(--display);
    font-size: 13px;
    color: var(--gold);
    text-transform: lowercase;
}
.ev h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 28px;
    margin: 0;
    line-height: 1;
}
.ev--big h3 { font-size: 40px; }
.ev p {
    margin: 0;
    font-size: 14px; line-height: 1.5;
    color: rgba(245,234,210,0.8);
    max-width: 360px;
}

@media (max-width: 1000px) {
    .evening__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .ev--big { grid-row: auto; grid-column: 1 / 3; height: 320px; }
    .ev      { height: 260px; }
}
@media (max-width: 600px) {
    .evening__grid { grid-template-columns: 1fr; }
    .ev--big { grid-column: auto; }
}


.well__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 18px;
}
.well {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: 0 6px 0 var(--ink);
}
.well--tall { grid-row: 1 / 3; }
.well--wide { grid-column: span 2; }
.well img { width: 100%; height: 100%; object-fit: cover; }
.well__cap {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15,61,77,0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px;
    color: var(--cream);
}
.well__cap h3 {
    margin: 0 0 4px;
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
}
.well__cap p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(245,234,210,0.85);
}

@media (max-width: 1000px) {
    .well__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .well--tall { grid-row: auto; }
    .well--wide { grid-column: 1 / 3; }
    .well       { height: 220px; }
}
@media (max-width: 600px) {
    .well__grid { grid-template-columns: 1fr; }
    .well--wide { grid-column: auto; }
}


.other {
    padding: var(--sec-pad-y) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.other__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.otab {
    padding: 12px 26px;
    background: transparent;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.15s;
    text-transform: lowercase;
    font-family: var(--body);
}
.otab--on {
    background: var(--c);
    color: var(--cream);
    border-color: var(--c);
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--ink);
}

.other__panel { display: none; }
.other__panel--on { display: grid; }

.other__panel {
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 24px;
    box-shadow: 0 10px 0 var(--ink);
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.other__photo {
    position: relative;
    min-height: 360px;
    background: var(--c);
}
.other__photo img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.other__body { padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 44px); }
.other__sub {
    font-family: var(--hand);
    font-size: 26px;
    color: var(--c);
    margin-bottom: -4px;
}
.other__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    margin: 8px 0 18px;
    line-height: 1;
}
.other__txt {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(26,20,16,0.8);
    margin-bottom: 24px;
}
.other__facts {
    display: grid;
    gap: 10px;
    padding-top: 18px;
    border-top: 2px solid var(--ink);
}
.other__facts > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}
.other__facts span {
    font-size: 13px;
    color: rgba(26,20,16,0.7);
}
.other__facts b {
    font-family: var(--display);
    font-weight: 400;
    font-size: 18px;
    color: var(--c);
}

@media (max-width: 1000px) {
    .other__panel--on { grid-template-columns: 1fr; }
    .other__photo { min-height: 280px; }
}


.transfer {
    padding: var(--sec-pad-y) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.transfer__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.transfer__photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid var(--ink);
    box-shadow: 0 10px 0 var(--ink);
    aspect-ratio: 4 / 5;
}
.transfer__photo img { width: 100%; height: 100%; object-fit: cover; }
.transfer__stamp {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--coral);
    color: var(--cream);
    font-family: var(--display);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    transform: rotate(6deg);
    border: 2px solid var(--ink);
}
.trans__points {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    margin-bottom: 28px;
}
.trans__points > div {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: baseline;
    padding: 18px 22px;
    background: var(--cream);
    border: 1.5px solid var(--ink);
    border-radius: 14px;
}
.trans__from {
    font-family: var(--display);
    font-size: 22px;
    color: var(--coral);
    line-height: 1;
    text-transform: lowercase;
}
.trans__d {
    font-size: 13px;
    color: rgba(26,20,16,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.trans__p {
    font-family: var(--display);
    font-size: 18px;
    color: var(--ink);
    white-space: nowrap;
}
.trans__wip {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 16px 20px;
    background: var(--gold);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink);
}
.trans__wip p { margin: 0; flex: 1; min-width: 0; }
.trans__wip-tag {
    display: inline-block;
    background: var(--ink);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    flex-shrink: 0;
}

@media (max-width: 1000px) {
    .transfer__grid { grid-template-columns: 1fr; }
    .trans__points > div { grid-template-columns: 1fr; gap: 4px; }
}


.vids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vid {
    cursor: pointer;
    transition: transform 0.2s;
}
.vid:hover { transform: translateY(-4px); }
.vid__thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--ink);
    margin-bottom: 14px;
    box-shadow: 0 6px 0 var(--ink);
    background: var(--ink);
}
.vid__thumb video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.vid__title {
    font-family: var(--display);
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.vid__d {
    font-size: 14px;
    color: rgba(26,20,16,0.7);
}

@media (max-width: 900px) {
    .vids { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .vids { grid-template-columns: 1fr; }
}


.spot__features {
    max-width: 1280px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.spotf {
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 0 var(--ink);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.spotf__n {
    font-family: var(--display);
    font-size: 14px;
    color: var(--coral);
    letter-spacing: 0.08em;
}
.spotf__t {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.05;
    color: var(--ink);
    margin: 0;
    text-transform: lowercase;
}
.spotf__d {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
    opacity: 0.82;
    margin: 0;
}
@media (max-width: 980px) {
    .spot__features { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 540px) {
    .spot__features { grid-template-columns: 1fr; }
}

.spot__map {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}
.map {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    border: 2px solid var(--ink);
    overflow: hidden;
    box-shadow: 0 10px 0 var(--ink);
    background: var(--ink);
}
.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.map__caption {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--cream);
    color: var(--ink);
    padding: 8px 14px;
    border: 1.5px solid var(--ink);
    border-radius: 8px;
    font-family: var(--hand);
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 4px 0 var(--ink);
    transform: rotate(-2deg);
    white-space: nowrap;
}
@media (max-width: 600px) {
    .map__caption {
        top: 12px;
        left: 12px;
        font-size: 17px;
        padding: 6px 10px;
    }
}

.spot__list {
    background: var(--ink);
    color: var(--cream);
    border-radius: 22px;
    padding: 32px;
    display: flex; flex-direction: column;
    gap: 4px;
}
.spot__list .kicker { color: var(--gold); margin-bottom: 18px; }
.kv {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(245,234,210,0.2);
}
.kv:last-child { border-bottom: 0; }
.kv span { font-size: 13px; color: rgba(245,234,210,0.7); flex-shrink: 0; }
.kv em { flex: 1; height: 1px; background: rgba(245,234,210,0.2); }
.kv b {
    font-family: var(--display);
    font-weight: 400;
    font-size: 17px;
    color: var(--gold);
    text-align: right;
}

@media (max-width: 1000px) {
    .spot__map { grid-template-columns: 1fr; }
}


.prices {
    padding: var(--sec-pad-y) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.prices__tabs {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 28px;
}
.ptab {
    position: relative;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.15s;
    text-transform: lowercase;
    font-family: var(--body);
}
.ptab--on { background: var(--ink); color: var(--cream); }
.ptab--accent { border-color: var(--coral); color: var(--coral); }
.ptab--accent.ptab--on { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.ptab__star {
    position: absolute;
    top: -12px; right: -8px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--display);
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    transform: rotate(6deg);
    border: 1.5px solid var(--ink);
    white-space: nowrap;
}

.prices__sheet { display: none; }
.prices__sheet--on { display: grid; }
.prices__sheet {
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 22px;
    padding: 36px 40px;
    box-shadow: 0 10px 0 var(--ink);
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.pgroup__h {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 14px;
    color: var(--coral);
    text-transform: lowercase;
}
.pgroup__rows { display: flex; flex-direction: column; }
.prow {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(26,20,16,0.18);
}
.prow:last-child { border-bottom: 0; }
.prow span { flex-shrink: 0; font-size: 15px; max-width: 60%; }
.prow em { flex: 1; height: 1px; background: rgba(26,20,16,0.15); }
.prow b {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 400;
    color: var(--ink);
    white-space: nowrap;
}

.prices__notes {
    grid-column: 1 / -1;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pnote {
    background: var(--gold);
    color: var(--ink);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
    border: 1.5px solid var(--ink);
}
.pnote b {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 4px;
    text-transform: lowercase;
    color: var(--ink);
}

@media (max-width: 800px) {
    .prices__sheet--on { grid-template-columns: 1fr; padding: 24px 26px; gap: 24px; }
    .prices__notes     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .prices__notes { grid-template-columns: 1fr; }
}


.book__manifesto {
    background: var(--ink);
    color: var(--cream);
    padding: clamp(48px, 7vw, 90px) var(--gutter);
    text-align: center;
}
.book__manifesto-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}
.book__manifesto-mark {
    font-family: var(--display);
    font-size: clamp(64px, 10vw, 120px);
    line-height: 0.7;
    color: var(--coral);
    display: block;
    margin-bottom: 8px;
}
.book__manifesto p {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(24px, 3.4vw, 44px);
    line-height: 1.15;
    margin: 0;
    text-wrap: balance;
}
.book__manifesto em {
    font-family: var(--hand);
    font-style: normal;
    color: var(--gold);
    font-size: 1.1em;
    display: inline-block;
    transform: rotate(-2deg);
}

.book {
    background: var(--coral);
    color: var(--cream);
    padding: var(--sec-pad-y) var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 60px);
    position: relative;
    overflow: hidden;
}
.book::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent 0 80px,
        rgba(255,255,255,0.06) 80px 82px
    );
    pointer-events: none;
}
.book__left { position: relative; z-index: 1; }
.book__contacts {
    margin-top: 32px;
    display: flex; flex-direction: column;
    gap: 12px;
}
.bcontact {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 22px;
    background: rgba(26,20,16,0.18);
    border: 1.5px solid rgba(245,234,210,0.25);
    border-radius: 14px;
    font-size: 16px;
    transition: all 0.2s;
}
.bcontact:hover { background: var(--ink); transform: translateX(4px); }
.bcontact b {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    background: var(--cream);
    color: var(--coral);
    border-radius: 10px;
    font-family: var(--display);
    font-size: 14px;
    text-transform: uppercase;
}
.book__sig {
    margin-top: 32px;
    display: flex; align-items: center; gap: 14px;
}
.book__sig img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cream);
}
.book__sig-n {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--cream);
    line-height: 1;
}
.book__sig-r {
    font-size: 12px;
    color: rgba(245,234,210,0.75);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

.book__form {
    position: relative;
    z-index: 1;
    background: var(--cream);
    color: var(--ink);
    border-radius: 24px;
    padding: 36px 38px;
    border: 2px solid var(--ink);
    box-shadow: 0 12px 0 var(--ink);
}
.book__form-fields {
    display: flex; flex-direction: column; gap: 16px;
}
.book__form-h {
    font-family: var(--display);
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 8px;
    color: var(--coral);
    line-height: 1;
}
.book__form label { display: flex; flex-direction: column; gap: 6px; }
.book__form label > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26,20,16,0.6);
}
.book__form input,
.book__form select {
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    outline: none;
    transition: border 0.15s;
}
.book__form input:focus,
.book__form select:focus { border-color: var(--coral); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book__check {
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
    margin-top: 4px;
    cursor: pointer;
}
.book__check input {
    width: 20px; height: 20px;
    accent-color: var(--coral);
    margin: 0; padding: 0;
}
.book__check span {
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--ink) !important;
}
.book__small {
    font-size: 12px;
    color: rgba(26,20,16,0.6);
    margin-top: -2px;
}

.sent { text-align: center; padding: 20px 0; }
.sent__stamp {
    display: inline-block;
    border: 3px solid var(--coral);
    color: var(--coral);
    font-family: var(--display);
    font-size: 22px;
    padding: 8px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    transform: rotate(-4deg);
    margin-bottom: 24px;
}
.sent h3 {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 12px;
}
.sent p {
    margin: 0 0 24px;
    color: rgba(26,20,16,0.75);
}

@media (max-width: 1000px) {
    .book { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .book__form { padding: 24px 22px; }
}

