:root {
    --forest: #21352a;
    --forest-deep: #17261e;
    --cream: #f2efe5;
    --paper: #faf8f2;
    --sage: #a8b59a;
    --rust: #a68e79;
    --ink: #1d2921;
    --line: rgba(29, 41, 33, .18);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

::selection {
    background: var(--rust);
    color: white;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 99;
    padding: .75rem 1rem;
    background: var(--rust);
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

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

.site-header {
    height: 88px;
    padding: 0 clamp(1.25rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--forest);
    color: var(--cream);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    font-family: "Newsreader", serif;
    font-size: 1.25rem;
    letter-spacing: .01em;
}

.brand img {
    width: 47px;
    height: 47px;
    object-fit: cover;
    border-radius: 50%;
}

.site-header .brand img {
    width: 68px;
    height: 68px;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.8rem);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav a {
    text-decoration: none;
}

.nav a:not(.nav-cta) {
    opacity: .76;
    transition: opacity .2s;
}

.nav a:not(.nav-cta):hover {
    opacity: 1;
}

.nav-cta {
    padding: .8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .45);
}

.nav-cta span {
    margin-left: .65rem;
}

.hero {
    min-height: min(720px, calc(100svh - 88px));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 7vw, 7rem);
    color: #fff;
    overflow: hidden;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    object-position: center 58%;
    animation: settle 1.4s ease-out both;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(15, 28, 21, .88) 0%, rgba(15, 28, 21, .48) 48%, rgba(15, 28, 21, .12) 78%), linear-gradient(0deg, rgba(15, 28, 21, .55), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 35px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
blockquote,
.intro {
    font-family: "Newsreader", serif;
    font-weight: 400;
}

h1 {
    margin-top: 1.2rem;
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    line-height: .95;
    letter-spacing: -.035em;
}

h1 em,
h2 em,
.intro em {
    color: var(--sage);
    font-weight: 400;
}

.hero-copy {
    max-width: 510px;
    margin: 2rem 0;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, .8);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid currentColor;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.text-link span {
    transition: transform .2s;
}

.text-link:hover span {
    transform: translateY(4px);
}

.hero-note {
    position: absolute;
    right: clamp(1.25rem, 5vw, 5rem);
    bottom: clamp(3rem, 7vw, 6rem);
    z-index: 1;
    font-family: "Newsreader", serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: right;
    opacity: .8;
}

.section {
    padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 7vw, 7rem);
}

.section-index {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #657066;
}

.story {
    display: grid;
    grid-template-columns: 1fr 2.35fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    background: var(--cream);
}

.intro {
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.025em;
    max-width: 760px;
}

.story-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    color: #526057;
}

.principles {
    align-self: end;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.principles>p {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.principles ol {
    list-style: none;
    margin-top: 1.2rem;
}

.principles li {
    display: flex;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    font-family: "Newsreader", serif;
    font-size: 1.1rem;
}

.principles li span {
    color: var(--rust);
    font-family: "DM Sans", sans-serif;
    font-size: .65rem;
}

.manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    background: var(--forest);
    color: var(--cream);
}

.manifesto-image {
    overflow: hidden;
}

.manifesto-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.manifesto:hover .manifesto-image img {
    transform: scale(1.025);
}

.manifesto-copy {
    padding: clamp(4rem, 8vw, 8rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

blockquote {
    margin: 2rem 0 3rem;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    line-height: 1.03;
    letter-spacing: -.035em;
}

.manifesto-copy>p:last-child {
    color: rgba(255, 255, 255, .63);
    max-width: 400px;
}

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

.products-heading {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    align-items: end;
    gap: 3rem;
    margin: 2.5rem 0 3rem;
}

h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.8rem);
    line-height: .98;
    letter-spacing: -.035em;
}

.products-heading h2 em {
    color: #708264;
}

.products-heading>p {
    max-width: 430px;
    color: #59655d;
}

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

.product-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: .3fr 2fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
    transition: background .25s, color .25s, padding .25s;
}

.product-card:hover {
    padding-left: 2.2rem;
    background: var(--forest);
    color: var(--cream);
}

.product-number {
    align-self: start;
    font-size: .65rem;
    color: var(--rust);
}

.product-card div>p:first-child {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #7c887f;
}

.product-card h3 {
    font-family: "Newsreader", serif;
    font-size: clamp(1.7rem, 2.6vw, 2.7rem);
    line-height: 1;
    font-weight: 400;
    margin: .25rem 0 .45rem;
}

.product-card div>p:last-child {
    max-width: 520px;
    color: #68746b;
}

.product-card:hover div>p:last-child {
    color: rgba(255, 255, 255, .6);
}

.product-card>a {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
}

.availability {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
    margin-top: 1.6rem;
    font-size: .72rem;
    color: #667169;
}

.availability span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6c8a5f;
    box-shadow: 0 0 0 4px rgba(108, 138, 95, .14);
}

.visit {
    display: grid;
    grid-template-columns: .55fr 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    background: var(--rust);
    color: #fff7ed;
}

