@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap"); :root {
    --brown: #211713;
    --brown-soft: #34231d;
    --paper: var(--cream,#f5f0e4);
    --rose: var(--pink,#d7a0ad);
    --burgundy: var(--wine,#7a203c);
    --text: var(--ink,#2b211f);
    --line: rgba(43,33,31,.18);
    --white-line: rgba(255,255,255,.22);
    --serif: "Playfair Display",Georgia,serif;
    --sans: "DM Sans",Arial,sans-serif;
    --shell: min(1560px,calc(100vw - 96px));
    --header-h: 112px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--brown)
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility
}

body.menu-open {
    overflow: hidden
}

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

img {
    height: auto
}

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

button,input,textarea,select {
    font: inherit
}

button {
    color: inherit
}

.site-grain {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
    opacity: .075;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E")
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 4000;
    padding: 12px 18px;
    background: #fff;
    color: #111
}

.skip-link:focus {
    top: 12px
}

.shell {
    width: var(--shell);
    margin-inline:auto}

.section {
    position: relative;
    padding: clamp(100px,11vw,190px) 0
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .23em;
    line-height: 1.3;
    text-transform: uppercase
}

.kicker:before {
    width: 44px;
    height: 1px;
    background: currentColor;
    content: ""
}

.kicker.light {
    color: #fff
}

.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto
}

.icon-facebook {
    fill: currentColor;
    stroke: none
}

.icon-foursquare .cut {
    fill: var(--brown);
    stroke: none
}

.icon-instagram .fill {
    fill: currentColor;
    stroke: none
}

.icon-whatsapp .detail {
    stroke-width: 1.1
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 28px;
    border: 1px solid currentColor;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: .25s
}

.button:hover {
    transform: translateY(-2px)
}

.button-cream {
    color: var(--paper)
}

.button-cream:hover {
    color: var(--brown);
    background: var(--paper)
}

.button-dark {
    color: var(--paper);
    background: var(--brown);
    border-color: var(--brown)
}

.button-dark:hover {
    color: var(--brown);
    background: transparent
}

.button-pink {
    color: var(--brown);
    background: var(--rose);
    border-color: var(--rose)
}

.button-outline {
    color: var(--brown);
    background: transparent
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase
}

.text-link .icon {
    transition: transform .25s
}

.text-link:hover .icon {
    transform: translate(4px,-4px)
}

/* Header and menu */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1600;
    height: var(--header-h);
    display: grid;
    grid-template-columns: 170px 1fr auto;
    align-items: center;
    padding: 14px 42px;
    color: #fff;
    transition: height .35s,background .35s,box-shadow .35s
}

.site-header.is-scrolled {
    height: 84px;
    background: rgba(33,23,19,.96);
    box-shadow: 0 1px 0 rgba(255,255,255,.12)
}

.brand {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 84px;
    display: flex;
    align-items: center
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.16))
}

.site-header.is-scrolled .brand {
    height: 62px;
    width: 106px
}

.header-signature {
    justify-self: center;
    max-width: 420px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    white-space: nowrap
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    z-index: 2
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 13px
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 28px;
    min-height: 28px;
    justify-content: center;
    transition: .2s
}

.social-link:hover {
    opacity: .65;
    transform: translateY(-2px)
}

.header-socials .icon {
    width: 17px;
    height: 17px
}

.call-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .16em
}

.call-link .icon {
    width: 16px;
    height: 16px
}

.menu-toggle {
    width: 92px;
    height: 48px;
    display: grid;
    grid-template-columns: 22px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    column-gap: 10px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(33,23,19,.08);
    padding: 10px 13px;
    cursor: pointer
}

.menu-toggle span {
    width: 22px;
    height: 1px;
    background: currentColor;
    grid-column: 1;
    transition: transform .3s
}

.menu-toggle span:first-child {
    align-self: end;
    margin-bottom: 4px
}

