:root {
    --ink: #14100c;
    --ink-2: #1d1610;
    --ink-glass: rgba(20, 16, 12, 0.78);
    --cream: #f3ecdf;
    --cream-2: #eae1cf;
    --foam: #f8f3e9;
    --crema: #e2793f;
    --crema-deep: #b95a24;
    --moss: #33473b;
    --muted: #8a7a68;
    --muted-dark: #a4937f;
    --line: rgba(20, 16, 12, 0.12);
    --line-soft: rgba(248, 243, 233, 0.16);
    --shadow: 0 30px 70px -30px rgba(20, 16, 12, 0.5);
    --r: 22px;
    --wrap: 1240px;
    --space: clamp(5rem, 3.5rem + 8vw, 11rem);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Instrument Sans", system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
::selection {
    background: var(--crema);
    color: var(--ink);
}
:focus-visible {
    outline: 3px solid var(--crema);
    outline-offset: 3px;
    border-radius: 4px;
}

.wrap {
    width: min(100% - 3rem, var(--wrap));
    margin-inline: auto;
}

/* film grain over everything, very light */
.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 99;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--crema-deep);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}
.on-dark .eyebrow {
    color: var(--crema);
}
.display {
    font-family: "Fraunces", serif;
    font-weight: 380;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}
.display em {
    font-style: italic;
    font-weight: 340;
    color: var(--crema);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.95rem 1.7rem;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.3s var(--ease-out),
        background 0.3s,
        color 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}
.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}
.btn:hover svg {
    transform: translateX(4px);
}
.btn-primary {
    background: var(--crema);
    color: var(--ink);
    box-shadow: 0 16px 40px -16px var(--crema-deep);
}
.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--foam);
}
.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
}
.btn-ghost:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
}
.on-dark .btn-ghost {
    border-color: var(--line-soft);
    color: var(--foam);
}
.on-dark .btn-ghost:hover {
    border-color: var(--foam);
}

/* ---- custom cursor (desktop only) ---- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 200;
    border-radius: 50%;
    display: none;
    visibility: hidden;
}
body.cursor-live .cursor-dot,
body.cursor-live .cursor-ring {
    visibility: visible;
}
.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--crema);
}
.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--crema);
    opacity: 0.5;
    transition:
        width 0.35s var(--ease-out),
        height 0.35s var(--ease-out),
        opacity 0.35s;
}
.cursor-ring.is-hover {
    width: 64px;
    height: 64px;
    opacity: 0.9;
}
@media (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
    }
}
@media (prefers-reduced-motion: reduce) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ---- promo bar ---- */
/* Amabrik Banner widget could replace this static bar. */
.promo {
    background: var(--ink);
    color: var(--foam);
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    padding: 0.65rem 1rem;
    position: relative;
    z-index: 60;
}
.promo b {
    color: var(--crema);
    font-weight: 600;
}

