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

:root {
    --black: #0d0b09;
    --ink: #15110e;
    --panel: #1d1712;
    --panel-soft: #241d17;
    --gold: #c9a84c;
    --gold-soft: #ead8a5;
    --ivory: #f8f2e8;
    --studio: #fcf8f3;
    --muted: #b7aa9a;
    --line: rgba(201, 168, 76, 0.2);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Jost", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--ivory);
    font-family: var(--sans);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

body.lightbox-open,
body.checkout-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(13, 11, 9, 0.76);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

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

.brand-mark span {
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: clamp(26px, 4vw, 38px);
    letter-spacing: 0.14em;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 34px);
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-nav a {
    transition: color 180ms ease;
}

.site-nav a:hover {
    color: var(--gold-soft);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 140px clamp(22px, 5vw, 72px) 54px;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 11, 9, 0.95) 0%, rgba(13, 11, 9, 0.66) 38%, rgba(13, 11, 9, 0.18) 100%),
        linear-gradient(0deg, rgba(13, 11, 9, 0.95) 0%, rgba(13, 11, 9, 0.08) 46%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    filter: saturate(0.9) contrast(1.05);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(54px, 9vw, 116px);
    line-height: 0.92;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 20px);
}

.hero-actions,
.catalog-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 20px;
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.filter-chip:hover,
.filter-chip.active {
    transform: translateY(-1px);
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-soft);
}

.button-primary {
    background: var(--gold);
    color: #171009;
    border-color: var(--gold);
}

.button-primary:hover {
    background: var(--gold-soft);
    color: #171009;
}

.button-quiet {
    background: rgba(255, 255, 255, 0.04);
}

.hero-rail {
    position: absolute;
    z-index: 1;
    right: clamp(22px, 5vw, 72px);
    bottom: 54px;
    display: flex;
    gap: 16px;
    color: rgba(248, 242, 232, 0.72);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-rail span {
    border-left: 1px solid var(--line);
    padding-left: 16px;
}

.intro-band,
.craft-story,
.artisan-impact,
.catalog,
.about,
.faq,
.contact {
    padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
    scroll-margin-top: 86px;
}

.intro-band {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.intro-band p {
    margin: 0;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(31px, 4vw, 54px);
    line-height: 1.18;
}

.artisan-impact {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 11, 9, 0.96), rgba(13, 11, 9, 0.78)),
        url("../images/craft/stone-anvils.png") center / cover;
}

.impact-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.impact-copy h2 {
    margin-bottom: 28px;
    color: var(--ivory);
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.98;
}

.impact-copy p:not(.eyebrow) {
    max-width: 760px;
    margin: 0 auto 18px;
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.8;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.catalog-head h2,
.contact-panel h2,
.occasion-band h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
}

.story-row {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
    min-height: 620px;
    border-top: 1px solid var(--line);
}

.story-row:last-child {
    border-bottom: 1px solid var(--line);
}

.story-row-reverse {
    grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
}

.story-row-reverse .story-image {
    grid-column: 2;
}

.story-row-reverse .story-copy {
    grid-column: 1;
    grid-row: 1;
}

.story-image {
    min-height: 520px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
}

.story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 6vw, 82px);
    background: var(--ink);
}

.story-kicker {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.story-copy h3 {
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 0.98;
}

.story-copy p:last-child,
.occasion-band p,
.contact-panel p,
.values-grid p,
.faq-list p,
.catalog-note {
    color: var(--muted);
}

.catalog {
    background: #100d0b;
}

.catalog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}

.catalog-note {
    max-width: 980px;
    margin-bottom: 34px;
    border: 1px solid var(--line);
    padding: 16px 18px;
    background: rgba(201, 168, 76, 0.06);
    font-size: 14px;
}

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

.product-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--ink);
}

.product-image-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 0;
    background: var(--studio);
    cursor: pointer;
    padding: 0;
}

.product-image-button img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 220ms ease, transform 600ms ease;
}

