@font-face {
    font-family: "Newsreader";
    src: url("../fonts/Newsreader.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Work Sans";
    src: url("../fonts/WorkSans.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #eee9df;
    --color-surface: #f8f4ec;
    --color-text: #211f1a;
    --color-text-muted: #6f695d;
    --color-primary: #3f4938;
    --color-accent: #a86f3b;
    --color-dark: #1d241d;
    --line: #c8c0b2;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;
    --space-8: 112px;
    --text-display: clamp(3.1rem, 7.7vw, 7.2rem);
    --text-h1: clamp(2.5rem, 5.5vw, 4.7rem);
    --text-h2: clamp(2rem, 4vw, 3.4rem);
    --text-h3: clamp(1.35rem, 2.4vw, 2rem);
    --text-body: 1rem;
    --text-small: .82rem;
    --radius: 18px;
    --shadow: 0 22px 50px rgba(33, 31, 26, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Work Sans", sans-serif;
    line-height: 1.65
}

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

img {
    max-width: 100%
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-4);
    padding: 14px clamp(20px, 4vw, 64px);
    background: rgba(238, 233, 223, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(63, 73, 56, .14)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Newsreader", serif;
    font-size: 1.3rem;
    font-weight: 600
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.nav {
    justify-self: center;
    display: flex;
    gap: 28px;
    font-size: .9rem
}

.nav a,
.footer-links a {
    position: relative
}

.nav a:after,
.footer-links a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 1px;
    background: var(--color-accent);
    transition: .25s
}

.nav a:hover:after,
.footer-links a:hover:after {
    right: 0
}

.header-notice {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    padding: 7px 10px;
    border-radius: 999px
}

.hero {
    min-height: 86vh;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
    padding: var(--space-7) clamp(20px, 5vw, 80px) var(--space-8)
}

.eyebrow,
.section-label,
.article-kicker {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    color: var(--color-accent);
    font-weight: 600
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px
}

.section-label:before {
    content: "";
    width: 38px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0 62%, transparent 62% 72%, var(--color-accent) 72% 100%)
}

.hero h1,
.section-copy h2,
.story-head h2,
.section-heading h2,
.process-copy h2,
.request-copy h2,
.faq-head h2 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    line-height: .98;
    margin: 16px 0 24px
}

.hero h1 {
    font-size: var(--text-h1);
    max-width: 820px
}

.hero p {
    max-width: 680px;
    color: var(--color-text-muted);
    font-size: 1.05rem
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-weight: 600
}

.layer-frame {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    border-radius: var(--radius)
}

.layer-frame:before,
.layer-frame:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none
}

.layer-frame:before {
    top: 0;
    height: 12px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .15) 0 44px, rgba(255, 255, 255, 0) 44px 58px)
}

.layer-frame:after {
    bottom: 0;
    height: 9px;
    background: rgba(168, 111, 59, .82)
}

.hero-visual {
    aspect-ratio: 4/5;
    box-shadow: var(--shadow)
}

.layer-frame img,
.imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.layer-index {
    position: absolute;
    left: 18px;
    bottom: 22px;
    z-index: 3;
    background: rgba(29, 36, 29, .88);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    gap: 18px;
    align-items: baseline
}

.layer-index span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.layer-index strong {
    font-family: "Newsreader", serif;
    font-size: 1.05rem
}

.section-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: var(--space-6);
    padding: var(--space-8) clamp(20px, 7vw, 120px)
}

.section-copy {
    max-width: 900px
}

.section-copy h2 {
    font-size: var(--text-h2)
}

.section-copy p {
    font-size: 1.08rem;
    color: var(--color-text-muted)
}

.story {
    background: var(--color-surface);
    padding: var(--space-8) clamp(20px, 5vw, 80px)
}

.story-head {
    max-width: 980px;
    margin-bottom: var(--space-6)
}

.story-head h2 {
    font-size: var(--text-h2)
}

