:root {
    --red: #b71920;
    --red-dark: #8e1015;
    --ink: #191817;
    --muted: #68635f;
    --cream: #f5f1ea;
    --paper: #fffdf9;
    --line: rgba(25, 24, 23, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    padding: 14px clamp(22px, 5vw, 76px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.96);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 50%;
}

.brand-name {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    line-height: 1.12;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.brand-name strong {
    color: var(--red);
    font-size: 1.08rem;
    letter-spacing: 0.055em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    font-size: 0.88rem;
    font-weight: 700;
}

.instagram-link {
    padding: 8px 0;
    border-bottom: 1px solid var(--ink);
}

.system-link,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: white;
    background: var(--red);
    transition: transform 180ms ease, background 180ms ease;
}

.system-link {
    min-height: 48px;
    padding: 0 22px;
}

.system-link:hover,
.primary-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    min-height: calc(100vh - 94px);
    overflow: hidden;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(54px, 7vw, 105px) clamp(28px, 7vw, 105px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: currentColor;
}

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

h1 {
    max-width: 760px;
    font-size: clamp(3.3rem, 6.3vw, 7.25rem);
    line-height: 0.91;
}

h1 em {
    color: var(--red);
    font-weight: 500;
}

.hero-summary {
    max-width: 620px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 38px;
}

.primary-button {
    min-height: 60px;
    padding: 0 28px;
    font-weight: 750;
}

.text-button {
    padding: 8px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 650px;
    margin-top: clamp(52px, 7vh, 82px);
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero-facts div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-facts strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.hero-facts span {
    color: var(--muted);
    font-size: 0.78rem;
}

.hero-visual {
    position: relative;
    min-height: 720px;
    background: var(--cream);
}

.main-photo {
    position: absolute;
    inset: 0 0 0 17%;
    margin: 0;
    overflow: hidden;
}

.main-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 12, 10, 0.48));
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-photo figcaption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 30px;
    left: 28px;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.3vw, 2.15rem);
}

.delivery-photo {
    position: absolute;
    z-index: 2;
    bottom: 7%;
    left: -7%;
    width: clamp(190px, 22vw, 330px);
    margin: 0;
    border: 10px solid var(--paper);
    box-shadow: 0 20px 54px rgba(24, 18, 13, 0.24);
}

.delivery-photo img {
    aspect-ratio: 1;
    object-fit: cover;
}

.quality-seal {
    position: absolute;
    z-index: 3;
    top: 8%;
    left: 4%;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    color: white;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(117, 13, 18, 0.25);
    transform: rotate(-7deg);
}

.quality-seal span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    line-height: 1;
}

.quality-seal small {
    margin-top: -18px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.activity {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    min-height: 760px;
    color: white;
    background: var(--ink);
}

.activity-photo {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.activity-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55));
}

.activity-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-photo span {
    position: absolute;
    z-index: 1;
    right: 34px;
    bottom: 30px;
    left: 34px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.activity-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(58px, 8vw, 122px);
}

.activity-copy h2 {
    font-size: clamp(3.2rem, 6vw, 6.3rem);
    line-height: 0.94;
}

.activity-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 30px 0 40px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.services-list span {
    color: var(--red);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
}

.contact-row a:hover {
    color: white;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px clamp(22px, 5vw, 76px);
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
}

footer div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

footer strong {
    color: var(--ink);
}

footer p {
    margin: 0;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 78px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .instagram-link {
        display: none;
    }

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

    .hero-copy {
        min-height: 720px;
    }

    .hero-visual {
        min-height: 780px;
    }

    .main-photo {
        inset: 0 0 0 12%;
    }

    .delivery-photo {
        left: 3%;
        width: 290px;
    }

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

    .activity-photo {
        min-height: 680px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 10px 16px;
    }

    .brand-name {
        display: none;
    }

    .system-link {
        min-height: 44px;
        padding: 0 15px;
        gap: 10px;
        font-size: 0.8rem;
    }

    .hero-copy {
        min-height: auto;
        padding: 58px 22px 52px;
    }

    h1 {
        font-size: clamp(3.15rem, 16vw, 4.75rem);
    }

    .hero-summary {
        margin-top: 26px;
        line-height: 1.6;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
    }

    .primary-button {
        justify-content: space-between;
        width: 100%;
    }

    .text-button {
        align-self: flex-start;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 44px;
    }

    .hero-facts div {
        align-items: baseline;
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--line);
    }

    .hero-visual {
        min-height: 620px;
    }

    .main-photo {
        inset: 0;
    }

    .delivery-photo {
        bottom: 22px;
        left: 18px;
        width: 180px;
        border-width: 6px;
    }

    .quality-seal {
        top: 22px;
        left: 20px;
        width: 76px;
        height: 76px;
    }

    .activity-photo {
        min-height: 540px;
    }

    .activity-copy {
        padding: 58px 22px;
    }

    .activity-copy h2 {
        font-size: 3.6rem;
    }

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

    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .system-link,
    .primary-button {
        transition: none;
    }
}