.menu-toggle span:nth-child(2) {
    align-self: start;
    margin-top: 4px
}

.menu-toggle b {
    grid-column: 2;
    grid-row: 1/3;
    font-size: 9px;
    letter-spacing: .12em
}

.menu-toggle.is-open span:first-child {
    transform: translateY(5px) rotate(45deg)
}

.menu-toggle.is-open span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg)
}

.primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(250px,.62fr) minmax(480px,1.38fr);
    align-items: center;
    gap: clamp(40px,7vw,140px);
    padding: max(125px,13vh) clamp(42px,8vw,150px) 60px;
    color: #fff;
    background: var(--brown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
    pointer-events: none;
    overflow-y: auto;
    transition: opacity .35s,visibility .35s,transform .45s cubic-bezier(.22,.61,.36,1)
}

.primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto
}

.nav-intro {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5vh;
    border-right: 1px solid var(--white-line)
}

.nav-intro span {
    font-size: 10px;
    letter-spacing: .24em
}

.nav-intro strong {
    margin-top: 20px;
    font-family: var(--serif);
    font-size: clamp(54px,6vw,112px);
    font-weight: 500;
    line-height: .86
}

.primary-nav>ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: nav
}

.primary-nav>ul>li {
    position: relative;
    counter-increment: nav;
    border-bottom: 1px solid var(--white-line)
}

.primary-nav>ul>li>a {
    min-height: 76px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    position: relative;
    font-family: var(--serif);
    font-size: clamp(30px,3.5vw,64px);
    line-height: 1
}

.primary-nav>ul>li>a:before {
    content: counter(nav,decimal-leading-zero);
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .16em
}

.primary-nav>ul>li>a:after {
    position: absolute;
    right: 0;
    content: "↗";
    font-family: var(--sans);
    font-size: 19px;
    opacity: .35;
    transition: .25s
}

.primary-nav>ul>li>a:hover:after {
    transform: translate(4px,-4px);
    opacity: 1
}

.nav-visual {
    position: fixed;
    right: 4vw;
    bottom: 4vh;
    width: min(24vw,380px);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    pointer-events: none
}

.nav-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.nav-visual figcaption {
    margin-top: 7px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.primary-nav>ul>li>a:hover .nav-visual {
    opacity: 1;
    visibility: visible;
    transform: none
}

.submenu-toggle {
    position: absolute;
    right: 42px;
    top: 27px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 20px
}

.submenu {
    display: none;
    margin: 0 0 24px 48px;
    padding: 0;
    list-style: none
}

.has-submenu.is-open>.submenu {
    display: grid;
    gap: 9px
}

.submenu a {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    letter-spacing: .08em
}

.mobile-nav-foot {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    font-size: 11px;
    letter-spacing: .09em
}

.mobile-nav-foot>a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: auto
}

/* Home hero */
.hero-slider {
    height: 100svh;
    min-height: 680px;
    position: relative;
    color: #fff;
    background: var(--brown);
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center;
    transition: opacity 1s,transform 7s linear,visibility 1s
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(24,15,12,.46),rgba(24,15,12,.18) 42%,rgba(24,15,12,.75))
}

.hero-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(800px,calc(100vw - 64px));
    text-align: center;
    transform: translate(-50%,-45%)
}

.hero-copy .kicker {
    justify-content: center
}

.hero-copy h1 {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(54px,5vw,132px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.045em
}

.hero-copy p {
    max-width: 600px;
    margin: 30px auto 35px;
    font-size: clamp(14px,1.2vw,18px);
    font-weight: 300
}

.hero-word {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: -3.5vw;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: clamp(112px,20vw,390px);
    font-weight: 500;
    line-height: .75;
    letter-spacing: -.095em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.52);
    white-space: nowrap;
    pointer-events: none
}

.hero-rail {
    position: absolute;
    z-index: 4;
    left: 42px;
    right: 42px;
    bottom: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 10px;
    letter-spacing: .18em
}