.story-row {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 6vw, 84px);
    align-items: center;
    margin: var(--space-7) 0
}

.story-row.reverse {
    grid-template-columns: .95fr 1.05fr
}

.story-row.reverse .media {
    order: 2
}

.story-row .media {
    aspect-ratio: 4/3
}

.prose p {
    font-family: "Newsreader", serif;
    font-size: clamp(1.1rem, 1.6vw, 1.42rem);
    line-height: 1.55
}

.native-article {
    max-width: 1100px;
    margin: var(--space-8) auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--space-6) 0
}

.native-article h2,
.native-article h3 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    line-height: 1.02
}

.native-article h2 {
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    max-width: 980px
}

.native-article>h3 {
    font-size: clamp(2rem, 4vw, 3.6rem)
}

.native-article .lead {
    font-family: "Newsreader", serif;
    font-size: 1.35rem;
    max-width: 880px
}

.article-split {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    margin-top: 40px
}

.article-split h3 {
    font-size: var(--text-h3)
}

.note-card {
    background: var(--color-dark);
    color: #fff;
    padding: 28px;
    border-radius: var(--radius);
    align-self: start
}

.note-card span {
    color: #d9b48e;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .7rem
}

.note-card strong {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 1.8rem;
    margin: 8px 0
}

.accent-article {
    background: var(--color-primary);
    color: #fff;
    padding: clamp(32px, 5vw, 68px);
    border-radius: var(--radius);
    border: none
}

.accent-article .article-kicker {
    color: #e0bf9d
}

.finds {
    padding: var(--space-8) clamp(20px, 5vw, 80px)
}

.section-heading {
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 40px;
    align-items: start;
    margin-bottom: var(--space-6)
}

.section-heading h2 {
    font-size: var(--text-h2);
    margin-top: 0
}

.section-heading p {
    grid-column: 2;
    color: var(--color-text-muted);
    max-width: 760px
}

.masonry {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-auto-rows: minmax(260px, auto);
    gap: 24px
}

.find-card {
    margin: 0;
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 330px
}

.find-card.tall {
    grid-row: span 2;
    grid-template-columns: 1fr
}

.find-card.tall .imgbox {
    min-height: 520px
}

.find-card.wide {
    grid-column: 2;
    grid-template-columns: 1fr
}

.find-card .imgbox {
    min-height: 280px;
    background: var(--color-primary);
    overflow: hidden
}

.find-card figcaption {
    padding: 24px
}

.find-card figcaption span {
    font-size: .7rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--color-accent)
}

.find-card figcaption strong {
    display: block;
    font-family: "Newsreader", serif;
    font-size: 1.5rem;
    margin: 8px 0
}

.find-card figcaption p {
    color: var(--color-text-muted);
    font-size: .92rem
}

.why {
    background: var(--color-dark);
    color: #fff
}

.why .section-copy p {
    color: #c7c6bf
}

.factors {
    padding: var(--space-8) clamp(20px, 5vw, 80px)
}

.factor-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px
}

.factor-grid article {
    background: var(--color-surface);
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: var(--radius);
    min-height: 260px;
    transition: .25s
}

.factor-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.factor-grid article:nth-child(1),
.factor-grid article:nth-child(2) {
    grid-column: span 6
}

.factor-grid article:nth-child(n+3) {
    grid-column: span 4
}

.factor-grid i {
    font-size: 1.6rem;
    color: var(--color-accent)
}

.factor-grid span {
    float: right;
    color: var(--color-text-muted);
    font-size: .8rem
}

.factor-grid h3 {
    font-family: "Newsreader", serif;
    font-size: 1.55rem;
    margin: 34px 0 10px
}

.factor-grid p {
    color: var(--color-text-muted)
}

.process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-surface);
    margin: 0 clamp(20px, 5vw, 80px);
    border-radius: var(--radius);
    overflow: hidden
}