.product-image-button .product-main-image {
    object-fit: contain;
}

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

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.product-collection {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.product-name {
    color: var(--ivory);
    font-size: 30px;
    line-height: 1;
}

.product-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    margin-bottom: 8px;
}

.product-price {
    margin: 0;
    border: 1px solid rgba(201, 168, 76, 0.38);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.product-tagline,
.product-description {
    color: var(--muted);
    font-size: 14px;
}

.product-tagline {
    margin-bottom: 12px;
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
}

.product-description {
    flex: 1;
    margin-bottom: 18px;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
}

.product-meta span {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-actions {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.product-button {
    width: 100%;
    padding-inline: 14px;
    text-align: center;
}

.payment-guide {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    gap: clamp(26px, 5vw, 64px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--studio);
    color: #211915;
}

.payment-guide .eyebrow {
    color: #8f7132;
}

.payment-guide h2 {
    color: #211915;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.92;
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(33, 25, 21, 0.16);
    background: rgba(33, 25, 21, 0.16);
}

.payment-steps article {
    min-height: 220px;
    padding: 24px;
    background: var(--studio);
}

.payment-steps span {
    color: #8f7132;
    font-size: 11px;
    letter-spacing: 0.22em;
}

.payment-steps h3 {
    margin: 20px 0 10px;
    color: #211915;
    font-size: 34px;
}

.payment-steps p {
    margin: 0;
    color: rgba(33, 25, 21, 0.72);
}

.occasion-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 72px);
    background: var(--panel-soft);
}

.occasion-band img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.occasion-band p:last-child {
    max-width: 560px;
    margin-top: 22px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.values-grid article {
    min-height: 220px;
    padding: 28px;
    background: var(--ink);
}

.values-grid h3 {
    color: var(--gold-soft);
    font-size: 30px;
}

.faq {
    padding-top: 40px;
}

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

.care-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
}

.care-image {
    border: 1px solid var(--line);
    background: #f5eddf;
    padding: 10px;
}

.care-image img {
    width: 100%;
    height: auto;
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: 28px;
}

.faq-list p {
    margin: 12px 0 0;
}

.contact {
    padding-top: 40px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
    gap: clamp(30px, 6vw, 80px);
    max-width: 1180px;
    margin: 0 auto;
    border: 1px solid var(--line);
    padding: clamp(28px, 5vw, 64px);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.09), rgba(255, 255, 255, 0.03));
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label.full,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(13, 11, 9, 0.58);
    color: var(--ivory);
    padding: 14px;
}

.contact-form textarea {
    min-height: 136px;
    resize: vertical;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(20px, 5vw, 72px);
    border-top: 1px solid var(--line);
    color: rgba(248, 242, 232, 0.58);
    font-size: 12px;
}

.site-footer p {
    margin: 0;
}

.product-page {
    background: var(--studio);
    color: #211915;
}

.product-page .site-header {
    background: rgba(13, 11, 9, 0.9);
}

.product-detail-shell {
    padding: 108px clamp(18px, 4vw, 56px) 72px;
    background: var(--studio);
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 0;
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
    border: 1px solid rgba(33, 25, 21, 0.22);
    background: var(--studio);
}

.product-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-right: 1px solid rgba(33, 25, 21, 0.22);
}

.product-gallery.has-model {
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
    align-items: start;
}

.product-scene {
    position: relative;
    min-height: auto;
    aspect-ratio: 1;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--studio);
    padding: 0;
}

.scene-model {
    display: block;
    min-height: 0;
    padding-bottom: 54px;
    align-self: start;
    background: #e8ded2;
}

.scene-front {
    background: var(--studio);
}

.product-scene img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.scene-model img.studio-cutout {
    width: 100%;
}

.product-scene.scene-model img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    filter: none;
}