.hero-rail b {
    font-weight: 400
}

.hero-rail>div {
    justify-self: end;
    display: flex;
    gap: 8px
}

.hero-rail button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: #fff;
    cursor: pointer
}

.chapter-dock {
    position: fixed;
    right: 17px;
    top: 50%;
    z-index: 850;
    display: flex;
    flex-direction: column;
    gap: 7px;
    transform: translateY(-50%);
    mix-blend-mode: difference;
    color: #fff
}

.chapter-dock a {
    display: grid;
    grid-template-columns: 24px 0fr;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    overflow: hidden;
    white-space: nowrap;
    transition: grid-template-columns .3s
}

.chapter-dock a:hover,.chapter-dock a.is-active {
    grid-template-columns: 24px 70px
}

.chapter-dock b {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .08em
}

.chapter-dock span {
    overflow: hidden;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.ticker {
    overflow: hidden;
    color: var(--paper);
    background: var(--burgundy);
    border-block:1px solid rgba(255,255,255,.14)}

.ticker>div {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px 0;
    animation: ticker 35s linear infinite
}

.ticker span {
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic
}

.ticker i {
    color: var(--rose);
    font-style: normal
}

@keyframes ticker {
    to {
        transform: translateX(-50%)
    }
}

/* Chapters */
.chapter {
    isolation: isolate;
    scroll-margin-top: 80px
}

.chapter-number {
    position: absolute;
    z-index: -1;
    top: .02em;
    left: 1.4vw;
    color: rgba(43,33,31,.055);
    font-family: var(--serif);
    font-size: clamp(160px,27vw,520px);
    font-weight: 500;
    line-height: .8;
    letter-spacing: -.08em;
    pointer-events: none
}

.editorial {
    min-height: 100svh;
    display: flex;
    align-items: center
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
    align-items: center;
    gap: clamp(50px,9vw,150px)
}

.editorial-grid.reverse {
    grid-template-columns: minmax(320px,.92fr) minmax(0,1.08fr)
}

.editorial-grid.reverse .editorial-image {
    order: 2
}

.editorial-image {
    position: relative;
    margin: 0
}

.editorial-image:before {
    position: absolute;
    left: -25px;
    top: 8%;
    width: 38%;
    aspect-ratio: 4/5;
    border: 1px solid var(--rose);
    content: "";
    transform: translate(-8%,-8%)
}

.editorial-image img {
    width: 100%;
    height: clamp(520px,68vw,890px);
    object-fit: cover;
    position: relative;
    filter: saturate(.86)
}

.editorial-image span {
    position: absolute;
    right: -32px;
    bottom: 12%;
    writing-mode: vertical-rl;
    color: var(--burgundy);
    font-size: 10px;
    letter-spacing: .35em
}

.editorial-copy {
    max-width: 650px
}

.editorial-copy h2,.section-heading h2,.film-copy h2,.faq-grid h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(52px,6.6vw,116px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.045em
}

.editorial-copy p {
    max-width: 560px;
    margin: 35px 0;
    font-size: clamp(17px,1.4vw,23px);
    font-weight: 300;
    line-height: 1.65
}

.signature {
    color: var(--paper);
    background: var(--burgundy)
}

.signature .chapter-number {
    color: rgba(255,255,255,.055);
    left: auto;
    right: 2vw
}

.signature .editorial-image:before {
    border-color: rgba(255,255,255,.42)
}

.signature .editorial-image span {
    color: #fff
}

.signature .editorial-copy h2 {
    font-style: italic
}

/* Products */
.products {
    background: var(--paper)
}

.products .chapter-number {
    top: 80px
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(270px,.8fr);
    gap: 80px;
    align-items: end;
    margin-bottom: clamp(75px,10vw,160px)
}

.section-heading p {
    max-width: 470px;
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 300
}

.product-rows {
    display: grid;
    gap: clamp(120px,16vw,260px)
}

.product-row {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(290px,.85fr);
    align-items: center;
    gap: clamp(45px,9vw,150px)
}

.product-row.is-reverse {
    grid-template-columns: minmax(290px,.85fr) minmax(0,1.15fr)
}

.product-row.is-reverse .product-image {
    order: 2
}

.product-image {
    position: relative;
    display: block;
    overflow: hidden
}

.product-image:after {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.4);
    content: "";
    pointer-events: none
}