.process-visual {
    border-radius: 0;
    min-height: 640px
}

.process-copy {
    padding: clamp(40px, 6vw, 88px)
}

.process-copy h2 {
    font-size: var(--text-h2)
}

.steps {
    margin-top: 36px
}

.steps div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding: 18px 0
}

.steps span {
    color: var(--color-accent);
    font-family: "Newsreader", serif;
    font-size: 1.3rem
}

.services {
    padding: var(--space-8) clamp(20px, 5vw, 80px)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.service-grid article {
    position: relative;
    border: 1px solid var(--line);
    background: var(--color-surface);
    padding: 38px 30px 30px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    min-height: 390px;
    transition: .25s;
    overflow: hidden
}

.service-grid article:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--color-accent) 0 52px, transparent 52px 64px)
}

.service-grid article:hover {
    transform: translateY(-4px)
}

.service-grid article.featured {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-18px)
}

.service-grid article.featured:hover {
    transform: translateY(-22px)
}

.service-grid article>div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start
}

.service-grid article>div span {
    font-family: "Newsreader", serif;
    font-size: 1.45rem
}

.service-grid article>div strong {
    white-space: nowrap
}

.service-grid p {
    color: var(--color-text-muted)
}

.service-grid .featured p {
    color: #e3e6df
}

.service-grid a {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid currentColor;
    padding-top: 16px;
    font-weight: 600
}

.pricing-note {
    max-width: 980px;
    margin: 22px 0 0;
    color: var(--color-text-muted);
    font-size: .88rem
}

.request {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 64px;
    padding: var(--space-8) clamp(20px, 7vw, 120px);
    background: var(--color-dark);
    color: #fff
}

.request-copy h2 {
    font-size: var(--text-h2)
}

.request-copy p {
    color: #c7c6bf
}

.contact-strip {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "Newsreader", serif;
    font-size: 1.2rem
}

.request-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.request-form label {
    font-size: .82rem;
    color: #dedfd8
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    margin-top: 7px;
    background: #2a3229;
    color: #fff;
    border: 1px solid #4a5648;
    border-radius: 12px;
    padding: 14px;
    font: inherit
}

.request-form textarea {
    resize: vertical
}

.request-form .full {
    grid-column: 1/-1
}

.request-form .check {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.request-form .check input {
    width: auto;
    margin-top: 4px
}

.request-form .check a {
    text-decoration: underline
}

.button {
    border: 0;
    background: var(--color-accent);
    color: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    font-weight: 600;
    font: inherit;
    cursor: pointer;
    transition: .25s
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06)
}

.faq {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 64px;
    padding: var(--space-8) clamp(20px, 7vw, 120px)
}

.faq-head h2 {
    font-size: var(--text-h2)
}

.accordion details {
    border-top: 1px solid var(--line);
    padding: 20px 0
}

.accordion details:last-child {
    border-bottom: 1px solid var(--line)
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    font-family: "Newsreader", serif;
    font-size: 1.25rem
}

.accordion summary::-webkit-details-marker {
    display: none
}

.accordion details[open] summary i {
    transform: rotate(45deg)
}

.accordion summary i {
    transition: .2s
}

.accordion p {
    color: var(--color-text-muted);
    max-width: 760px
}

.site-footer {
    background: #161a16;
    color: #d6d8d2;
    padding: 56px clamp(20px, 5vw, 80px) 28px
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr .8fr;
    gap: 40px;
    border-bottom: 1px solid #394038;
    padding-bottom: 34px
}

.footer-main p {
    margin: 4px 0;
    color: #aeb2aa;
    font-size: .9rem
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 0
}

.footer-disclaimer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #989d95;
    font-size: .78rem;
    line-height: 1.55
}

.footer-disclaimer p {
    max-width: 1100px;
}

.legal-main {
    max-width: 980px;
    margin: 0 auto;
    padding: 96px 24px
}