.product-scene figcaption {
    position: absolute;
    left: 18px;
    bottom: 14px;
    color: rgba(33, 25, 21, 0.68);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-summary {
    position: static;
    padding: clamp(36px, 5vw, 72px);
}

.back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: rgba(33, 25, 21, 0.58);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-summary .eyebrow {
    color: #8f7132;
}

.product-summary h1 {
    margin-bottom: 22px;
    color: #211915;
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.88;
}

.product-summary p {
    color: rgba(33, 25, 21, 0.72);
    font-size: 16px;
}

.product-summary-tagline {
    color: #6d5423 !important;
    font-family: var(--serif);
    font-size: 24px !important;
    font-style: italic;
}

.product-summary-price {
    margin: 18px 0 2px;
    color: #211915 !important;
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 60px) !important;
    line-height: 1;
}

.product-summary-tier {
    margin: 0 0 24px;
    color: rgba(33, 25, 21, 0.58) !important;
    font-size: 17px !important;
}

.product-page-purchase {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.product-page-purchase .checkout-note-box {
    margin: 0;
}

.product-page-venmo {
    width: 100%;
}

.product-page-zelle,
.product-page-helper {
    margin: 0;
    color: rgba(33, 25, 21, 0.72) !important;
    font-size: 16px !important;
}

.product-page-email {
    justify-self: start;
    color: #211915;
    border-color: rgba(33, 25, 21, 0.26);
}

.product-specs {
    display: grid;
    gap: 0;
    margin: 30px 0;
    border-top: 1px solid rgba(33, 25, 21, 0.18);
}

.product-specs div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    border-bottom: 1px solid rgba(33, 25, 21, 0.18);
    padding: 16px 0;
}

.product-specs dt {
    color: #8f7132;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 0;
    color: rgba(33, 25, 21, 0.78);
}

.product-description-panel {
    margin-top: 22px;
    border-top: 1px solid rgba(33, 25, 21, 0.18);
    border-bottom: 1px solid rgba(33, 25, 21, 0.18);
    padding: 16px 0;
}

.product-description-panel summary {
    cursor: pointer;
    color: #8f7132;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-description-panel p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
}

.product-inquire {
    width: 100%;
    border-color: #211915;
    background: #211915;
    color: var(--ivory);
}

.product-editorial {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    max-width: 1180px;
    margin: clamp(70px, 8vw, 120px) auto;
    padding: clamp(28px, 5vw, 68px) 0;
    border-top: 1px solid rgba(33, 25, 21, 0.18);
    border-bottom: 1px solid rgba(33, 25, 21, 0.18);
}

.product-editorial .eyebrow {
    color: #8f7132;
}

.product-editorial h2 {
    margin-bottom: 0;
    color: #211915;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.95;
}

.product-editorial p {
    align-self: center;
    color: rgba(33, 25, 21, 0.72);
    font-size: 18px;
}

.product-care-strip,
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(33, 25, 21, 0.18);
    border: 1px solid rgba(33, 25, 21, 0.18);
}

.product-care-strip article {
    min-height: 210px;
    padding: 28px;
    background: var(--studio);
}

.product-care-strip h3 {
    color: #211915;
    font-size: 34px;
}

.product-care-strip p {
    color: rgba(33, 25, 21, 0.72);
}

.related-products {
    max-width: 1180px;
    margin: clamp(70px, 9vw, 130px) auto 0;
}

.related-products .section-heading h2,
.related-products .section-heading .eyebrow {
    color: #211915;
}

.related-products .section-heading .eyebrow {
    color: #8f7132;
}

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

.related-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    background: var(--studio);
    color: #211915;
}

.related-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--studio);
    padding: 0;
}

.related-card span {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 7, 6, 0.9);
}

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 7, 6, 0.88);
}

.checkout-modal.is-open {
    display: flex;
}

.checkout-dialog {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(360px, 1fr);
    gap: 1px;
    width: min(1220px, 96vw);
    max-height: 90vh;
    overflow: auto;
    border: 1px solid var(--line);
    background: var(--line);
}

.checkout-image-wrap,
.checkout-copy {
    background: var(--studio);
}