.product-image img {
    width: 100%;
    height: clamp(450px,58vw,810px);
    object-fit: cover;
    transition: transform 1.2s,filter .5s
}

.product-image:hover img {
    transform: scale(1.035);
    filter: saturate(1.08)
}

.product-copy {
    position: relative;
    max-width: 590px;
    padding-top: 72px
}

.product-no {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--burgundy);
    font-size: 10px;
    letter-spacing: .2em
}

.product-no:after {
    display: inline-block;
    width: 52px;
    height: 1px;
    margin-left: 16px;
    background: var(--burgundy);
    vertical-align: middle;
    content: ""
}

.product-copy h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px,5.4vw,98px);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.045em
}

.product-copy p {
    margin: 30px 0 35px;
    font-size: clamp(16px,1.25vw,20px);
    font-weight: 300
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: clamp(90px,12vw,180px)
}

.natural {
    height: 100svh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden
}

.natural>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82)
}

.natural:after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(18,12,10,.1),rgba(18,12,10,.7));
    content: ""
}

.natural-copy {
    position: relative;
    z-index: 1;
    width: min(900px,calc(100vw - 96px));
    margin: 0 0 8vw 7vw
}

.natural-copy h2 {
    max-width: 900px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(64px,9vw,160px);
    font-weight: 500;
    font-style: italic;
    line-height: .85;
    letter-spacing: -.055em
}

.natural-copy p {
    max-width: 570px;
    margin-top: 30px;
    font-size: 18px
}

/* Gallery */
.gallery-section {
    color: var(--paper);
    background: var(--brown)
}

.gallery-section .chapter-number {
    color: rgba(255,255,255,.05)
}

.gallery-section .section-heading .kicker {
    color: var(--rose)
}

.gallery-section .section-heading p {
    color: rgba(255,255,255,.7)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 12px
}

.gallery-card {
    position: relative;
    min-height: 300px;
    display: block;
    overflow: hidden;
    background: #120d0b
}

.gallery-card:nth-child(6n+1),.gallery-card:nth-child(6n+4) {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 610px
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: .92;
    transition: .8s
}

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

.gallery-card span {
    position: absolute;
    z-index: 1;
    left: 18px;
    bottom: 16px;
    right: 18px;
    color: #fff;
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase
}

.gallery-card:hover img {
    transform: scale(1.045);
    opacity: 1
}

.heritage-quote {
    padding: clamp(120px,16vw,260px) 0;
    text-align: center;
    background: var(--rose)
}

.heritage-quote span {
    display: block;
    font-family: var(--serif);
    font-size: 84px;
    line-height: .4
}

.heritage-quote blockquote {
    max-width: 1200px;
    margin: 40px auto;
    font-family: var(--serif);
    font-size: clamp(43px,6vw,105px);
    font-style: italic;
    line-height: .98;
    letter-spacing: -.04em
}

.heritage-quote small {
    font-size: 10px;
    letter-spacing: .25em
}

.gallery-strip {
    background: var(--paper)
}

.gallery-lower .gallery-card {
    min-height: 330px
}

.gallery-lower .gallery-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1
}

.gallery-all {
    margin-top: 40px
}

/* FAQ/contact/footer */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
    gap: clamp(60px,9vw,150px)
}

.accordion {
    border-top: 1px solid var(--line)
}

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

.accordion summary {
    list-style: none;
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    gap: 10px;
    align-items: center;
    padding: 27px 0;
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(22px,2.2vw,34px)
}

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