.legal-main h1,
.legal-main h2 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    line-height: 1.05;
    word-break: break-word;
}

.legal-main h1 {
    font-size: clamp(2.6rem, 6vw, 5rem)
}

.legal-main h2 {
    font-size: 1.7rem;
    margin-top: 46px
}

.legal-main p {
    color: var(--color-text-muted)
}

.legal-main .legal-meta {
    border-left: 3px solid var(--color-accent);
    padding-left: 18px
}

.thanks-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px;
    word-break: break-word;
}

.thanks-wrap h1 {
    font-family: "Newsreader", serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.02;
}

.thanks-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0
}

.thanks-steps article {
    background: var(--color-surface);
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line)
}

.thanks-steps span {
    color: var(--color-accent)
}

.thanks-steps h2 {
    font-family: "Newsreader", serif
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid #c8894f;
    outline-offset: 3px
}

@media(max-width:1024px) {
    .nav {
        display: none
    }

    .service-grid article.featured {
        transform: none
    }

    .service-grid article.featured:hover {
        transform: translateY(-4px)
    }

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

    .hero-visual {
        max-height: 700px
    }

    .section-grid,
    .request,
    .faq {
        grid-template-columns: 1fr
    }

    .section-heading {
        grid-template-columns: 1fr
    }

    .section-heading p {
        grid-column: 1
    }

    .story-row,
    .story-row.reverse {
        grid-template-columns: 1fr
    }

    .story-row.reverse .media {
        order: 0
    }

    .article-split {
        grid-template-columns: 1fr
    }

    .masonry {
        grid-template-columns: 1fr
    }

    .find-card,
    .find-card.tall,
    .find-card.wide {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: 1fr 1fr
    }

    .find-card.tall .imgbox {
        min-height: 280px
    }

    .factor-grid article:nth-child(n) {
        grid-column: span 6
    }

    .process {
        grid-template-columns: 1fr
    }

    .process-visual {
        min-height: 480px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .thanks-steps {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .site-header {
        grid-template-columns: 1fr auto
    }

    .brand span {
        display: none
    }

    .hero {
        padding-top: 48px
    }

    .hero-visual {
        aspect-ratio: 4/5
    }

    .section-grid,
    .story,
    .finds,
    .factors,
    .services,
    .request,
    .faq {
        padding-top: 72px;
        padding-bottom: 72px
    }

    .section-grid {
        gap: 24px
    }

    .story-row {
        margin: 56px 0
    }

    .native-article {
        margin: 72px auto
    }

    .find-card,
    .find-card.tall,
    .find-card.wide {
        grid-template-columns: 1fr
    }

    .factor-grid {
        grid-template-columns: 1fr
    }

    .factor-grid article:nth-child(n) {
        grid-column: 1
    }

    .process {
        margin: 0 20px
    }

    .process-visual {
        min-height: 380px
    }

    .request-form {
        grid-template-columns: 1fr
    }

    .request-form .full {
        grid-column: 1
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-links {
        gap: 16px
    }

    .thanks-steps {
        grid-template-columns: 1fr
    }
}

.documentation-row {
    align-items: stretch
}

.documentation-row .media {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto
}

.documentation-row .prose {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch
}

.documentation-row .prose p:first-child {
    margin-top: 0
}

.documentation-row .prose p:last-child {
    margin-bottom: 0
}

.finds .masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 24px
}

.finds .find-card,
.finds .find-card.tall,
.finds .find-card.wide {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
    height: 100%
}

.finds .find-card .imgbox,
.finds .find-card.tall .imgbox,
.finds .find-card.wide .imgbox {
    aspect-ratio: 4/3;
    min-height: 0;
    height: auto
}

.finds .find-card figcaption {
    display: flex;
    flex-direction: column;
    min-height: 190px
}

.finds .find-card figcaption p {
    margin-bottom: 0
}

.finds .find-card figcaption strong {
    min-height: 2.4em
}

@media(max-width:1024px) {
    .finds .masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .finds .find-card,
    .finds .find-card.tall,
    .finds .find-card.wide {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr
    }

    .finds .find-card.tall .imgbox {
        min-height: 0
    }
}

@media(max-width:768px) {
    .documentation-row .media {
        aspect-ratio: 4/3;
        height: auto
    }

    .documentation-row .prose {
        display: block
    }

    .finds .masonry {
        grid-template-columns: 1fr
    }

    .finds .find-card figcaption {
        min-height: 0
    }

    .finds .find-card figcaption strong {
        min-height: 0
    }
}

.hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 480px)
}