/* ---- header ---- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    transition:
        background 0.4s,
        border-color 0.4s,
        backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: var(--foam);
}
header.scrolled {
    background: var(--ink-glass);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom-color: var(--line-soft);
}
/* pull the hero up under the transparent header */
header {
    margin-bottom: -74px;
}
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 74px;
}
.nav-progress {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--crema),
        var(--crema-deep)
    );
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}
.brand {
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    font-weight: 480;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.brand .mark {
    width: 28px;
    height: 28px;
}
.nav-links {
    display: flex;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.35rem;
    border-radius: 100px;
    border: 1px solid var(--line-soft);
    background: rgba(20, 16, 12, 0.35);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav-links a {
    padding: 0.5rem 1.05rem;
    border-radius: 100px;
    opacity: 0.85;
    transition:
        background 0.3s,
        opacity 0.3s;
}
.nav-links a:hover {
    opacity: 1;
    background: rgba(248, 243, 233, 0.1);
}
.nav-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
}
.nav-cta .btn {
    padding: 0.7rem 1.35rem;
    font-size: 0.88rem;
}
header .btn-ghost {
    border-color: var(--line-soft);
    color: var(--foam);
}
header .btn-ghost:hover {
    border-color: var(--foam);
}
@media (max-width: 860px) {
    .nav {
        display: flex;
        justify-content: space-between;
    }
    .nav-links,
    .nav-cta .btn-ghost {
        display: none;
    }
}

/* ---- hero ---- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    color: var(--foam);
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg img {
    position: absolute;
    left: 0;
    width: 100%;
    top: -12%;
    height: 112%;
    object-fit: cover;
    transform-origin: center;
    will-change: transform;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(20, 16, 12, 0.62) 0%,
            rgba(20, 16, 12, 0.28) 42%,
            rgba(20, 16, 12, 0.85) 100%
        );
}
.hero-inner {
    position: relative;
    padding-top: clamp(6rem, 10vh, 8rem);
    padding-bottom: clamp(1.2rem, 2.5vh, 2.2rem);
}
.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hero-tag {
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-dark);
}
.hero-title {
    font-size: clamp(3.2rem, 1.6rem + 6.6vw, 7rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 1.3rem 0 1.6rem;
}
.hero-title .w {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.09em;
    margin-bottom: -0.09em;
}
.hero-title .wi {
    display: inline-block;
    will-change: transform;
}
.hero-chip {
    height: 0.66em;
    width: 1.55em;
    object-fit: cover;
    border-radius: 100px;
    vertical-align: -0.04em;
    border: 1px solid var(--line-soft);
}
.hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero p.lead {
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
    color: rgba(248, 243, 233, 0.85);
    max-width: 42ch;
    margin: 0;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(1.8rem, 4vh, 3rem);
    padding-top: 1.6rem;
    border-top: 1px solid var(--line-soft);
    flex-wrap: wrap;
}
.hero-meta {
    display: flex;
}
.hero-meta > div {
    padding-inline: clamp(1.4rem, 3vw, 2.8rem);
    border-left: 1px solid var(--line-soft);
}
.hero-meta > div:first-child {
    padding-left: 0;
    border-left: 0;
}
.hero-stamp {
    position: absolute;
    right: 0;
    top: 30%;
    width: 128px;
    height: 128px;
}
.hero-stamp svg {
    width: 100%;
    height: 100%;
    animation: spin 22s linear infinite;
}
.hero-stamp text {
    font-family: "Space Mono", monospace;
    font-size: 9.6px;
    letter-spacing: 0.32em;
    fill: rgba(248, 243, 233, 0.85);
    text-transform: uppercase;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 1080px) {
    .hero-stamp {
        display: none;
    }
}
@media (max-width: 700px) {
    .hero-tag {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-stamp svg {
        animation: none;
    }
}
.hero-meta .n {
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);
    display: block;
    line-height: 1;
    font-weight: 400;
}
.hero-meta .n sup {
    font-size: 0.5em;
    color: var(--crema);
}
.hero-meta .l {
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-dark);
    margin-top: 0.5rem;
    display: block;
}
.scroll-cue {
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}
.scroll-cue::after {
    content: "";
    width: 1px;
    height: 44px;
    background: linear-gradient(var(--crema), transparent);
    animation: drip 2.2s var(--ease-out) infinite;
}
@keyframes drip {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    45% {
        transform: scaleY(1);
        transform-origin: top;
    }
    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-cue::after {
        animation: none;
    }
}

/* ---- marquee ---- */
.strip {
    border-block: 1px solid var(--line);
    background: var(--cream-2);
    overflow: hidden;
}
.marquee {
    display: flex;
    white-space: nowrap;
    padding: 1.2rem 0;
    animation: slide 32s linear infinite;
    font-family: "Space Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    width: max-content;
}
.marquee span {
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
}
.marquee span::after {
    content: "✦";
    color: var(--crema);
}
@keyframes slide {
    to {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .marquee {
        animation: none;
    }
}

/* ---- sections ---- */
section {
    padding-block: var(--space);
}
.sec-head {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
.sec-head.center {
    margin-inline: auto;
    text-align: center;
}
.sec-head.row {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.sec-head.row > div {
    max-width: 640px;
}
.sec-head h3 {
    font-size: clamp(2.2rem, 1.5rem + 3.2vw, 4rem);
    margin: 1.1rem 0 1rem;
}
.sec-head p {
    color: var(--muted);
    font-size: 1.08rem;
}
.on-dark .sec-head p {
    color: var(--muted-dark);
}

/* ---- roasts ---- */
.roasts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 1rem + 1.5vw, 2rem);
}
.roast-card {
    position: relative;
    border-radius: var(--r);
    background: var(--foam);
    border: 1px solid var(--line);
    overflow: hidden;
    transition:
        transform 0.5s var(--ease-out),
        box-shadow 0.5s;
}
.roast-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}
.roast-card .media {
    position: relative;
    aspect-ratio: 4/4.6;
    overflow: hidden;
}
.roast-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 1.1s var(--ease-out);
}
.roast-card:hover .media img {
    transform: scale(1);
}
.roast-card .price {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    font-family: "Space Mono", monospace;
    font-size: 0.85rem;
    background: rgba(20, 16, 12, 0.55);
    color: var(--foam);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line-soft);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
}
.roast-card .body {
    padding: 1.5rem 1.6rem 1.7rem;
}
.roast-card h4 {
    font-family: "Fraunces", serif;
    font-weight: 460;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}
