@font-face {
    font-family: "Bellota";
    src: url("../fonts/Bellota.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans.woff") format("woff");
    font-display: swap;
}

:root {
    --xmas-green: #155442;
    --xmas-green-dark: #0b3f32;
    --xmas-green-deep: #082f27;
    --xmas-gold: #d9a23a;
    --xmas-kraft: #dcc49b;
    --xmas-lime: #d7eb79;
    --xmas-cream: #f8f5ef;
    --xmas-ink: #252622;
    --xmas-white: #ffffff;
    --xmas-radius: 22px;
    --xmas-shadow: 0 18px 44px rgba(20, 54, 43, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--xmas-ink);
    background: var(--xmas-cream);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

button,
input,
textarea {
    font: inherit;
}

.xmas-landing {
    overflow: hidden;
    background: var(--xmas-cream);
}

.xmas-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.xmas-title {
    margin: 0;
    color: var(--xmas-green);
    font-family: "Bellota", Arial, sans-serif;
    font-size: clamp(38px, 4.3vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
}

.xmas-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 0;
    border-radius: 10px;
    background: var(--xmas-green);
    color: var(--xmas-white);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.045em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.xmas-button:hover,
.xmas-button:focus-visible {
    background: var(--xmas-green-dark);
    box-shadow: 0 12px 28px rgba(10, 62, 49, 0.24);
    color: var(--xmas-white);
    transform: translateY(-2px);
}

.xmas-hero {
    position: relative;
    min-height: clamp(520px, 53vw, 720px);
    isolation: isolate;
    background: var(--xmas-green-deep);
}

.xmas-hero__image,
.xmas-hero__shade {
    position: absolute;
    inset: 0;
}

.xmas-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.xmas-hero__shade {
    z-index: 1;
    background: linear-gradient(90deg, rgba(4, 31, 25, 0.76) 0%, rgba(4, 31, 25, 0.48) 42%, rgba(4, 31, 25, 0.04) 70%);
}

.xmas-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: clamp(520px, 53vw, 720px);
    align-items: center;
    padding: 58px 0 62px;
}

.xmas-hero__copy {
    width: min(520px, 48%);
    color: var(--xmas-white);
}

.xmas-hero__logo {
    display: block;
    width: clamp(118px, 12vw, 170px);
    height: auto;
    margin-bottom: 34px;
}

.xmas-hero h1 {
    max-width: 500px;
    margin: 0 0 24px;
    color: var(--xmas-white);
    font-family: "Bellota", Arial, sans-serif;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 700;
    line-height: 0.98;
}

.xmas-hero p {
    max-width: 440px;
    margin: 0 0 34px;
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 650;
    line-height: 1.55;
}

.xmas-hero__seal {
    position: absolute;
    z-index: 3;
    top: 0;
    right: max(6vw, 34px);
    display: grid;
    width: 154px;
    min-height: 188px;
    place-items: center;
    padding: 26px 22px;
    background: var(--xmas-green);
    color: var(--xmas-gold);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.xmas-hero__seal strong {
    display: block;
    margin: 4px 0;
    font-family: "Bellota", Arial, sans-serif;
    font-size: 31px;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: none;
}

.xmas-benefits {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 29px 0;
    background-color: var(--xmas-kraft);
    background-image: linear-gradient(90deg, rgba(255,255,255,0.09), rgba(106,74,33,0.05));
}

.xmas-benefits::before {
    position: absolute;
    top: -11px;
    right: 0;
    left: 0;
    height: 14px;
    background: radial-gradient(circle at 10px -2px, transparent 12px, var(--xmas-kraft) 13px) 0 0 / 22px 14px repeat-x;
    content: "";
}

.xmas-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.xmas-benefit {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.xmas-benefit:last-child {
    border-right: 0;
}

.xmas-benefit svg {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    color: var(--xmas-white);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.xmas-packages {
    position: relative;
    padding: 78px 0 70px;
}

.xmas-packages::before,
.xmas-packages::after {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(217, 162, 58, 0.18);
    border-radius: 48% 52% 45% 55%;
    content: "";
    pointer-events: none;
}

.xmas-packages::before {
    top: 104px;
    left: -190px;
    transform: rotate(28deg);
}

.xmas-packages::after {
    right: -190px;
    bottom: 28px;
    transform: rotate(-24deg);
}

.xmas-packages__grid {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.xmas-packages__notice {
    position: relative;
    z-index: 1;
    max-width: 790px;
    margin: 22px auto 0;
    padding: 16px 20px;
    border-left: 4px solid var(--xmas-gold);
    background: rgba(217, 162, 58, 0.09);
    color: var(--xmas-green-dark);
    font-size: 16px;
    line-height: 1.55;
    text-align: left;
}

.xmas-packages__notice strong {
    font-weight: 800;
}

.xmas-package {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 16px 18px 20px;
    border: 1px solid rgba(21, 84, 66, 0.08);
    border-radius: var(--xmas-radius);
    background: var(--xmas-white);
    box-shadow: 0 8px 28px rgba(26, 71, 57, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.xmas-package:hover {
    box-shadow: var(--xmas-shadow);
    transform: translateY(-5px);
}

.xmas-package__media {
    position: relative;
    display: grid;
    min-height: 230px;
    place-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(145deg, #fbfaf7, #f2eee7);
}

.xmas-package__media img {
    width: 100%;
    max-width: 330px;
    height: 220px;
    object-fit: contain;
}

.xmas-package__badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #e2a63b;
    color: #3b2e14;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.xmas-package__badge--new {
    background: var(--xmas-lime);
    color: var(--xmas-green-dark);
}

.xmas-package h3 {
    margin: 19px 0 9px;
    color: var(--xmas-green);
    font-family: "Bellota", Arial, sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.12;
}

.xmas-package ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.55;
}

.xmas-package__id {
    margin: auto 0 0;
    padding-top: 12px;
    color: #62635f;
    font-size: 12px;
    font-weight: 750;
}

.xmas-packages__cta {
    margin-top: 40px;
    text-align: center;
}

.xmas-personalization {
    padding: 16px 0 82px;
}

.xmas-personalization__grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.xmas-personalization__item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.xmas-box {
    position: relative;
    width: 164px;
    height: 118px;
    margin: 0 auto 26px;
    border: 3px solid var(--xmas-green);
    background: rgba(255, 255, 255, 0.68);
    transform: skewY(-2deg);
}

.xmas-box::before {
    position: absolute;
    top: -15px;
    right: -3px;
    left: -3px;
    height: 18px;
    border: 3px solid var(--xmas-green);
    background: var(--xmas-white);
    content: "";
    transform: skewX(-28deg);
    transform-origin: bottom left;
}

.xmas-box::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 48%;
    width: 22px;
    border-right: 2px solid var(--xmas-green);
    border-left: 2px solid var(--xmas-green);
    background: rgba(217, 162, 58, 0.08);
    content: "";
}

.xmas-box--logo::after {
    top: 54px;
    left: 64px;
    width: 31px;
    height: 31px;
    border: 2px solid var(--xmas-green);
    border-radius: 50%;
    background: var(--xmas-white);
}

.xmas-box--custom::after {
    left: 88px;
    width: 32px;
    background: #ead5a9;
}

.xmas-quantity {
    position: absolute;
    top: 58px;
    left: calc(50% + 66px);
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 50%;
    background: var(--xmas-green);
    color: var(--xmas-white);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.05;
}

.xmas-personalization h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.xmas-personalization p {
    margin: 0;
    color: #3f423d;
    font-size: 14px;
    line-height: 1.55;
}

.xmas-inquiry {
    background: var(--xmas-green);
    color: var(--xmas-white);
}

.xmas-inquiry__layout {
    display: grid;
    min-height: 560px;
    grid-template-columns: minmax(270px, 34%) 1fr;
}

.xmas-inquiry__photo {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.xmas-inquiry__photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.xmas-inquiry__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 38px clamp(32px, 4.5vw, 68px);
}

.xmas-inquiry h2 {
    margin: 0 0 8px;
    color: var(--xmas-white);
    font-family: "Bellota", Arial, sans-serif;
    font-size: clamp(34px, 2.8vw, 48px);
    line-height: 1.08;
}

.xmas-inquiry__lead {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
}

.xmas-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
}

.xmas-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.xmas-field--full {
    grid-column: 1 / -1;
}

.xmas-field label,
.xmas-checkbox label {
    font-size: 13px;
    font-weight: 750;
}

.xmas-field input,
.xmas-field textarea {
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    border: 2px solid transparent;
    border-radius: 3px;
    outline: none;
    background: var(--xmas-white);
    color: var(--xmas-ink);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.xmas-field textarea {
    min-height: 66px;
    resize: vertical;
}

.xmas-field input:focus,
.xmas-field textarea:focus {
    border-color: var(--xmas-lime);
    box-shadow: 0 0 0 3px rgba(215, 235, 121, 0.22);
}

.xmas-checkbox {
    display: flex;
    min-height: 42px;
    align-items: flex-end;
    padding-bottom: 6px;
}

.xmas-checkbox label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.xmas-checkbox input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--xmas-lime);
}

.xmas-form__note {
    margin: 12px 0 14px;
    font-size: 12px;
    line-height: 1.5;
}

.xmas-form__alert {
    margin: 0 0 18px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    background: rgba(110, 17, 28, 0.42);
    color: var(--xmas-white);
    font-size: 14px;
    line-height: 1.5;
}

.xmas-form__alert[hidden] {
    display: none;
}

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

.xmas-form__noscript {
    margin: 12px 0 0;
    color: #ffe0e0;
    font-size: 13px;
}

.xmas-button--lime {
    min-height: 48px;
    align-self: flex-start;
    padding: 11px 24px;
    background: var(--xmas-lime);
    color: var(--xmas-green-dark);
}

.xmas-button--lime:hover,
.xmas-button--lime:focus-visible {
    background: #e2f292;
    color: var(--xmas-green-dark);
}

.xmas-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.xmas-preview-note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.xmas-thanks__hero {
    position: relative;
    display: flex;
    min-height: clamp(560px, calc(100vh - 223px), 700px);
    min-height: clamp(560px, calc(100svh - 223px), 700px);
    align-items: center;
    isolation: isolate;
    background: var(--xmas-green-deep);
}

.xmas-thanks__image,
.xmas-thanks__shade {
    position: absolute;
    inset: 0;
}

.xmas-thanks__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.xmas-thanks__shade {
    z-index: 1;
    background: rgba(5, 42, 33, 0.78);
}

.xmas-thanks__content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 820px;
    align-items: center;
    flex-direction: column;
    padding: 68px 24px;
    color: var(--xmas-white);
    text-align: center;
}

.xmas-thanks__logo {
    width: 132px;
    height: auto;
    margin: 0 0 24px;
}

.xmas-thanks__eyebrow {
    margin: 0 0 12px;
    color: var(--xmas-lime);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.xmas-thanks h1 {
    margin: 0 0 18px;
    color: var(--xmas-white);
    font-family: "Bellota", Arial, sans-serif;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1.04;
}

.xmas-thanks__lead {
    max-width: 650px;
    margin: 0;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.6;
}

.xmas-thanks__notice {
    max-width: 650px;
    margin: 20px 0 0;
    padding: 12px 18px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 14px;
    line-height: 1.55;
}

.xmas-thanks__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.xmas-button--outline {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: transparent;
}

.xmas-button--outline:hover,
.xmas-button--outline:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 981px) {
    .xmas-hero {
        height: clamp(500px, calc(100vh - 223px), 650px);
        height: clamp(500px, calc(100svh - 223px), 650px);
        min-height: 0;
    }

    .xmas-hero__content {
        width: min(1440px, calc(100% - 48px));
        height: 100%;
        min-height: 0;
        padding: 42px 0 44px;
    }

    .xmas-hero__copy {
        width: min(650px, 54%);
        margin-left: clamp(125px, 10vw, 170px);
    }

    .xmas-hero__logo {
        position: absolute;
        top: 44px;
        left: clamp(-140px, calc((1440px - 100vw) / 2 + 24px), -18px);
        width: clamp(112px, 8vw, 145px);
        margin: 0;
    }

    .xmas-hero h1 {
        max-width: 650px;
        margin-bottom: 20px;
        font-size: clamp(54px, 4.5vw, 80px);
    }

    .xmas-hero p {
        max-width: 500px;
        margin-bottom: 26px;
        font-size: clamp(17px, 1.1vw, 20px);
        line-height: 1.45;
    }
}

@media (max-width: 980px) {
    .xmas-hero__copy {
        width: 58%;
    }

    .xmas-hero__seal {
        right: 24px;
        width: 126px;
        min-height: 160px;
    }

    .xmas-benefit {
        padding: 0 14px;
        font-size: 13px;
    }

    .xmas-benefit svg {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

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

    .xmas-personalization__grid {
        gap: 26px;
    }

    .xmas-inquiry__layout {
        grid-template-columns: 280px 1fr;
    }

    .xmas-form__grid {
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .xmas-container {
        width: min(100% - 30px, 600px);
    }

    .xmas-hero,
    .xmas-hero__content {
        min-height: 680px;
    }

    .xmas-hero__image img {
        object-position: 66% center;
    }

    .xmas-hero__shade {
        background: linear-gradient(180deg, rgba(4, 31, 25, 0.48) 0%, rgba(4, 31, 25, 0.76) 53%, rgba(4, 31, 25, 0.95) 100%);
    }

    .xmas-hero__content {
        align-items: flex-end;
        padding-bottom: 54px;
    }

    .xmas-hero__copy {
        width: 100%;
        text-align: center;
    }

    .xmas-hero__logo {
        width: 120px;
        margin: 0 auto 24px;
    }

    .xmas-hero h1,
    .xmas-hero p {
        margin-right: auto;
        margin-left: auto;
    }

    .xmas-hero__seal {
        right: 16px;
        width: 106px;
        min-height: 130px;
        padding: 18px 12px;
        font-size: 11px;
    }

    .xmas-hero__seal strong {
        font-size: 23px;
    }

    .xmas-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .xmas-benefit {
        min-height: 88px;
        border-right: 1px solid rgba(255, 255, 255, 0.72);
        border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    }

    .xmas-benefit:nth-child(2n) {
        border-right: 0;
    }

    .xmas-benefit:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .xmas-personalization__grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .xmas-inquiry__layout {
        grid-template-columns: 1fr;
    }

    .xmas-inquiry__photo {
        height: 360px;
    }
}

@media (max-width: 560px) {
    .xmas-title {
        font-size: 38px;
    }

    .xmas-hero h1 {
        font-size: 55px;
    }

    .xmas-benefit {
        flex-direction: column;
        gap: 8px;
        padding: 14px 8px;
        text-align: center;
    }

    .xmas-packages {
        padding-top: 58px;
    }

    .xmas-packages__grid {
        grid-template-columns: 1fr;
    }

    .xmas-package__media {
        min-height: 220px;
    }

    .xmas-inquiry__photo {
        height: 280px;
    }

    .xmas-inquiry__content {
        padding: 42px 20px 50px;
    }

    .xmas-form__grid {
        grid-template-columns: 1fr;
    }

    .xmas-field--full {
        grid-column: auto;
    }

    .xmas-checkbox {
        align-items: center;
        padding: 4px 0;
    }

    .xmas-button--lime {
        width: 100%;
    }

    .xmas-thanks__hero {
        min-height: 620px;
    }

    .xmas-thanks__content {
        padding: 52px 18px;
    }

    .xmas-thanks__actions,
    .xmas-thanks__actions .xmas-button {
        width: 100%;
    }
}