.hero-visual {
    width: min(100%, 480px);
    justify-self: end
}

.finds .masonry {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto
}

.finds .find-card .imgbox,
.finds .find-card.tall .imgbox,
.finds .find-card.wide .imgbox {
    aspect-ratio: 16/9
}

@media(max-width:1024px) {
    .hero-visual {
        justify-self: center;
        width: min(100%, 520px)
    }

    .finds .masonry {
        max-width: 900px
    }
}

@media(max-width:768px) {
    .hero-visual {
        width: min(100%, 420px)
    }

    .finds .masonry {
        max-width: 560px
    }

    .finds .find-card .imgbox,
    .finds .find-card.tall .imgbox,
    .finds .find-card.wide .imgbox {
        aspect-ratio: 16/10
    }
}

/* hero width adjustment */
.hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 1.1fr);
    gap: clamp(24px, 4vw, 48px)
}

.hero-visual {
    width: 100%;
    max-width: 680px;
    justify-self: stretch;
    aspect-ratio: 6/5
}

@media(max-width:1200px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr)
    }

    .hero-visual {
        max-width: 560px;
        justify-self: end;
        aspect-ratio: 5/4
    }
}

@media(max-width:1024px) {
    .hero-visual {
        justify-self: center;
        width: min(100%, 520px);
        max-width: 520px;
        aspect-ratio: 4/5
    }
}

.cookie-banner {
    position: fixed;
    z-index: 1000;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 30px;
    background: rgba(248, 244, 236, .98);
    color: var(--color-text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 22px 50px rgba(33, 31, 26, .18);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner__content {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.cookie-banner__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    background: #ebe6da;
    border: 1px solid rgba(168, 111, 59, .35);
    border-radius: 50%;
}

.cookie-banner__icon svg {
    width: 27px;
    height: 27px;
}

.cookie-banner__text h2 {
    margin: 0 0 6px;
    font-family: "Newsreader", serif;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.05;
}

.cookie-banner__text p {
    max-width: 720px;
    margin: 0;
    color: var(--color-text-muted);
    font-size: .84rem;
    line-height: 1.55;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner__button {
    min-height: 48px;
    padding: 13px 19px;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    font: inherit;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: .25s;
}

.cookie-banner__button:hover {
    transform: translateY(-2px);
}

.cookie-banner__button--primary {
    background: var(--color-primary);
    color: #fff;
}

.cookie-banner__button--primary:hover {
    background: var(--color-dark);
}

.cookie-banner__button--secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--line);
}

.cookie-banner__button--secondary:hover {
    background: #ebe6da;
}

@media (max-width: 1024px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .cookie-banner__content {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 18px;
    }

    .cookie-banner__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 100%;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 22px;
    }

    .cookie-banner__content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cookie-banner__icon {
        width: 46px;
        height: 46px;
    }

    .cookie-banner__text h2 {
        font-size: 1.35rem;
    }

    .cookie-banner__text p {
        font-size: .8rem;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .cookie-banner__button {
        width: 100%;
        padding: 12px 8px;
        font-size: .76rem;
    }
}

@media (max-width: 460px) {
    .cookie-banner {
        padding: 20px;
    }

    .cookie-banner__actions {
        grid-template-columns: 1fr;
    }
}