:root {
    color-scheme: light;
    --white: #fff;
    --black: #000;
    --charcoal: #171512;
    --cream: #fffaf1;
    --option-surface: #211f1b;
    --brand: #eb6a37;
    --brand-hover: #f47d4e;
    --brand-deep: #b8421f;
    --ink: #1b1a17;
    --ink-soft: #57534c;
    --paper: #f4f0e8;
    --paper-raised: #fffdf8;
    --paper-deep: #e7dfd1;
    --line: #cfc5b4;
    --inverse: var(--cream);
    --overlay: color-mix(in srgb, var(--ink) 58%, transparent);
    --shadow: 0 24px 70px color-mix(in srgb, var(--ink) 16%, transparent);
    --focus: #2a72d4;
    --font-display: "Segoe UI Variable Display", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
    --font-editorial: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
    --font-body: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --max-width: 1480px;
    --hero-max-width: 1800px;
    --gutter: clamp(1.25rem, 3.5vw, 5rem);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --ink: #f6f1e7;
    --ink-soft: #c4bdb0;
    --paper: #161513;
    --paper-raised: var(--option-surface);
    --paper-deep: #2c2822;
    --line: #4b443a;
    --inverse: var(--charcoal);
    --overlay: color-mix(in srgb, var(--black) 64%, transparent);
    --shadow: 0 24px 70px color-mix(in srgb, var(--black) 40%, transparent);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
select,
a {
    touch-action: manipulation;
}

button,
select {
    font: inherit;
}

button,
a,
select {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    transform: translateY(-160%);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    background: var(--paper-raised);
    color: var(--ink);
    font-weight: 700;
    transition: transform 180ms var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--cream);
    transition: background-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.scrolled,
.site-header.menu-active {
    background: color-mix(in srgb, var(--charcoal) 94%, transparent);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--white) 14%, transparent);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, var(--hero-max-width));
    min-height: 5.25rem;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 7.25rem;
    min-height: 3rem;
}

.brand img,
.footer-brand img {
    width: 8.75rem;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3.25rem);
}

.desktop-nav a,
.mobile-nav a {
    position: relative;
    text-decoration: none;
    font-size: clamp(1rem, 1vw, 1.08rem);
    font-weight: 650;
    letter-spacing: 0.025em;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;
    height: 1px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-select,
.icon-button {
    min-width: 2.75rem;
    min-height: 2.75rem;
    border: 1px solid color-mix(in srgb, var(--white) 32%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--white) 8%, transparent);
    color: var(--white);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.language-select:hover,
.icon-button:hover {
    border-color: color-mix(in srgb, var(--white) 62%, transparent);
    background: color-mix(in srgb, var(--white) 15%, transparent);
}

.language-select {
    width: 3.6rem;
    padding: 0 0.75rem;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 12px) 50%, calc(100% - 8px) 50%;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
    font-size: 0.74rem;
    font-weight: 750;
}

.language-select option {
    background: var(--option-surface);
    color: var(--white);
}

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 2.75rem;
    padding: 0;
}

.icon-button svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-icon-moon {
    display: none;
}

html[data-theme="dark"] .theme-icon-sun {
    display: none;
}

html[data-theme="dark"] .theme-icon-moon {
    display: block;
}

.menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    height: clamp(36rem, 72vh, 42rem);
    min-height: 36rem;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--cream);
}

.hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, var(--max-width));
    height: 100%;
    margin: 0 auto;
    padding: clamp(7.5rem, 13vh, 8.5rem) var(--gutter) clamp(2rem, 4vh, 3rem);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 2.25rem;
    height: 1px;
    background: currentColor;
}

.eyebrow-dark {
    color: var(--brand-deep);
}

.hero h1 {
    max-width: 9ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 5vw, 5.8rem);
    font-weight: 650;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.hero h1 span,
.hero h1 em {
    display: block;
}

.hero h1 span {
    text-wrap: balance;
}

.hero h1 em {
    color: var(--brand);
    font-family: var(--font-editorial);
    font-size: 0.88em;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.hero-lead {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: color-mix(in srgb, var(--cream) 84%, transparent);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease;
}

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

.button svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms var(--ease);
}

.button:hover svg {
    transform: translateX(0.2rem);
}

.button-primary {
    background: var(--brand);
    color: var(--charcoal);
}

.button-primary:hover {
    background: var(--brand-hover);
}

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

.button-dark:hover {
    background: var(--brand);
    color: var(--charcoal);
}