.roast-card .notes {
    color: var(--muted);
    font-size: 0.94rem;
    margin-top: 0.55rem;
}
.roast-card .tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.tag {
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    border: 1px solid var(--line);
    color: var(--muted);
}
@media (max-width: 820px) {
    .roasts {
        grid-template-columns: 1fr;
    }
    .roast-card .media {
        aspect-ratio: 16/11;
    }
}

/* ---- split sections ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 1.5rem + 5vw, 6rem);
    align-items: center;
}
.split h3 {
    font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
    margin-bottom: 1.3rem;
}
.figure {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}
.figure.tall {
    aspect-ratio: 4/5;
}
.figure.wide {
    aspect-ratio: 5/4;
}
.figure img {
    position: absolute;
    left: 0;
    width: 100%;
    top: -7.5%;
    height: 115%;
    object-fit: cover;
    will-change: transform;
}
.figure .stamp {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--foam);
    background: rgba(20, 16, 12, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line-soft);
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
}
.split .copy p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    max-width: 46ch;
}
@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
    }
    .figure.tall {
        aspect-ratio: 16/11;
    }
}

/* ---- ritual (dark moss panel) ---- */
.ritual {
    background: var(--moss);
    color: var(--foam);
    border-radius: calc(var(--r) + 10px);
    padding: clamp(2.2rem, 1.8rem + 3.5vw, 5rem);
}
.ritual .split {
    align-items: center;
}
.ritual .eyebrow {
    color: var(--foam);
}
.ritual h3 {
    color: var(--foam);
}
.brew-steps {
    list-style: none;
    margin-top: 2rem;
    counter-reset: step;
}
.brew-steps li {
    display: flex;
    gap: 1.3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(248, 243, 233, 0.14);
}
.brew-steps .num {
    font-family: "Space Mono", monospace;
    color: var(--crema);
    font-size: 0.82rem;
    padding-top: 0.2rem;
    min-width: 2ch;
}
.brew-steps h5 {
    font-family: "Fraunces", serif;
    font-weight: 480;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}
.brew-steps p {
    font-size: 0.93rem;
    color: rgba(248, 243, 233, 0.72);
    max-width: 44ch;
}
.ritual .figure {
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.6);
}

/* ---- horizontal gallery ---- */
.gallery {
    background: var(--ink);
    color: var(--foam);
    overflow: hidden;
    padding-block: 0;
}
.gallery .g-head {
    padding-top: var(--space);
}
.g-pin {
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.g-track {
    display: flex;
    gap: clamp(1.2rem, 2vw, 2.4rem);
    padding: 4rem clamp(1.5rem, 5vw, 6rem) 6rem;
    width: max-content;
    will-change: transform;
}
.g-item {
    position: relative;
    height: min(62vh, 560px);
    border-radius: var(--r);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ink-2);
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.g-item.gw-1 {
    width: min(78vw, 760px);
}
.g-item.gw-2 {
    width: min(60vw, 420px);
}
.g-item.gw-3 {
    width: min(66vw, 520px);
}
.g-item figcaption {
    position: absolute;
    bottom: 1.1rem;
    left: 1.1rem;
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(20, 16, 12, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line-soft);
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
}
.g-item.g-end {
    display: grid;
    place-content: center;
    text-align: center;
    gap: 1.2rem;
    background: var(--ink-2);
    border: 1px solid var(--line-soft);
    width: min(60vw, 420px);
    padding: 2rem;
}
.g-item.g-end .display {
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
}
@media (max-width: 899px) {
    .g-pin {
        min-height: 0;
        display: block;
    }
    .g-track {
        width: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--space);
    }
    .g-item {
        scroll-snap-align: center;
        height: 52vh;
    }
}