.checkout-image-wrap {
    position: relative;
    display: grid;
    place-items: center;
    padding: 0;
    background: var(--studio);
}

.checkout-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: min(68vh, 620px);
    max-height: 620px;
    object-fit: contain;
    object-position: center;
}

.checkout-copy {
    padding: clamp(24px, 5vw, 52px);
    color: #211915;
}

.checkout-copy .eyebrow {
    color: #8f7132;
}

.checkout-copy h2 {
    margin-bottom: 8px;
    color: #211915;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.9;
}

.checkout-price {
    margin: 12px 0 0;
    color: #211915;
    font-family: var(--serif);
    font-size: clamp(42px, 7vw, 66px);
    line-height: 1;
}

.checkout-tier {
    margin: 4px 0 24px;
    color: rgba(33, 25, 21, 0.66);
}

.checkout-note-box {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    border: 1px solid rgba(33, 25, 21, 0.18);
    padding: 16px;
    background: var(--studio);
}

.checkout-note-box span {
    color: #8f7132;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.checkout-note-box strong {
    overflow-wrap: anywhere;
    font-weight: 500;
}

.checkout-copy .button {
    color: #211915;
    border-color: rgba(33, 25, 21, 0.26);
}

.checkout-copy .button-primary {
    border-color: var(--gold);
    color: #171009;
}

.payment-options {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.payment-options p,
.checkout-helper {
    margin: 0;
    color: rgba(33, 25, 21, 0.72);
}

.checkout-email {
    margin-top: 20px;
}

.checkout-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: var(--gold);
    color: #171009;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-dialog {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1px;
    width: min(1180px, 96vw);
    max-height: 90vh;
    border: 1px solid var(--line);
    background: var(--line);
}

.lightbox-image-wrap {
    min-height: 64vh;
    background: var(--studio);
}

.lightbox-image-wrap img {
    width: 100%;
    height: 100%;
    max-height: 78vh;
    object-fit: contain;
    padding: 0;
}

.lightbox-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 5vw, 58px);
    background: var(--ink);
}

.lightbox-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.92;
}

.lightbox-copy p {
    color: var(--muted);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: var(--gold);
    color: #171009;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

@media (max-width: 1180px) {
    .products-grid,
    .values-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .payment-guide,
    .product-detail-hero,
    .product-editorial {
        grid-template-columns: 1fr;
    }

    .product-summary {
        position: static;
        padding: clamp(30px, 6vw, 52px);
    }

    .product-gallery {
        border-right: 0;
        border-bottom: 1px solid rgba(33, 25, 21, 0.22);
    }
}

@media (max-width: 820px) {
    .site-header {
        position: absolute;
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        gap: 12px;
        background: linear-gradient(180deg, rgba(13, 11, 9, 0.82), rgba(13, 11, 9, 0));
        border-bottom: 0;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 7px;
        overflow: visible;
        padding-bottom: 4px;
        font-size: 11px;
    }

    .site-nav a {
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 8px 11px;
        white-space: nowrap;
    }

    .hero {
        min-height: 92svh;
        padding-top: 168px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 82px);
    }

    .hero-rail {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 34px;
        flex-wrap: wrap;
    }

    .story-row,
    .story-row-reverse,
    .occasion-band,
    .contact-panel,
    .product-gallery,
    .product-gallery.has-model,
    .payment-steps,
    .product-care-strip,
    .lightbox-dialog,
    .checkout-dialog {
        grid-template-columns: 1fr;
    }

    .care-layout {
        grid-template-columns: 1fr;
    }

    .story-row-reverse .story-image,
    .story-row-reverse .story-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .story-row,
    .story-image {
        min-height: auto;
    }

    .story-image {
        aspect-ratio: 4 / 5;
    }

    .products-grid,
    .values-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-shell {
        padding-top: 158px;
    }

    .product-scene {
        min-height: auto;
    }

    .checkout-image {
        height: min(58vh, 420px);
    }

    .product-specs div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .product-title-row,
    .product-actions {
        grid-template-columns: 1fr;
    }

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

    .site-footer {
        flex-direction: column;
    }

    .lightbox-image-wrap {
        min-height: auto;
    }
}