.accordion summary span {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .12em
}

.accordion summary b {
    font-family: var(--sans);
    font-weight: 300;
    transition: transform .25s
}

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

.accordion details>div {
    padding: 0 0 30px 48px;
    color: rgba(43,33,31,.75)
}

.contact-stage {
    position: relative;
    padding: clamp(100px,12vw,200px) 0;
    color: #fff;
    background: var(--burgundy);
    scroll-margin-top: 80px
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(290px,.82fr) minmax(0,1.18fr);
    gap: clamp(60px,9vw,150px)
}

.contact-copy h2 {
    max-width: 670px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(58px,7vw,124px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.05em
}

.contact-copy>p {
    max-width: 480px;
    margin: 30px 0;
    font-weight: 300
}

.contact-phone {
    display: inline-block;
    margin: 12px 0 20px;
    border-bottom: 1px solid;
    font-family: var(--serif);
    font-size: clamp(28px,3vw,48px)
}

.contact-copy address {
    font-style: normal;
    color: rgba(255,255,255,.72)
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px
}

.footer-socials .social-link {
    justify-content: flex-start;
    min-width: max-content;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.contact-panel {
    padding: clamp(28px,5vw,70px);
    color: var(--brown);
    background: var(--paper)
}

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

.form-grid label {
    display: grid;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase
}

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

.form-grid input,.form-grid select,.form-grid textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 13px 0;
    color: var(--brown);
    background: transparent;
    outline: none;
    text-transform: none
}

.form-grid textarea {
    resize: vertical
}

.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus {
    border-color: var(--burgundy)
}

.consent {
    grid-template-columns: 20px 1fr!important;
    align-items: start;
    text-transform: none!important;
    letter-spacing: 0!important
}

.consent input {
    width: 16px
}

.form-actions {
    display: flex!important;
    flex-direction: row;
    align-items: center;
    gap: 20px!important
}

.form-actions small {
    opacity: .62;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none
}

.hp-field {
    position: absolute!important;
    left: -9999px!important
}

.form-notice {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(215,160,173,.22)
}

.site-footer {
    padding: 80px 0 26px;
    color: var(--paper);
    background: var(--brown)
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .75fr .9fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 70px
}

.footer-logo {
    width: min(340px,85%);
    height: 190px;
    display: flex;
    align-items: center
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center
}

.footer-label {
    display: block;
    margin-bottom: 20px;
    color: var(--rose);
    font-size: 9px;
    letter-spacing: .2em
}

.footer-main ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-main li,.footer-main>div>a,.footer-main p {
    display: block;
    margin: 0 0 11px;
    color: rgba(255,255,255,.72);
    font-size: 13px
}

.footer-main .submenu {
    margin: 8px 0 12px 15px
}

.footer-bottom {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 24px;
    border-top: 1px solid var(--white-line);
    color: rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: .05em
}

.designer-credit {
    display: grid;
    grid-template-columns: auto 132px auto;
    align-items: center;
    gap: 12px
}

.designer-credit img {
    width: 132px;
    height: 40px;
    object-fit: contain
}

.designer-credit strong {
    color: #fff;
    font-weight: 500
}

.mobile-contact {
    display: none
}

/* Inner pages */
.page-hero {
    height: 92svh;
    min-height: 660px;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: var(--brown) var(--hero-image) center/cover no-repeat;
    overflow: hidden
}

.page-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(20,12,10,.35),rgba(20,12,10,.75))
}

.page-hero-copy {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(70px,9vw,140px)
}