.visit .section-index {
    color: rgba(255, 255, 255, .63);
}

.visit .eyebrow {
    margin-bottom: 1.4rem;
}

.visit h2 em {
    color: #253a2d;
}

.visit-heading>p:last-child {
    margin-top: 2rem;
    max-width: 470px;
    color: rgba(255, 255, 255, .75);
}

.contact-details {
    align-self: end;
    border-top: 1px solid rgba(255, 255, 255, .35);
}

.contact-details>a,
.contact-details>div {
    display: grid;
    grid-template-columns: .6fr 1fr auto;
    align-items: center;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    text-decoration: none;
}

.contact-details span {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
}

.contact-details b {
    font-weight: 400;
}

.map-link {
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .6) !important;
    padding: 1rem 1.2rem !important;
    display: flex !important;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .14em;
}

.footer {
    min-height: 145px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem clamp(1.25rem, 5vw, 5rem);
    background: var(--forest-deep);
    color: var(--cream);
}

.footer>p {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

/* Podrobnosti ponudbe */
.offer-page {
    background: var(--cream);
}

.offer-intro {
    min-height: 72vh;
    padding: 10rem clamp(1.25rem, 8vw, 9rem) 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--forest-deep);
    color: var(--cream);
}

.offer-intro h1 {
    max-width: 900px;
    margin: 1.2rem 0 1.5rem;
    font-size: clamp(3.4rem, 8vw, 7rem);
    line-height: .92;
}

.offer-intro>p:last-child {
    max-width: 620px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
}

.offer-detail {
    display: grid;
    grid-template-columns: minmax(150px, .7fr) minmax(0, 2fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: start;
}

.offer-copy {
    max-width: 760px;
}

.offer-kicker {
    margin-bottom: 1rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rust);
}

.offer-copy h2,
.order-heading h2 {
    margin-bottom: 1.5rem;
}

.offer-copy>p:not(.offer-kicker) {
    max-width: 680px;
    margin-bottom: 2rem;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
}

.offer-detail-dark {
    background: var(--forest-deep);
    color: var(--cream);
}

.offer-detail-dark .section-index,
.offer-detail-dark .offer-copy>p:not(.offer-kicker) {
    color: rgba(255, 255, 255, .7);
}

.order-section {
    display: grid;
    grid-template-columns: minmax(150px, .7fr) minmax(0, 2fr);
    gap: clamp(2rem, 7vw, 8rem);
}

.order-heading {
    max-width: 700px;
}

.order-heading>p:last-child {
    max-width: 600px;
    line-height: 1.7;
}

.order-form-link {
    max-width: 680px;
    margin-top: 3.5rem;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--forest-deep);
    color: var(--cream);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: background-color .25s ease, transform .25s ease;
}

.order-form-link:hover {
    background: var(--rust);
    transform: translateY(-2px);
}

.order-form-link b {
    font-size: 1rem;
    font-weight: 400;
}

@keyframes settle {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 900px) {

    .story,
    .visit {
        grid-template-columns: 1fr;
    }

    .story-main {
        max-width: 740px;
    }

    .principles {
        max-width: 460px;
    }

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

    .manifesto-image {
        height: 62vw;
        min-height: 390px;
    }

    .products-heading {
        grid-template-columns: 1fr;
    }

    .contact-details {
        margin-top: 2rem;
    }

    .offer-detail,
    .order-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    html {
        scroll-padding-top: 72px;
    }

    .site-header {
        height: 72px;
        padding: 0 1rem;
    }

    .brand span {
        display: none;
    }

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

    .site-header .brand img {
        width: 54px;
        height: 54px;
    }

    .nav {
        gap: .8rem;
        font-size: .62rem;
    }

    .nav a:first-child {
        display: none;
    }

    .nav-cta {
        padding: .65rem .75rem;
    }

    .hero {
        min-height: 560px;
        padding-bottom: 3.5rem;
    }

    .hero-note {
        display: none;
    }

    h1 {
        font-size: clamp(2.9rem, 13vw, 4.4rem);
    }

    .story-copy {
        grid-template-columns: 1fr;
    }

    .manifesto-copy {
        padding: 4rem 1.25rem;
    }

    .product-card {
        grid-template-columns: 30px 1fr auto;
        gap: .75rem;
        padding: 1.6rem .4rem;
    }

    .product-card:hover {
        padding-left: .7rem;
    }

    .product-card>a {
        width: 40px;
        height: 40px;
    }

    .availability {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .contact-details>a,
    .contact-details>div {
        grid-template-columns: 1fr auto;
        gap: .3rem;
    }

    .contact-details span {
        grid-column: 1 / -1;
    }

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

    .footer .brand span {
        display: inline;
    }

    .offer-intro {
        min-height: 620px;
        padding: 8rem 1.25rem 4rem;
    }

    .offer-intro h1 {
        font-size: clamp(3rem, 14vw, 4.6rem);
    }

}