/* Shopping bag and Stripe checkout */
.cart-nav-link { display: inline-flex; align-items: center; gap: 7px; }
.cart-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--gold); color: #171009; font-size: 11px; }
.cart-toast { position: fixed; z-index: 200; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 28px; max-width: calc(100vw - 48px); padding: 18px 20px; border: 1px solid var(--gold); background: #17130f; color: #f7f0e4; box-shadow: 0 18px 50px rgba(0,0,0,.34); transform: translateY(130%); opacity: 0; transition: .35s ease; }
.cart-toast.is-visible { transform: translateY(0); opacity: 1; }
.cart-toast a { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }
.cart-shell { min-height: 75vh; padding: 170px clamp(22px, 6vw, 90px) 100px; background: var(--studio); color: #211915; }
.cart-heading { margin-bottom: 48px; border-bottom: 1px solid rgba(33,25,21,.2); padding-bottom: 24px; }
.cart-heading h1 { margin: 0; font-size: clamp(58px, 8vw, 110px); line-height: .85; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(290px, .75fr); gap: clamp(36px, 7vw, 100px); align-items: start; }
.cart-items { display: grid; }
.cart-item { display: grid; grid-template-columns: 170px 1fr auto; gap: 26px; align-items: center; border-bottom: 1px solid rgba(33,25,21,.18); padding: 24px 0; }
.cart-item:first-child { border-top: 1px solid rgba(33,25,21,.18); }
.cart-item img { width: 170px; height: 170px; object-fit: contain; background: #ede7dc; }
.cart-item-copy h2 { margin: 2px 0 6px; font-size: 38px; line-height: 1; }
.cart-item-copy p { margin: 0 0 12px; }
.cart-line-price { align-self: start; padding-top: 14px; font-family: var(--serif); font-size: 28px; }
.quantity-control { display: inline-grid; grid-template-columns: 38px 42px 38px; border: 1px solid rgba(33,25,21,.25); text-align: center; }
.quantity-control button { border: 0; background: transparent; padding: 9px; cursor: pointer; font-size: 18px; }
.quantity-control span { display: grid; place-items: center; border-inline: 1px solid rgba(33,25,21,.18); }
.cart-remove { margin-left: 14px; border: 0; border-bottom: 1px solid currentColor; padding: 0; background: transparent; color: rgba(33,25,21,.62); cursor: pointer; font: inherit; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.cart-summary { position: sticky; top: 120px; padding: 30px; border: 1px solid rgba(33,25,21,.18); background: #eee8dc; }
.cart-summary > div:first-of-type { display: flex; justify-content: space-between; margin: 18px 0; border-block: 1px solid rgba(33,25,21,.18); padding: 18px 0; font-family: var(--serif); font-size: 27px; }
.cart-summary .button { width: 100%; margin: 20px 0 14px; }
.stripe-assurance { text-align: center; color: rgba(33,25,21,.62); font-size: 11px; letter-spacing: .06em; }
.stripe-assurance span { color: #5d8a6a; }
.checkout-error { color: #8a2d27; font-size: 13px; }
.cart-empty, .cart-confirmation { max-width: 720px; padding: 60px 0; }
.cart-empty h2, .cart-confirmation h2 { margin: 0 0 18px; font-size: clamp(48px, 7vw, 82px); line-height: .95; }
.cart-empty .button, .cart-confirmation .button { margin-top: 20px; }

@media (max-width: 820px) {
    .cart-shell { padding-top: 180px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 105px 1fr; gap: 16px; }
    .cart-item img { width: 105px; height: 125px; }
    .cart-line-price { grid-column: 2; padding: 0; }
    .cart-summary { position: static; }
    .cart-toast { right: 14px; bottom: 14px; max-width: calc(100vw - 28px); }
}