.page-hero-copy h1 {
    max-width: 1080px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(68px,6vw,128px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -.06em
}

.page-hero-copy p {
    max-width: 680px;
    margin: 30px 0 0;
    font-size: clamp(16px,1.4vw,21px);
    font-weight: 300
}

.vertical-word {
    position: absolute;
    z-index: 1;
    right: 31px;
    bottom: 8%;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: .28em
}

.film-grid {
    display: grid;
    grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
    gap: clamp(50px,8vw,130px);
    align-items: center
}

.film-copy h2 {
    font-size: clamp(50px,5.5vw,92px)
}

.film-copy p {
    max-width: 480px;
    font-size: 18px
}

.film-frame {
    max-width: 680px;
    margin-inline:auto;padding: 16px;
    background: var(--rose)
}

.film-frame video {
    width: 100%;
    max-height: 760px;
    object-fit: contain;
    background: #000
}

.story-page {
    display: grid;
    grid-template-columns: minmax(250px,.64fr) minmax(0,1.36fr);
    gap: clamp(50px,10vw,160px);
    align-items: start
}

.story-page aside {
    display: grid;
    gap: 40px;
    position: sticky;
    top: 110px
}

.story-page aside img {
    width: 100%;
    max-height: 540px;
    object-fit: cover
}

.prose {
    max-width: 850px
}

.prose h2 {
    margin: 1.2em 0 .45em;
    font-family: var(--serif);
    font-size: clamp(40px,5vw,82px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.035em
}

.prose h2:first-child {
    margin-top: 0
}

.prose h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500
}

.prose p,.prose li {
    font-size: clamp(17px,1.25vw,20px);
    font-weight: 300;
    line-height: 1.8
}

.prose figure {
    margin: 65px 0
}

.prose figure img {
    width: 100%;
    max-height: 750px;
    object-fit: cover
}

.prose figcaption {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: .08em
}

.prose blockquote {
    margin: 70px 0;
    padding-left: 35px;
    border-left: 2px solid var(--rose);
    font-family: var(--serif);
    font-size: clamp(34px,4vw,60px);
    font-style: italic;
    line-height: 1.15
}

.gallery-full {
    grid-template-columns: repeat(4,minmax(0,1fr))
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 70px 28px
}

.video-grid iframe,.video-grid article>img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 0
}

.video-grid h2 {
    margin: 20px 0 8px;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500
}

.video-grid p {
    margin: 0;
    color: rgba(43,33,31,.7)
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
    gap: clamp(55px,9vw,140px);
    align-items: start
}

.contact-card {
    position: sticky;
    top: 110px;
    padding: 42px;
    color: var(--paper);
    background: var(--burgundy)
}

.contact-card>span {
    font-size: 9px;
    letter-spacing: .2em
}

.contact-card h2 {
    margin: 18px 0;
    font-family: var(--serif);
    font-size: 45px;
    font-weight: 500;
    line-height: 1
}

.contact-card .button {
    width: 100%;
    margin-top: 10px
}

.custom-fields {
    margin-top: 60px
}

.custom-fields>div {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    padding: 16px 0;
    border-top: 1px solid var(--line)
}

.custom-fields dt {
    font-weight: 600
}

.custom-fields dd {
    margin: 0
}

.empty-state {
    grid-column: 1/-1;
    padding: 80px;
    text-align: center;
    border: 1px solid var(--line)
}

.not-found {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 24px;
    text-align: center
}

.not-found>span {
    color: var(--rose);
    font-family: var(--serif);
    font-size: clamp(130px,25vw,410px);
    line-height: .7
}

.not-found h1 {
    font-family: var(--serif);
    font-size: clamp(42px,6vw,90px);
    font-weight: 500
}

/* Overlays */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2400;
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    align-items: center;
    padding: 30px;
    color: #fff;
    background: rgba(18,12,10,.96)
}

.lightbox[hidden] {
    display: none
}

.lightbox figure {
    margin: 0;
    text-align: center
}

.lightbox img {
    max-width: 100%;
    max-height: 82vh;
    margin: auto;
    object-fit: contain
}

.lightbox figcaption {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.lightbox button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 40px
}

.lightbox [data-lightbox-close] {
    position: absolute;
    top: 22px;
    right: 28px
}