.text-link {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    color: var(--cream);
    text-underline-offset: 0.35rem;
    text-decoration-color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-signature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: clamp(1.75rem, 3vh, 2.5rem);
    color: color-mix(in srgb, var(--cream) 72%, transparent);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.signature-line {
    display: inline-block;
    width: 3rem;
    height: 1px;
    background: color-mix(in srgb, var(--cream) 35%, transparent);
}

.hero-visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--charcoal) 88%, transparent) 0%, color-mix(in srgb, var(--charcoal) 68%, transparent) 34%, color-mix(in srgb, var(--charcoal) 18%, transparent) 72%, transparent 100%),
        linear-gradient(0deg, color-mix(in srgb, var(--charcoal) 58%, transparent), transparent 58%);
    pointer-events: none;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transform: scale(1.01);
}

.hero-number {
    position: absolute;
    z-index: 2;
    top: 7.25rem;
    right: var(--gutter);
    color: color-mix(in srgb, var(--white) 74%, transparent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.hero-caption {
    position: absolute;
    z-index: 2;
    right: var(--gutter);
    bottom: 3.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--white);
}

.hero-caption span {
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-caption strong {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 320;
    line-height: 1;
}

.section-shell {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.intro {
    display: grid;
    grid-template-columns: 0.25fr 1.05fr 0.9fr;
    gap: clamp(2rem, 5vw, 6rem);
    padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section-index {
    padding-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.intro-heading h2,
.section-heading h2,
.stockists h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 3.8vw, 4.8rem);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1;
}

.intro-copy > p:first-child {
    margin: 2.15rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.pull-quote {
    margin: 2.25rem 0 0;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.55;
}

.craft-image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 20rem;
    max-height: 42rem;
    aspect-ratio: 1581 / 525;
    overflow: hidden;
    background: var(--charcoal);
}

.craft-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--overlay), transparent 62%);
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.craft-image-overlay {
    position: absolute;
    z-index: 2;
    right: var(--gutter);
    bottom: clamp(2rem, 5vw, 4.5rem);
    left: var(--gutter);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    color: var(--white);
}

.craft-image-overlay span,
.craft-image-overlay strong {
    font-family: var(--font-editorial);
    font-size: clamp(1.7rem, 2.4vw, 2.8rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.craft-image-overlay span {
    max-width: 12ch;
}

.craft-image-overlay strong {
    max-width: 13ch;
    text-align: right;
}

.collection {
    padding-block: clamp(4.5rem, 7vw, 7rem);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
    align-items: end;
    gap: 4rem;
}

.section-heading h2 {
    max-width: 18ch;
}

.section-heading > p {
    margin: 0;
    padding-bottom: 0.4rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    margin-top: clamp(2.5rem, 4vw, 4rem);
}

.product-card {
    border: 1px solid var(--line);
    background: var(--paper-raised);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--ink) 5%, transparent);
    transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.product-card:hover {
    transform: translateY(-0.45rem);
    box-shadow: var(--shadow);
}

.product-card-featured {
    transform: translateY(2.75rem);
}

.product-card-featured:hover {
    transform: translateY(2.3rem);
}

.product-image {
    position: relative;
    aspect-ratio: 16 / 8.2;
    overflow: hidden;
    background: var(--paper-deep);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms var(--ease);
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-edition {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem 0.65rem;
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-content {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.product-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.product-code {
    color: var(--brand-deep);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.product-heading h3 {
    margin: 0.35rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.6vw, 3rem);
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 1;
}

.material {
    padding-bottom: 0.2rem;
    color: var(--ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.96rem;
    font-style: italic;
}

.product-content > p {
    min-height: 5.1rem;
    margin: 1.5rem 0 0;
    color: var(--ink-soft);
}

.product-content dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.75rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.product-content dl div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-content dt {
    color: var(--ink-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-content dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
}

.values {
    margin-top: 1.5rem;
    padding-block: clamp(4rem, 7vw, 6.5rem);
    background: var(--charcoal);
    color: var(--cream);
}

.values-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--white) 16%, transparent);
}

.values-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4vw, 4.75rem);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.value-item {
    min-height: 15rem;
    padding: 2.25rem clamp(1.5rem, 3vw, 3.5rem) 1rem 0;
    border-right: 1px solid color-mix(in srgb, var(--white) 16%, transparent);
}

.value-item + .value-item {
    padding-left: clamp(1.5rem, 3vw, 3.5rem);
}

.value-item:last-child {
    border-right: 0;
}

.value-number {
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.value-item h3 {
    margin: 3.25rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.2vw, 2.4rem);
    font-weight: 650;
    letter-spacing: -0.035em;
}

.value-item p {
    max-width: 24rem;
    margin: 0.8rem 0 0;
    color: color-mix(in srgb, var(--cream) 65%, transparent);
}

.stockists {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.stockists-copy {
    max-width: 56rem;
}

.stockists h2 {
    max-width: 13ch;
}

.stockists-copy > p {
    max-width: 41rem;
    margin: 1.75rem 0 2rem;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.site-footer {
    background: var(--brand);
    color: var(--charcoal);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: clamp(3.5rem, 6vw, 5rem) var(--gutter) 2rem;
}

.footer-brand img {
    filter: brightness(0) saturate(100%);
}

.footer-brand p {
    max-width: 22rem;
    margin: 1.4rem 0 0;
    font-size: 0.95rem;
    font-weight: 650;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.footer-contact span {
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-contact a {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 650;
    text-underline-offset: 0.3rem;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--charcoal) 26%, transparent);
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .mobile-nav {
        position: fixed;
        inset: 5.25rem 0 0;
        display: grid;
        align-content: start;
        overflow-y: auto;
        background: var(--charcoal);
        border-top: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-1rem);
        transition: opacity 200ms ease, transform 200ms var(--ease), visibility 200ms;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav a {
        min-height: 4rem;
        display: flex;
        align-items: center;
        padding: 0 var(--gutter);
        border-bottom: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
        color: var(--white);
    }

    .hero {
        height: 38rem;
        min-height: 38rem;
    }

    .hero-copy {
        min-height: 0;
        padding-top: 7.5rem;
    }

    .hero-visual {
        min-height: 0;
    }

    .intro {
        grid-template-columns: 0.2fr 1fr;
    }

    .intro-copy {
        grid-column: 2;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-heading > p {
        max-width: 42rem;
    }

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

    .value-item,
    .value-item + .value-item {
        min-height: auto;
        padding: 2rem 0;
        border-right: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--white) 16%, transparent);
    }

    .value-item:last-child {
        border-bottom: 0;
    }

    .value-item h3 {
        margin-top: 2.5rem;
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .hero-copy {
        padding-inline: var(--gutter);
    }

    .hero h1 {
        font-size: clamp(4rem, 6vw, 4.75rem);
    }

    .hero-lead {
        font-size: 1rem;
    }
}

@media (max-width: 720px) {
    :root {
        --gutter: 1.25rem;
    }

    .nav-shell {
        min-height: 4.75rem;
    }

    .brand img {
        width: 7.25rem;
    }

    .language-select,
    .icon-button {
        min-width: 2.65rem;
        min-height: 2.65rem;
    }

    .language-select {
        width: 3.25rem;
        padding-left: 0.6rem;
    }

    .mobile-nav {
        inset-block-start: 4.75rem;
    }

    .hero-copy {
        min-height: 0;
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: clamp(3.35rem, 15.5vw, 4.6rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0.85rem;
    }

    .text-link {
        justify-content: center;
    }

    .hero-signature {
        margin-top: 2rem;
    }

    .hero-number,
    .hero-caption {
        display: none;
    }

    .hero-number {
        top: 1.5rem;
    }

    .hero-caption {
        bottom: 1.75rem;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-block: 4rem;
    }

    .intro-copy {
        grid-column: auto;
    }

    .intro-copy > p:first-child {
        margin-top: 0.5rem;
    }

    .craft-image {
        height: auto;
        min-height: 12rem;
        max-height: none;
        aspect-ratio: 1581 / 525;
    }

    .craft-image-overlay {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
        bottom: 1.25rem;
    }

    .craft-image-overlay strong {
        text-align: left;
    }

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

    .product-card-featured,
    .product-card-featured:hover {
        transform: none;
    }

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

    .product-content > p {
        min-height: auto;
    }

    .values {
        margin-top: 0;
    }

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

    .stockists {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        align-items: flex-start;
        margin-top: 2rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 390px) {
    .nav-actions {
        gap: 0.3rem;
    }

    .theme-toggle {
        display: none;
    }

    .hero {
        height: 39rem;
        min-height: 39rem;
    }

    .hero h1 {
        font-size: 3.35rem;
    }

    .product-content dl {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

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