:root {
  --ink: #17211d;
  --muted: #66706b;
  --forest-950: #102d23;
  --forest-900: #173d2f;
  --forest-800: #20513f;
  --forest-100: #e7efe9;
  --gold-600: #a8752d;
  --gold-500: #c69448;
  --gold-300: #dfbd7a;
  --cream-50: #fdfbf6;
  --cream-100: #f8f3e8;
  --cream-200: #eee4cf;
  --white: #fff;
  --danger: #aa3838;
  --success: #27714d;
  --border: rgba(23, 61, 47, .14);
  --shadow-soft: 0 18px 60px rgba(16, 45, 35, .09);
  --shadow-float: 0 24px 80px rgba(10, 30, 23, .2);
  --radius-sm: .75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --font-display: "Rubik", "Heebo", Arial, sans-serif;
  --font-body: "Heebo", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  min-width: 20rem;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body:has(dialog[open]), body:has(.status-modal:not([hidden])) { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
svg { display: block; }
[hidden] { display: none !important; }

.page-shell { width: min(74rem, calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: fixed; inset: .75rem auto auto 50%; z-index: 1000; padding: .7rem 1rem; border-radius: .5rem; background: var(--white); transform: translate(-50%, -200%); }
.skip-link:focus { transform: translate(-50%, 0); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.development-banner { padding: .55rem 1rem; background: #fff0c7; color: #624308; text-align: center; font-size: .85rem; font-weight: 600; }
.announcement { background: var(--forest-950); color: rgba(255,255,255,.9); font-size: .82rem; }
.announcement__inner { min-height: 2.35rem; display: flex; align-items: center; justify-content: center; gap: .8rem; }
.announcement__dot { width: .25rem; height: .25rem; border-radius: 50%; background: var(--gold-300); }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(23,61,47,.08); background: rgba(253,251,246,.94); backdrop-filter: blur(16px); }
.header-row { height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--forest-900); }
.brand__mark { width: 2.65rem; height: 2.65rem; padding: .55rem; border-radius: 50%; background: var(--forest-900); fill: var(--gold-300); }
.brand span { display: grid; line-height: 1; }
.brand strong { font: 700 1.65rem/1 var(--font-display); }
.brand small { margin-top: .25rem; color: var(--gold-600); font-size: .63rem; font-weight: 700; letter-spacing: .15em; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { position: relative; color: #33443d; font-size: .92rem; font-weight: 500; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -.5rem; width: 0; height: 2px; background: var(--gold-500); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.cart-trigger { min-height: 2.75rem; display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .75rem; border: 1px solid var(--border); border-radius: 999px; background: transparent; color: var(--forest-900); cursor: pointer; }
.cart-trigger svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-count { min-width: 1.45rem; height: 1.45rem; display: inline-grid; place-items: center; border-radius: 50%; background: var(--forest-900); color: var(--white); font-size: .72rem; font-weight: 700; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid rgba(168,117,45,.28); background: linear-gradient(145deg, #fdfbf6 0%, #f5eedf 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: radial-gradient(rgba(168,117,45,.26) .6px, transparent .6px); background-size: 13px 13px; mask-image: linear-gradient(90deg, transparent, #000 80%); }
.hero__grid { position: relative; min-height: 44rem; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(3rem, 7vw, 6rem); padding-block: 5rem; }
.hero__content { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 .75rem; color: var(--gold-600); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: var(--gold-300); }
.hero h1, .section h2, .photo-story h2, .contact-cta h2 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.045em; line-height: 1.03; }
.hero h1 { max-width: 14ch; font-size: clamp(3.2rem, 6vw, 5.65rem); }
.hero h1 .hero__gold { color: var(--gold-600); font-style: normal; font-weight: 700; }
.hero__lead { max-width: 37rem; margin: 1.7rem 0 0; color: #4f5a55; font-size: 1.12rem; line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { min-height: 3rem; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .65rem 1.25rem; border: 1px solid transparent; border-radius: .75rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.button svg { width: 1.2rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.button--large { min-height: 3.55rem; padding-inline: 1.55rem; }
.button--primary { background: var(--forest-900); color: var(--white); box-shadow: 0 10px 28px rgba(23,61,47,.18); }
.button--primary:hover { background: var(--forest-800); box-shadow: 0 13px 30px rgba(23,61,47,.24); }
.button--ghost { border-color: var(--border); background: rgba(255,255,255,.55); color: var(--forest-900); }
.button--cream { background: var(--cream-100); color: var(--forest-950); }
.button--outline-light { border-color: rgba(255,255,255,.28); color: var(--white); }
.button--full { width: 100%; }
.hero__assurance { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.5rem; color: var(--muted); font-size: .82rem; }
.hero__assurance span { display: inline-flex; align-items: center; gap: .35rem; }
.hero__assurance i { width: 1.15rem; height: 1.15rem; display: inline-grid; place-items: center; border-radius: 50%; background: var(--forest-100); color: var(--forest-800); font-style: normal; font-size: .7rem; }
.hero__visual { position: relative; min-height: 35rem; display: grid; place-items: center; margin: 0; }
.hero__photo-frame { position: relative; width: min(34rem, 100%); aspect-ratio: 4 / 5; overflow: hidden; border: .7rem solid rgba(255,255,255,.8); border-radius: 45% 45% 1.6rem 1.6rem; background: var(--cream-200); box-shadow: 0 30px 80px rgba(16,45,35,.17); transform: rotate(-1.5deg); }
.hero__photo-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(168,117,45,.3); border-radius: inherit; box-shadow: inset 0 0 60px rgba(16,45,35,.12); pointer-events: none; }
.hero__photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 67% center; transform: scale(1.035); transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
.hero__visual.is-visible .hero__photo-frame img { transform: scale(1); }
.hero__seal { position: absolute; z-index: 3; left: -2%; bottom: 7%; width: 7.2rem; height: 7.2rem; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: var(--gold-500); color: var(--forest-950); text-align: center; box-shadow: var(--shadow-float); transform: rotate(-7deg); }
.hero__seal strong { font: 700 2rem/1 var(--font-display); }
.hero__seal span { font-size: .72rem; font-weight: 700; }

.trust-bar { border-block: 1px solid var(--border); background: var(--white); }
.trust-grid { min-height: 7.7rem; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-grid article { min-height: 3rem; display: flex; align-items: center; justify-content: center; gap: .85rem; padding-inline: 1.5rem; border-left: 1px solid var(--border); }
.trust-grid article:last-child { border-left: 0; }
.trust-grid article > span { color: var(--gold-500); font: 500 1.5rem/1 var(--font-display); }
.trust-grid article div { display: grid; }
.trust-grid strong { color: var(--forest-900); font-size: .9rem; }
.trust-grid small { color: var(--muted); font-size: .77rem; }

.section { padding-block: clamp(6rem, 10vw, 9.5rem); }
.section-block { position: relative; isolation: isolate; border-top: 1px solid rgba(168,117,45,.22); }
.section-block::before { content: ""; position: absolute; z-index: 4; top: -.62rem; left: 50%; width: 1.2rem; height: 1.2rem; border: .26rem solid var(--cream-50); background: var(--gold-500); box-shadow: 0 5px 16px rgba(16,45,35,.16); transform: translateX(-50%) rotate(45deg); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.section-heading h2, .section h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.section-heading > p { max-width: 33rem; margin: 0; color: var(--muted); }
.products-section { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.product-card { grid-column: span 4; min-height: 31rem; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 30px rgba(16,45,35,.04); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.product-card--featured { grid-column: span 8; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--forest-900); color: var(--white); }
.product-art { position: relative; min-height: 15.5rem; display: grid; place-items: center; overflow: hidden; background: linear-gradient(150deg, var(--cream-100), var(--cream-200)); }
.product-art::before { content: ""; position: absolute; width: 14rem; height: 14rem; border: 1px solid rgba(168,117,45,.25); border-radius: 50%; }
.product-card--featured .product-art { min-height: 100%; background: radial-gradient(circle, #315d4b 0%, #173d2f 68%); }
.product-card--featured .product-art::before { width: 19rem; height: 19rem; border-color: rgba(223,189,122,.26); }
.product-symbol { position: relative; z-index: 1; color: var(--forest-900); font: 500 7rem/1 var(--font-display); opacity: .88; }
.product-card--featured .product-symbol { color: var(--gold-300); font-size: 10rem; }
.product-badge { position: absolute; z-index: 2; top: 1rem; right: 1rem; padding: .35rem .65rem; border-radius: 999px; background: var(--gold-500); color: var(--forest-950); font-size: .7rem; font-weight: 700; }
.product-info { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; }
.product-kicker { margin-bottom: .35rem; color: var(--gold-600); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.product-info h3 { margin: 0; color: var(--forest-900); font: 600 1.65rem/1.15 var(--font-display); }
.product-card--featured .product-info h3 { color: var(--white); font-size: 2.4rem; }
.product-info p { margin: .75rem 0 1.3rem; color: var(--muted); font-size: .9rem; }
.product-card--featured .product-info { justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.product-card--featured .product-info p { color: rgba(255,255,255,.7); }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.product-price { display: grid; line-height: 1.15; }
.product-price strong { color: var(--forest-900); font: 600 1.45rem/1 var(--font-display); }
.product-card--featured .product-price strong { color: var(--white); }
.product-price small { color: var(--muted); font-size: .68rem; }
.product-card--featured .product-price small { color: rgba(255,255,255,.6); }
.add-button { min-height: 2.8rem; padding-inline: 1rem; border: 1px solid var(--forest-900); border-radius: .65rem; background: transparent; color: var(--forest-900); font-weight: 700; cursor: pointer; }
.add-button:hover { background: var(--forest-900); color: var(--white); }
.product-card--featured .add-button { border-color: var(--gold-300); background: var(--gold-300); color: var(--forest-950); }
.loading-card { grid-column: 1 / -1; min-height: 18rem; display: grid; place-items: center; border: 1px dashed var(--border); border-radius: var(--radius-md); color: var(--muted); }

.photo-story { position: relative; min-height: clamp(38rem, 78vh, 52rem); display: grid; align-items: center; overflow: hidden; background: var(--forest-950); color: var(--white); }
.photo-story::before { border-color: var(--white); }
.photo-story__image, .photo-story__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-story__image { object-fit: cover; object-position: center; transform: scale(1.08); transition: transform 1.6s cubic-bezier(.22,1,.36,1); }
.photo-story:has(.photo-story__copy.is-visible) .photo-story__image { transform: scale(1); }
.photo-story__shade { background: linear-gradient(90deg, rgba(7,25,19,.82) 0%, rgba(7,25,19,.63) 32%, rgba(7,25,19,.12) 68%, rgba(7,25,19,.08) 100%); }
.photo-story__inner { position: relative; z-index: 2; width: 100%; }
.photo-story__copy { width: min(31rem, 47%); margin-inline-end: auto; padding: clamp(2rem, 6vw, 5rem); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(10,31,23,.46); box-shadow: var(--shadow-float); backdrop-filter: blur(14px); }
.photo-story h2 { font-size: clamp(3rem, 6vw, 5.8rem); }
.photo-story__copy > p:not(.eyebrow) { margin: 1.35rem 0 0; color: rgba(255,255,255,.78); font-size: 1.04rem; }

.process-section { border-block-width: .45rem 1px; border-top-color: var(--gold-500); background: var(--forest-950); color: var(--white); }
.process-section::before { border-color: var(--forest-950); }
.process-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.process-intro p:not(.eyebrow) { max-width: 32rem; color: rgba(255,255,255,.65); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list li > span { width: 3.1rem; height: 3.1rem; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(223,189,122,.42); border-radius: 50%; color: var(--gold-300); font: 600 1.25rem var(--font-display); }
.process-list strong { font: 600 1.55rem var(--font-display); }
.process-list p { margin: .25rem 0 0; color: rgba(255,255,255,.6); }

.about-section { background: var(--cream-100); }
.about-section::before { border-color: var(--cream-100); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 9vw, 9rem); }
.about-art { min-height: 31rem; display: grid; place-items: center; border-radius: 50% 50% 1.5rem 1.5rem; background: linear-gradient(160deg, var(--forest-800), var(--forest-950)); box-shadow: var(--shadow-soft); }
.about-art span { color: var(--gold-300); font: 500 14rem/1 var(--font-display); opacity: .9; }
.about-copy > p:not(.eyebrow):not(.about-signature) { max-width: 38rem; color: var(--muted); font-size: 1.04rem; }
.about-signature { margin: 1.7rem 0 .4rem; color: var(--forest-900); font: italic 600 1.55rem var(--font-display); }
.text-link { color: var(--gold-600); font-weight: 700; text-underline-offset: .25rem; }

.faq-section { background: #f1eadc; }
.faq-section::before { border-color: #f1eadc; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 7rem); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 1.25rem 2rem 1.25rem 0; color: var(--forest-900); font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "+"; position: absolute; right: 0; color: var(--gold-600); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::before { content: "−"; }
.faq-list details p { margin: 0; padding: 0 2rem 1.35rem 0; color: var(--muted); }

.contact-cta { padding-block: 5.5rem; border-top: .45rem solid var(--gold-500); background: var(--forest-900); color: var(--white); }
.contact-cta::before { border-color: var(--forest-900); }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.contact-cta h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.contact-cta p:not(.eyebrow) { margin: .5rem 0 0; color: rgba(255,255,255,.66); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.site-footer { padding-top: 4rem; background: #0b2119; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; }
.brand--footer { display: grid; color: var(--white); }
.brand--footer strong { font-size: 2rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.footer-grid > div > strong { margin-bottom: .35rem; color: var(--gold-300); font-size: .78rem; }
.footer-grid p { margin: .7rem 0 0; font-size: .85rem; }
.footer-grid a:not(.brand) { font-size: .84rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { min-height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

dialog { margin: 0; padding: 0; border: 0; }
dialog::backdrop { background: rgba(8,28,21,.64); backdrop-filter: blur(4px); }
.drawer { right: auto; left: 0; width: min(29rem, 100%); max-width: none; height: 100dvh; max-height: none; background: var(--cream-50); box-shadow: var(--shadow-float); }
.drawer[open] { display: grid; grid-template-rows: auto 1fr auto; animation: drawer-in .22s ease both; }
.drawer__header, .checkout-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border); }
.drawer__header h2, .checkout-header h2 { margin: 0; color: var(--forest-900); font: 600 2rem/1 var(--font-display); }
.drawer__header .eyebrow, .checkout-header .eyebrow { margin-bottom: .35rem; }
.icon-button { width: 2.65rem; height: 2.65rem; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: transparent; color: var(--forest-900); font-size: 1.65rem; line-height: 1; cursor: pointer; }
.drawer__body { overflow: auto; padding: 1rem 1.5rem; }
.drawer__footer { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid var(--border); background: var(--white); }
.empty-cart { min-height: 22rem; display: grid; place-content: center; justify-items: center; color: var(--muted); text-align: center; }
.empty-cart span { color: var(--cream-200); font: 500 6rem/1 var(--font-display); }
.cart-line { display: grid; grid-template-columns: 4rem 1fr auto; align-items: center; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cart-line__art { width: 4rem; height: 4rem; display: grid; place-items: center; border-radius: .75rem; background: var(--forest-100); color: var(--forest-900); font: 600 1.75rem var(--font-display); }
.cart-line h3 { margin: 0; color: var(--forest-900); font-size: .95rem; }
.cart-line__price { color: var(--muted); font-size: .8rem; }
.quantity { margin-top: .45rem; display: inline-flex; align-items: center; gap: .6rem; }
.quantity button { width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--white); cursor: pointer; }
.remove-item { border: 0; background: transparent; color: var(--danger); font-size: .76rem; cursor: pointer; }
.total-row, .summary-lines > div { display: flex; justify-content: space-between; gap: 1rem; }
.total-row strong { color: var(--forest-900); font-size: 1.1rem; }
.shipping-note { margin: .3rem 0 1rem; color: var(--muted); font-size: .76rem; }

.checkout-dialog { inset: 50% auto auto 50%; width: min(64rem, calc(100% - 2rem)); max-width: none; max-height: calc(100dvh - 2rem); overflow: auto; border-radius: var(--radius-md); background: var(--cream-50); box-shadow: var(--shadow-float); transform: translate(-50%, -50%); }
.checkout-dialog[open] { animation: modal-in .2s ease both; }
.checkout-grid { display: grid; grid-template-columns: 1.25fr .75fr; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem; }
.field { display: grid; gap: .35rem; align-content: start; }
.field--wide { grid-column: 1 / -1; }
.field label { color: var(--forest-900); font-size: .82rem; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field textarea { width: 100%; border: 1px solid var(--border); border-radius: .65rem; background: var(--white); color: var(--ink); padding: .72rem .8rem; }
.field input { min-height: 3rem; }
.field textarea { resize: vertical; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 1em; color: var(--danger); font-size: .72rem; }
.honeypot { position: absolute; left: -9999px; }
.terms-check { position: relative; grid-column: 1 / -1; display: flex; align-items: flex-start; gap: .75rem; padding: .9rem 1rem; border: 1px solid var(--border); border-radius: .75rem; background: var(--white); color: var(--muted); font-size: .8rem; line-height: 1.65; cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.terms-check:hover { border-color: rgba(168,117,45,.55); background: #fffdf8; }
.terms-check input { position: absolute; inset-block-start: 1rem; inset-inline-start: 1rem; width: 1.45rem; height: 1.45rem; margin: 0; opacity: 0; cursor: pointer; }
.terms-check__box { flex: 0 0 1.45rem; width: 1.45rem; height: 1.45rem; display: grid; place-items: center; margin-top: .05rem; border: 2px solid rgba(23,61,47,.45); border-radius: .38rem; background: var(--cream-50); color: var(--white); pointer-events: none; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.terms-check__box::after { content: "✓"; font-size: 1rem; font-weight: 800; line-height: 1; opacity: 0; transform: scale(.55); transition: opacity .15s ease, transform .15s ease; }
.terms-check input:checked + .terms-check__box { border-color: var(--forest-900); background: var(--forest-900); transform: scale(1.03); }
.terms-check input:checked + .terms-check__box::after { opacity: 1; transform: scale(1); }
.terms-check input:focus-visible + .terms-check__box { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.terms-check__text { flex: 1; }
.terms-check a { color: var(--forest-900); font-weight: 700; text-underline-offset: .18rem; }
.checkout-summary { padding: 1.5rem; border-right: 1px solid var(--border); background: var(--white); }
.checkout-summary h3 { margin: 0 0 1rem; color: var(--forest-900); font: 600 1.45rem var(--font-display); }
.checkout-item { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; color: var(--muted); font-size: .82rem; }
.summary-lines { margin: 1rem 0; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; }
.summary-lines > div { margin-bottom: .4rem; }
.summary-lines .summary-total { margin-top: .85rem; padding-top: .85rem; border-top: 1px solid var(--border); color: var(--forest-900); font-size: 1.08rem; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: .35rem; margin: .8rem 0 0; color: var(--muted); font-size: .7rem; text-align: center; }

.status-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; background: rgba(8,28,21,.7); backdrop-filter: blur(5px); }
.status-card { width: min(30rem, 100%); padding: 2.5rem; border-radius: var(--radius-md); background: var(--cream-50); text-align: center; box-shadow: var(--shadow-float); }
.status-icon { width: 4rem; height: 4rem; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 50%; background: var(--forest-100); color: var(--success); font-size: 1.8rem; }
.status-icon--error { background: #f6e4e2; color: var(--danger); }
.status-card h2 { margin: 0; color: var(--forest-900); font: 600 2.2rem var(--font-display); }
.status-card p { color: var(--muted); }
.order-reference { font-size: .78rem; word-break: break-all; }
.toast { position: fixed; z-index: 120; right: 50%; bottom: 1.5rem; max-width: calc(100% - 2rem); padding: .75rem 1rem; border-radius: .7rem; background: var(--forest-950); color: var(--white); box-shadow: var(--shadow-float); transform: translateX(50%); }
.mobile-buy-bar { display: none; }
.button-spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }

.has-js [data-reveal] { opacity: 0; transform: translateY(3.25rem) scale(.985); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
.has-js [data-reveal="from-right"] { transform: translateX(3.75rem); }
.has-js [data-reveal="from-left"] { transform: translateX(-3.75rem); }
.has-js [data-reveal].is-visible { opacity: 1; transform: none; }
.has-js .product-card { opacity: 0; transform: translateY(2.6rem); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1), box-shadow .25s ease; transition-delay: var(--reveal-delay, 0ms); }
.has-js .product-card.is-visible { opacity: 1; transform: none; }
.has-js .product-card.is-visible:hover { transform: translateY(-5px); }

@keyframes drawer-in { from { transform: translateX(-100%); } }
@keyframes modal-in { from { opacity: 0; transform: translate(-50%, -48%) scale(.98); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 1rem; padding-block: 4rem 2rem; }
  .hero__content { text-align: center; }
  .hero h1, .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__assurance { justify-content: center; }
  .hero__visual { min-height: 31rem; }
  .hero__photo-frame { width: min(31rem, 82vw); aspect-ratio: 5 / 4; border-radius: 2rem 2rem 42% 42%; transform: rotate(0); }
  .hero__seal { left: 10%; }
  .photo-story { min-height: 40rem; }
  .photo-story__image { object-position: 58% center; }
  .photo-story__shade { background: linear-gradient(0deg, rgba(7,25,19,.88) 0%, rgba(7,25,19,.48) 50%, rgba(7,25,19,.08) 100%); }
  .photo-story__inner { align-self: end; padding-bottom: 2rem; }
  .photo-story__copy { width: min(36rem, 100%); margin: 0 auto; }
  .product-card { grid-column: span 6; }
  .product-card--featured { grid-column: 1 / -1; }
  .process-layout, .about-grid, .faq-layout { grid-template-columns: 1fr; }
  .about-art { min-height: 23rem; }
  .about-art span { font-size: 10rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { border-top: 1px solid var(--border); border-right: 0; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 4.6rem; }
  body { padding-bottom: 4.6rem; }
  .page-shell { width: min(100% - 1.25rem, 74rem); }
  .announcement__inner { min-height: 2rem; font-size: .7rem; gap: .45rem; }
  .header-row { height: 4.25rem; }
  .brand__mark { width: 2.25rem; height: 2.25rem; }
  .brand { min-width: 0; gap: .55rem; }
  .brand strong { font-size: 1.28rem; }
  .brand small { font-size: .56rem; letter-spacing: .1em; }
  .cart-trigger > span:not(.cart-count) { display: none; }
  .hero__grid { padding-top: 3rem; }
  .hero h1 { width: 100%; max-width: 100%; font-size: clamp(2.25rem, 10vw, 2.7rem); line-height: 1.04; }
  .hero h1 span { display: block; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__visual { min-height: 21rem; }
  .hero__photo-frame { width: 100%; aspect-ratio: 4 / 3; border-width: .45rem; border-radius: 1.25rem 1.25rem 38% 38%; }
  .hero__seal { width: 5.8rem; height: 5.8rem; left: 2%; }
  .hero__seal strong { font-size: 1.55rem; }
  .trust-grid { grid-template-columns: 1fr; padding-block: .75rem; }
  .trust-grid article { min-height: 4.25rem; justify-content: flex-start; border-left: 0; border-bottom: 1px solid var(--border); }
  .trust-grid article:last-child { border-bottom: 0; }
  .section { padding-block: 4.5rem; }
  .section-block::before { top: -.5rem; width: 1rem; height: 1rem; border-width: .2rem; }
  .photo-story { min-height: 36rem; }
  .photo-story__copy { padding: 1.4rem; }
  .photo-story h2 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1rem; }
  .product-grid { display: grid; grid-template-columns: 1fr; }
  .product-card, .product-card--featured { grid-column: 1; min-height: auto; display: flex; }
  .product-card--featured .product-art { min-height: 17rem; }
  .product-card--featured .product-info { padding: 1.5rem; }
  .product-card--featured .product-info h3 { font-size: 2rem; }
  .contact-cta__inner { display: block; text-align: center; }
  .contact-actions { display: grid; margin-top: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { min-height: 5rem; flex-direction: column; justify-content: center; }
  .drawer { width: 100%; }
  .checkout-dialog { width: 100%; height: 100dvh; max-height: none; border-radius: 0; }
  .checkout-dialog[open] { display: block; }
  .checkout-fields { grid-template-columns: 1fr; padding: 1rem; }
  .field--wide, .terms-check { grid-column: 1; }
  .checkout-summary { padding: 1rem; }
  .mobile-buy-bar { position: fixed; inset: auto 0 0; z-index: 18; display: block; padding: .65rem; border-top: 1px solid var(--border); background: rgba(253,251,246,.96); backdrop-filter: blur(12px); }
  .has-js [data-reveal="from-right"], .has-js [data-reveal="from-left"] { transform: translateY(2.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .has-js [data-reveal], .has-js .product-card { opacity: 1 !important; transform: none !important; }
}