.cookie-panel {
    position: fixed;
    z-index: 2300;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 980px;
    margin: auto;
    padding: 20px 24px;
    color: #fff;
    background: var(--brown);
    box-shadow: 0 15px 50px rgba(0,0,0,.25)
}

.cookie-panel p {
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,.7)
}

.cookie-panel button {
    padding: 10px 14px;
    border: 1px solid var(--white-line);
    color: #fff;
    background: transparent;
    cursor: pointer
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s,transform .85s cubic-bezier(.22,.61,.36,1)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@media(max-width: 1100px) {
    :root {
        --shell:min(100% - 56px,1100px)
    }

    .site-header {
        grid-template-columns: 130px 1fr auto;
        padding-inline:28px}

    .header-signature {
        display: none
    }

    .site-header .brand {
        grid-column: 1
    }

    .header-tools {
        grid-column: 3
    }

    .primary-nav {
        grid-template-columns: .55fr 1.45fr;
        padding-inline:50px}

    .nav-visual {
        display: none
    }

    .chapter-dock {
        display: none
    }

    .gallery-grid {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .gallery-card:nth-child(6n+1),.gallery-card:nth-child(6n+4) {
        grid-column: span 2
    }
}

@media(max-width: 820px) {
    :root {
        --shell:calc(100vw - 36px);
        --header-h: 86px
    }

    body {
        padding-bottom: 62px
    }

    .site-header,.site-header.is-scrolled {
        height: 86px;
        grid-template-columns: 100px 1fr;
        padding: 9px 18px;
        background: rgba(33,23,19,.92)
    }

    .brand,.site-header.is-scrolled .brand {
        width: 94px;
        height: 66px
    }

    .header-tools {
        grid-column: 2;
        justify-self: end;
        gap: 10px
    }

    .header-socials,.call-link {
        display: none
    }

    .menu-toggle {
        width: 92px;
        height: 46px
    }

    .primary-nav {
        z-index: 1;
        display: block;
        padding: 110px 18px max(34px,env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain
    }

    .nav-intro {
        display: none
    }

    .primary-nav>ul>li>a {
        min-height: 64px;
        grid-template-columns: 38px 1fr;
        padding-right: 38px;
        font-size: clamp(29px,9vw,48px)
    }

    .primary-nav>ul>li>a:after {
        font-size: 15px
    }

    .submenu-toggle {
        right: 2px;
        top: 18px
    }

    .submenu {
        margin: 0 0 20px 38px
    }

    .mobile-nav-foot {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 8px;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid var(--white-line)
    }

    .mobile-nav-foot .social-link {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px 2px;
        border: 1px solid var(--white-line);
        font-size: 8px
    }

    .mobile-nav-foot .social-link .icon {
        width: 20px;
        height: 20px
    }

    .mobile-nav-foot>a:last-child {
        grid-column: 1/-1;
        width: 100%;
        min-height: 48px;
        justify-content: center;
        margin-left: 0;
        border: 1px solid var(--white-line)
    }

    .hero-slider {
        min-height: 610px
    }

    .hero-copy {
        width: calc(100vw - 36px);
        transform: translate(-50%,-44%)
    }

    .hero-copy h1 {
        font-size: clamp(49px,16vw,78px);
        line-height: .92
    }

    .hero-copy p {
        max-width: 90%;
        margin-block:22px 26px;font-size: 14px
    }

    .hero-copy .button {
        min-height: 48px
    }

    .hero-word {
        bottom: 35px;
        font-size: 27vw
    }

    .hero-rail {
        left: 18px;
        right: 18px;
        bottom: 14px;
        grid-template-columns: 1fr auto
    }

    .hero-rail>span {
        display: none
    }

    .ticker>div {
        padding: 13px 0
    }

    .section {
        padding: 90px 0
    }

    .chapter-number {
        font-size: 45vw
    }

    .editorial {
        min-height: 0
    }

    .editorial-grid,.editorial-grid.reverse {
        grid-template-columns: 1fr;
        gap: 58px
    }

    .editorial-grid.reverse .editorial-image {
        order: 0
    }

    .editorial-image {
        width: calc(100% - 18px)
    }

    .editorial-image:before {
        left: 0;
        width: 52%;
        transform: translate(-10px,-12px)
    }

    .editorial-image img {
        height: min(128vw,650px)
    }

    .editorial-image span {
        right: -18px
    }

    .editorial-copy h2,.section-heading h2,.film-copy h2,.faq-grid h2 {
        font-size: clamp(48px,14vw,74px)
    }

    .editorial-copy p {
        font-size: 17px
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 72px
    }

    .product-rows {
        gap: 100px
    }

    .product-row,.product-row.is-reverse {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .product-row.is-reverse .product-image {
        order: 0
    }

    .product-image img {
        height: min(125vw,620px)
    }

    .product-copy {
        padding-top: 50px
    }

    .product-copy h3 {
        font-size: clamp(46px,14vw,72px)
    }

    .center-action {
        margin-top: 80px
    }

    .natural {
        min-height: 620px
    }

    .natural-copy {
        width: calc(100vw - 36px);
        margin: 0 18px 70px
    }

    .natural-copy h2 {
        font-size: clamp(54px,17vw,88px)
    }

    .gallery-grid,.gallery-full {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 8px
    }

    .gallery-card {
        min-height: 48vw
    }

    .gallery-card:nth-child(6n+1),.gallery-card:nth-child(6n+4) {
        grid-column: span 2;
        min-height: 96vw
    }

    .gallery-lower .gallery-card:nth-child(n) {
        min-height: 52vw
    }

    .heritage-quote blockquote {
        font-size: clamp(39px,11.5vw,66px)
    }

    .faq-grid,.contact-grid,.film-grid,.story-page,.content-layout {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .story-page aside,.contact-card {
        position: static
    }

    .story-page aside {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .story-page aside img {
        height: 58vw;
        object-fit: cover
    }

    .contact-stage {
        padding-bottom: 90px
    }

    .contact-copy h2 {
        font-size: clamp(53px,15vw,82px)
    }

    .contact-panel {
        padding: 28px 18px
    }

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

    .form-grid .full {
        grid-column: auto
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px
    }

    .footer-logo {
        grid-column: 1/-1;
        width: 220px;
        height: 132px
    }

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

    .designer-credit {
        grid-template-columns: auto 100px
    }

    .designer-credit strong {
        grid-column: 1/-1
    }

    .designer-credit img {
        width: 100px;
        height: 34px
    }

    .mobile-contact {
        position: fixed;
        z-index: 1450;
        inset: auto 0 0;
        height: 62px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-bottom: env(safe-area-inset-bottom);
        color: #fff;
        background: var(--brown);
        box-shadow: 0 -1px 0 var(--white-line)
    }

    .mobile-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-right: 1px solid var(--white-line);
        font-size: 11px;
        letter-spacing: .12em;
        text-transform: uppercase
    }

    .page-hero {
        min-height: 610px
    }

    .page-hero-copy {
        padding-bottom: 65px
    }

    .page-hero-copy h1 {
        font-size: clamp(58px,17vw,92px);
        line-height: .88
    }

    .vertical-word {
        display: none
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .lightbox {
        grid-template-columns: 38px 1fr 38px;
        padding: 12px
    }

    .cookie-panel {
        left: 10px;
        right: 10px;
        bottom: 72px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px
    }

    .cookie-panel>div:last-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }
}

@media(max-width: 430px) {
    .footer-main {
        grid-template-columns:1fr
    }

    .footer-logo {
        grid-column: auto
    }

    .gallery-card span {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 8px
    }

    .button {
        width: 100%;
        padding-inline:18px}

    .hero-copy .button,.text-link {
        width: auto
    }

    .custom-fields>div {
        grid-template-columns: 1fr;
        gap: 5px
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none
    }
}