/* ---- widget slots ---- */
.widget-slot {
    min-height: 340px;
    border: 1.5px dashed rgba(185, 90, 36, 0.45);
    border-radius: var(--r);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 0.6rem;
    color: var(--muted);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(226, 121, 63, 0.07),
            transparent 60%
        ),
        var(--foam);
}
.widget-slot .badge {
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--crema-deep);
}
.widget-slot h4 {
    font-family: "Fraunces", serif;
    font-weight: 460;
    font-size: 1.45rem;
    color: var(--ink);
}
.widget-slot p {
    font-size: 0.9rem;
    max-width: 42ch;
    margin-inline: auto;
}

/* ---- newsletter ---- */
.news {
    position: relative;
    background: var(--ink);
    color: var(--foam);
    border-radius: calc(var(--r) + 10px);
    padding: clamp(3rem, 2.5rem + 4vw, 6rem) clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.news .news-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
}
.news .news-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
        ellipse at center,
        rgba(20, 16, 12, 0.25),
        rgba(20, 16, 12, 0.85)
    );
}
.news h3 {
    font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
    margin-bottom: 1rem;
}
.news p {
    color: var(--muted-dark);
    max-width: 46ch;
    margin: 0 auto 2.2rem;
}
.news form {
    display: flex;
    gap: 0.7rem;
    max-width: 480px;
    margin: 0 auto;
}
.news input {
    flex: 1;
    padding: 1rem 1.3rem;
    border-radius: 100px;
    border: 1px solid var(--line-soft);
    background: rgba(248, 243, 233, 0.07);
    color: var(--foam);
    font-size: 0.95rem;
    font-family: inherit;
}
.news input::placeholder {
    color: var(--muted-dark);
}
@media (max-width: 560px) {
    .news form {
        flex-direction: column;
    }
}

/* ---- faq ---- */
.faq {
    max-width: 780px;
    margin-inline: auto;
}
.faq details {
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 0;
}
.faq summary {
    font-family: "Fraunces", serif;
    font-weight: 460;
    font-size: 1.3rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    color: var(--crema-deep);
    font-family: "Instrument Sans";
    font-size: 1.5rem;
    transition: transform 0.35s var(--ease-out);
}
.faq details[open] summary::after {
    transform: rotate(45deg);
}
.faq p {
    color: var(--muted);
    margin-top: 0.9rem;
    max-width: 62ch;
}

/* ---- footer ---- */
footer {
    background: var(--ink-2);
    color: var(--foam);
    padding-top: 4.5rem;
    overflow: hidden;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line-soft);
}
.foot-grid h6 {
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-dark);
    margin-bottom: 1.1rem;
}
.foot-grid a {
    display: block;
    padding: 0.35rem 0;
    color: rgba(248, 243, 233, 0.8);
    font-size: 0.92rem;
    transition: color 0.25s;
}
.foot-grid a:hover {
    color: var(--crema);
}
.foot-brand p {
    color: var(--muted-dark);
    font-size: 0.92rem;
    max-width: 30ch;
    margin-top: 1rem;
}
.foot-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 1.8rem;
    font-size: 0.82rem;
    color: var(--muted-dark);
    flex-wrap: wrap;
    gap: 1rem;
}
.foot-word {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 340;
    font-size: clamp(5rem, 18vw, 17rem);
    line-height: 0.85;
    text-align: center;
    color: rgba(248, 243, 233, 0.07);
    letter-spacing: -0.03em;
    user-select: none;
    pointer-events: none;
    transform: translateY(0.12em);
}
@media (max-width: 780px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}
