@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --forest: #17372b;
  --forest-deep: #0d261d;
  --sage: #dce9df;
  --sage-pale: #eff5f0;
  --cream: #f7f5ef;
  --paper: #fffefa;
  --ink: #1f2924;
  --muted: #66736c;
  --line: #d9dfda;
  --orange: #e4572e;
  --orange-dark: #c9401b;
  --orange-pale: #fce9e2;
  --success: #287a4c;
  --error: #b83b31;
  --shadow-sm: 0 10px 30px rgba(19, 42, 32, 0.08);
  --shadow-lg: 0 24px 70px rgba(19, 42, 32, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--forest-deep); font-family: var(--font-display); line-height: 1.08; }

.wrap { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(228, 87, 46, 0.55); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(23, 55, 43, 0.1);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand-button { display: flex; align-items: center; gap: 12px; padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font: 800 1rem/1 var(--font-display);
}
.brand-copy { display: flex; flex-direction: column; color: var(--forest); }
.brand-copy strong { font-family: var(--font-display); font-size: 0.93rem; }
.brand-copy small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.04em; }
.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px 10px 16px;
  color: var(--forest);
  border: 1px solid rgba(23, 55, 43, 0.18);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.cart-trigger:hover { border-color: var(--forest); transform: translateY(-1px); }
.cart-trigger svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { display: grid; place-items: center; min-width: 25px; height: 25px; padding: 0 6px; color: var(--forest); background: var(--sage); border-radius: 99px; font-size: 0.75rem; }
.cart-count.has-items { color: white; background: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--orange); box-shadow: 0 10px 24px rgba(228, 87, 46, 0.22); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(228, 87, 46, 0.28); }
.btn-secondary { color: var(--forest); background: white; border-color: var(--line); }
.btn-secondary:hover { border-color: var(--forest); }
.btn-block { width: 100%; }
.btn:disabled { cursor: wait; opacity: 0.72; transform: none; }

.eyebrow { margin-bottom: 15px; color: var(--orange); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }

.hero { position: relative; overflow: hidden; background: var(--sage-pale); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -280px; bottom: -310px; border: 1px solid rgba(23, 55, 43, 0.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(23,55,43,.025), 0 0 0 140px rgba(23,55,43,.02); }
.hero-layout { min-height: 660px; display: grid; grid-template-columns: 1fr 0.9fr; gap: 80px; align-items: center; padding-top: 58px; padding-bottom: 58px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 700px; margin-bottom: 26px; font-size: clamp(3.2rem, 6vw, 5.8rem); font-weight: 800; letter-spacing: -0.055em; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-description { max-width: 580px; margin-bottom: 32px; color: var(--muted); font-size: 1.08rem; }
.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 40px; color: var(--muted); font-size: 0.77rem; font-weight: 600; }
.hero-proof i { width: 3px; height: 3px; background: var(--orange); border-radius: 50%; }
.hero-art { position: relative; min-height: 540px; }
.hero-photo { position: absolute; overflow: hidden; background: #dbe7de; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 0 0 28px 60px; border-radius: 46% 46% 26px 26px; }
.hero-photo-small { width: 44%; height: 48%; left: -25px; bottom: -5px; border: 9px solid var(--sage-pale); border-radius: 20px; }
.year-stamp { position: absolute; top: 6%; right: -52px; color: var(--forest); font: 800 0.72rem var(--font-display); letter-spacing: 0.16em; transform: rotate(90deg); }

.collection { padding-top: 100px; padding-bottom: 112px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.04em; }
.section-heading > p { max-width: 380px; margin: 0 0 5px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.product-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.product-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3.7; background: var(--sage); }
.product-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .product-media > img { transform: scale(1.025); }
.product-chip, .quick-guide { position: absolute; top: 18px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.product-chip { left: 18px; padding: 8px 12px; color: var(--forest); background: rgba(255, 254, 250, 0.92); }
.quick-guide { right: 18px; padding: 8px 12px; color: var(--forest); background: rgba(255, 254, 250, 0.92); border: 0; cursor: pointer; backdrop-filter: blur(8px); }
.quick-guide:hover { background: white; }
.product-body { padding: 25px 26px 28px; }
.product-category { margin-bottom: 8px; color: var(--muted); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.product-title-row { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.product-title-row h3 { margin-bottom: 0; font-size: 1.25rem; letter-spacing: -0.025em; }
.product-title-row strong { flex: none; color: var(--forest); }
.product-note { min-height: 42px; margin: 12px 0 20px; color: var(--muted); font-size: 0.8rem; }
.product-actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 12px; }
.select-wrap { position: relative; }
.select-wrap label { position: absolute; z-index: 1; top: 7px; left: 15px; color: var(--muted); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; }
.select-wrap select { width: 100%; height: 54px; padding: 17px 38px 4px 14px; color: var(--forest); background: white; border: 1px solid var(--line); border-radius: 999px; appearance: none; cursor: pointer; }
.select-wrap::after { content: "⌄"; position: absolute; right: 16px; top: 15px; pointer-events: none; }
.btn-add { height: 54px; color: white; background: var(--forest); }
.btn-add:hover { background: var(--forest-deep); }
.inline-error { margin: 10px 4px 0; color: var(--error); font-size: 0.78rem; }

.promise-strip { color: white; background: var(--forest); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise-grid > div { display: flex; align-items: center; gap: 17px; min-height: 150px; padding: 30px; border-right: 1px solid rgba(255,255,255,.12); }
.promise-grid > div:first-child { padding-left: 0; }
.promise-grid > div:last-child { padding-right: 0; border: 0; }
.promise-icon { display: grid; place-items: center; flex: none; width: 46px; height: 46px; color: var(--orange); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: 0.72rem; font-weight: 800; }
.promise-grid strong, .promise-grid small { display: block; }
.promise-grid strong { font-family: var(--font-display); }
.promise-grid small { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 0.76rem; }

.checkout-view { min-height: calc(100vh - 78px); padding: 34px 0 100px; background: var(--cream); }
.checkout-wrap { max-width: 1120px; }
.back-to-shop, .text-button { padding: 7px 0; color: var(--muted); background: none; border: 0; cursor: pointer; font-weight: 600; }
.back-to-shop:hover, .text-button:hover { color: var(--forest); }
.checkout-progress { display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr; align-items: center; max-width: 680px; margin: 32px auto 68px; }
.checkout-progress > i { height: 1px; background: var(--line); }
.checkout-progress button { display: grid; grid-template-columns: 38px auto; grid-template-rows: 19px 18px; column-gap: 11px; padding: 0; text-align: left; background: none; border: 0; cursor: pointer; }
.checkout-progress button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 38px; height: 38px; color: var(--muted); border: 1px solid var(--line); border-radius: 50%; font-weight: 800; font-size: 0.77rem; }
.checkout-progress button strong { color: var(--muted); font-size: 0.82rem; }
.checkout-progress button small { color: #929b96; font-size: 0.69rem; }
.checkout-progress button.is-active > span, .checkout-progress button.is-complete > span { color: white; background: var(--forest); border-color: var(--forest); }
.checkout-progress button.is-complete > span { font-size: 0; }
.checkout-progress button.is-complete > span::after { content: "✓"; font-size: 0.85rem; }
.checkout-progress button.is-active strong, .checkout-progress button.is-complete strong { color: var(--forest); }
.checkout-heading { margin-bottom: 32px; text-align: center; }
.checkout-heading h1 { margin-bottom: 10px; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.045em; }
.checkout-heading > p:last-child { color: var(--muted); }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 24px; align-items: start; }
.checkout-card, .summary-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.checkout-card { padding: 30px; }
.summary-card { position: sticky; top: 104px; padding: 28px; }
.summary-card h2 { margin-bottom: 24px; font-size: 1.13rem; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; color: var(--muted); font-size: 0.88rem; }
.summary-row.total { align-items: end; margin: 8px 0 22px; padding-top: 20px; color: var(--forest); border-top: 1px solid var(--line); }
.summary-row.total strong { font: 800 1.55rem var(--font-display); letter-spacing: -0.04em; }
.summary-note, .submit-note { color: var(--muted); font-size: 0.72rem; text-align: center; }
.summary-note { margin: -12px 0 22px; }
.submit-note { margin: 12px 2px 0; }
.summary-card .text-button { width: 100%; margin-top: 10px; font-size: 0.8rem; }

.cart-line { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-line:first-child { padding-top: 0; }
.cart-line:last-child { padding-bottom: 0; border-bottom: 0; }
.cart-line > img { width: 96px; height: 110px; object-fit: cover; background: var(--sage); border-radius: 12px; }
.cart-line-details h3 { margin-bottom: 7px; font-size: 1rem; }
.cart-line-details p { margin-bottom: 10px; color: var(--muted); font-size: 0.78rem; }
.cart-line-details button { padding: 0; color: var(--error); background: none; border: 0; font-size: 0.72rem; text-decoration: underline; cursor: pointer; }
.cart-line-controls { display: flex; min-width: 128px; flex-direction: column; align-items: end; gap: 11px; }
.cart-line-controls > strong { color: var(--forest); font-size: 0.9rem; }
.qty-stepper { display: grid; grid-template-columns: 32px 30px 32px; align-items: center; height: 34px; border: 1px solid var(--line); border-radius: 99px; text-align: center; }
.qty-stepper button { height: 100%; padding: 0; color: var(--forest); background: none; border: 0; cursor: pointer; }
.qty-stepper button:disabled { color: #b5bcb8; cursor: default; }
.qty-stepper span { font-size: 0.78rem; font-weight: 700; }
.empty-cart { padding: 70px 20px; text-align: center; }
.empty-cart > span { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 20px; background: var(--sage-pale); border-radius: 50%; font-size: 1.6rem; }
.empty-cart h2 { margin-bottom: 8px; font-size: 1.35rem; }
.empty-cart p { margin-bottom: 22px; color: var(--muted); }

.details-card { display: grid; grid-template-columns: 1fr 1fr; gap: 23px; }
.field-full { grid-column: 1 / -1; }
.field-group label { display: block; margin: 0 0 8px 3px; color: var(--forest); font-size: 0.79rem; font-weight: 700; }
.field-group label span { color: var(--orange); }
.field-group input { width: 100%; height: 54px; padding: 0 16px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color 0.18s, box-shadow 0.18s; }
.field-group input:focus { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(23,55,43,.08); outline: 0; }
.field-group input[aria-invalid="true"] { border-color: var(--error); }
.field-group small { display: block; margin: 6px 3px 0; color: var(--muted); font-size: 0.69rem; }
.field-error { min-height: 18px; margin: 5px 3px 0; color: var(--error); font-size: 0.72rem; }
.privacy-note { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; margin-top: 2px; padding: 17px; color: var(--forest); background: var(--sage-pale); border-radius: 12px; }
.privacy-note > span { display: grid; place-items: center; flex: none; width: 29px; height: 29px; color: white; background: var(--success); border-radius: 50%; font-size: 0.7rem; }
.privacy-note p { margin: 0; font-size: 0.76rem; }
.mini-lines { display: grid; gap: 13px; margin-bottom: 19px; }
.mini-lines > div { display: grid; grid-template-columns: 1fr auto; gap: 12px; color: var(--muted); font-size: 0.73rem; }
.mini-lines strong { color: var(--forest); font-size: 0.74rem; }

.payment-layout { grid-template-columns: minmax(0, 1fr) 360px; }
.payment-card { padding: 0; overflow: hidden; }
.payment-topline { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: var(--forest); color: white; font-size: 0.74rem; }
.payment-topline > div { display: flex; align-items: center; gap: 9px; }
.payment-topline > span { color: rgba(255,255,255,.62); }
.secure-dot { width: 8px; height: 8px; background: #74d59c; border-radius: 50%; box-shadow: 0 0 0 4px rgba(116,213,156,.12); }
.payment-content { display: grid; grid-template-columns: 230px 1fr; gap: 30px; padding: 30px; }
.qr-zoom-btn { position: relative; align-self: start; padding: 13px; background: white; border: 1px solid var(--line); border-radius: 16px; cursor: zoom-in; }
.qr-zoom-btn img { width: 100%; max-height: 300px; object-fit: contain; }
.qr-zoom-btn > span { position: absolute; bottom: 22px; left: 50%; padding: 6px 10px; color: white; background: rgba(13,38,29,.82); border-radius: 99px; font-size: 0.62rem; transform: translateX(-50%); white-space: nowrap; }
.payment-label { margin-bottom: 5px; color: var(--muted); font-size: 0.69rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.payment-amount { display: block; margin-bottom: 21px; color: var(--forest); font: 800 2rem var(--font-display); letter-spacing: -0.04em; }
.payment-instructions ol { margin: 0 0 20px; padding-left: 21px; color: var(--muted); font-size: 0.78rem; }
.payment-instructions li { padding: 3px 0 3px 5px; }
.payment-instructions dl { margin: 0; padding: 13px 15px; background: var(--sage-pale); border-radius: 10px; }
.payment-instructions dl div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; font-size: 0.7rem; }
.payment-instructions dt { color: var(--muted); }
.payment-instructions dd { margin: 0; color: var(--forest); font-weight: 700; }
.upload-area { margin: 0 30px 30px; border: 1px dashed #a9b6ae; border-radius: 14px; transition: border-color .2s, background .2s; }
.upload-area.is-dragging { border-color: var(--orange); background: var(--orange-pale); }
.upload-area.has-file { border-style: solid; border-color: var(--success); background: #f0f8f3; }
.upload-area input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-area > label { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 13px; padding: 17px; cursor: pointer; }
.upload-icon { display: grid; place-items: center; width: 40px; height: 40px; color: var(--forest); background: var(--sage); border-radius: 50%; font-weight: 800; }
.upload-area label strong, .upload-area label small { display: block; }
.upload-area label strong { color: var(--forest); font-size: 0.8rem; }
.upload-area label small { margin-top: 3px; color: var(--muted); font-size: 0.67rem; }
.upload-area .btn { min-height: 39px; padding: 0 16px; font-size: 0.7rem; }
.upload-area .field-error { padding: 0 17px; }
.customer-recap { display: flex; flex-direction: column; margin: 19px 0; padding: 16px 0; border-top: 1px solid var(--line); }
.customer-recap span { margin-bottom: 5px; color: var(--muted); font-size: 0.67rem; text-transform: uppercase; }
.customer-recap strong { color: var(--forest); font-size: 0.78rem; overflow-wrap: anywhere; }
.customer-recap small { color: var(--muted); font-size: 0.7rem; }

.alert { max-width: 760px; margin: -32px auto 30px; padding: 17px 20px; border-radius: 12px; }
.alert-error { color: #812820; background: var(--orange-pale); border: 1px solid #edc2b4; }
.alert strong { font-size: 0.83rem; }
.alert ul { margin: 5px 0 0; padding-left: 20px; font-size: 0.76rem; }

.toast { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 12px; width: min(460px, calc(100% - 48px)); padding: 14px 15px; color: white; background: var(--forest-deep); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(18px); transition: opacity .2s, transform .2s; }
.toast-show { opacity: 1; transform: translateY(0); }
.toast > span:first-child { display: grid; place-items: center; width: 28px; height: 28px; color: var(--forest); background: #81d5a4; border-radius: 50%; font-size: .7rem; }
.toast > span:nth-child(2) { font-size: .77rem; }
.toast button { padding: 7px 10px; color: white; background: none; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; cursor: pointer; font-size: .68rem; }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 25, 18, .72); backdrop-filter: blur(6px); }
.modal-content { position: relative; width: min(880px, 100%); max-height: 90vh; padding: 25px; overflow: auto; background: var(--paper); border-radius: 20px; box-shadow: var(--shadow-lg); }
.modal-content h2 { margin-bottom: 18px; font-size: 1.15rem; }
.modal-content img { width: 100%; max-height: 75vh; object-fit: contain; }
.modal-close { position: absolute; z-index: 2; top: 15px; right: 15px; display: grid; place-items: center; width: 36px; height: 36px; padding: 0; color: var(--forest); background: var(--sage-pale); border: 0; border-radius: 50%; font-size: 1.25rem; cursor: pointer; }

.site-footer { padding: 46px 0; color: rgba(255,255,255,.62); background: var(--forest-deep); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner > div { display: flex; flex-direction: column; }
.footer-inner strong { color: white; font: 800 1.2rem var(--font-display); }
.footer-inner span, .footer-inner p { margin: 0; font-size: .72rem; }

/* Confirmation --------------------------------------------------------- */
.brand-button[href] { text-decoration: none; }
.success-page { background: var(--sage-pale); }
.secure-confirmation { display: flex; align-items: center; gap: 8px; color: var(--success); font-size: .75rem; font-weight: 700; }
.secure-confirmation i { width: 8px; height: 8px; background: #54b879; border-radius: 50%; box-shadow: 0 0 0 4px rgba(84,184,121,.12); }
.success-wrap { max-width: 1080px; padding-top: 70px; padding-bottom: 100px; }
.success-hero { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.success-check { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 23px; color: white; background: var(--success); border-radius: 50%; font-size: 1.45rem; box-shadow: 0 0 0 10px rgba(40,122,76,.08); }
.success-hero h1 { margin-bottom: 13px; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -.05em; }
.success-hero > p:not(.eyebrow) { max-width: 600px; margin: 0 auto; color: var(--muted); }
.reference-box { display: inline-flex; flex-direction: column; margin-top: 30px; padding: 16px 28px; color: var(--forest); background: var(--paper); border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); }
.reference-box span { color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.reference-box strong { margin: 3px 0; font: 800 1.25rem var(--font-display); letter-spacing: .04em; }
.reference-box small { color: var(--muted); font-size: .65rem; }
.success-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .75fr); gap: 23px; align-items: start; }
.success-order-card, .status-card, .contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.success-order-card { padding: 30px; }
.success-card-heading { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.success-card-heading .eyebrow { margin-bottom: 7px; }
.success-card-heading h2 { margin: 0; font-size: 1.25rem; }
.success-card-heading > strong { color: var(--forest); font: 800 1.35rem var(--font-display); }
.success-lines { display: grid; }
.success-line { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.success-line img { width: 72px; height: 80px; object-fit: cover; border-radius: 10px; }
.success-line h3 { margin: 0 0 4px; font-size: .85rem; }
.success-line p, .success-line small { margin: 0; color: var(--muted); font-size: .69rem; }
.success-line > strong { color: var(--forest); font-size: .82rem; }
.success-total { display: flex; justify-content: space-between; align-items: end; padding-top: 21px; color: var(--forest); font-size: .78rem; font-weight: 700; }
.success-total strong { font: 800 1.5rem var(--font-display); }
.success-side { display: grid; gap: 20px; }
.status-card, .contact-card { padding: 25px; }
.status-card h2, .contact-card h2 { margin-bottom: 21px; font-size: 1rem; }
.status-card ol { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.status-card li { display: grid; grid-template-columns: 30px 1fr; gap: 11px; align-items: start; }
.status-card li > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--muted); background: var(--sage-pale); border-radius: 50%; font-size: .67rem; font-weight: 800; }
.status-card li.is-done > span { color: white; background: var(--success); }
.status-card li strong, .status-card li small { display: block; }
.status-card li strong { color: var(--forest); font-size: .76rem; }
.status-card li small { margin-top: 2px; color: var(--muted); font-size: .66rem; }
.contact-card dl { margin: 0; }
.contact-card dl div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-card dt { color: var(--muted); font-size: .62rem; text-transform: uppercase; }
.contact-card dd { margin: 2px 0 0; color: var(--forest); font-size: .75rem; font-weight: 700; overflow-wrap: anywhere; }
.email-status { margin: 17px 0 0; padding: 11px 12px; border-radius: 9px; font-size: .68rem; }
.email-status.success { color: var(--success); background: #edf7f0; }
.email-status.warning { color: #8c4c20; background: #fff1df; }
.success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

@media (max-width: 900px) {
  .hero-layout { min-height: auto; grid-template-columns: 1fr 0.82fr; gap: 35px; }
  .hero-art { min-height: 450px; }
  .hero-photo-main { left: 30px; }
  .year-stamp { display: none; }
  .checkout-grid, .payment-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .payment-content { grid-template-columns: 210px 1fr; }
  .success-grid { grid-template-columns: 1fr; }
  .success-side { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .wrap { width: min(100% - 32px, 1200px); }
  .brand-copy small { display: none; }
  .hero-layout { display: flex; flex-direction: column; padding-top: 64px; padding-bottom: 42px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.6rem); }
  .hero-description { font-size: .96rem; }
  .hero-proof { margin-top: 28px; }
  .hero-art { width: 100%; min-height: 430px; margin-top: 12px; }
  .hero-photo-main { left: 42px; }
  .hero-photo-small { left: 0; }
  .collection { padding-top: 72px; padding-bottom: 80px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 15px; }
  .product-grid { grid-template-columns: 1fr; gap: 22px; }
  .product-media { aspect-ratio: 1 / .92; }
  .product-note { min-height: 0; }
  .promise-grid { grid-template-columns: 1fr; padding: 18px 0; }
  .promise-grid > div, .promise-grid > div:first-child, .promise-grid > div:last-child { min-height: 104px; padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .promise-grid > div:last-child { border: 0; }
  .checkout-view { padding-top: 22px; }
  .checkout-progress { grid-template-columns: 1fr 26px 1fr 26px 1fr; margin: 28px 0 52px; }
  .checkout-progress button { grid-template-columns: 34px auto; grid-template-rows: 34px; align-items: center; column-gap: 7px; }
  .checkout-progress button > span { grid-row: auto; width: 34px; height: 34px; }
  .checkout-progress button small { display: none; }
  .checkout-progress button strong { font-size: .7rem; }
  .checkout-heading { text-align: left; }
  .checkout-card, .summary-card { padding: 21px; }
  .cart-line { grid-template-columns: 74px 1fr; gap: 14px; }
  .cart-line > img { width: 74px; height: 90px; }
  .cart-line-controls { grid-column: 2; min-width: 0; flex-direction: row; align-items: center; justify-content: space-between; margin-top: -5px; }
  .details-card { grid-template-columns: 1fr; }
  .field-full, .privacy-note { grid-column: auto; }
  .payment-card { padding: 0; }
  .payment-content { grid-template-columns: 1fr; padding: 22px; }
  .qr-zoom-btn { width: min(280px, 100%); margin: 0 auto; }
  .upload-area { margin: 0 22px 22px; }
  .upload-area > label { grid-template-columns: 38px 1fr; }
  .upload-area label .btn { grid-column: 1 / -1; }
  .footer-inner { display: block; }
  .footer-inner p { margin-top: 18px; }
  .success-wrap { padding-top: 50px; padding-bottom: 72px; }
  .success-side { grid-template-columns: 1fr; }
  .success-order-card { padding: 21px; }
  .success-card-heading { display: block; }
  .success-card-heading > strong { display: block; margin-top: 12px; }
  .success-line { grid-template-columns: 58px 1fr auto; gap: 11px; }
  .success-line img { width: 58px; height: 68px; }
}

@media (max-width: 420px) {
  .header-inner { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: .78rem; }
  .cart-trigger > span:nth-child(2) { display: none; }
  .cart-trigger { padding-left: 12px; }
  .product-body { padding: 21px 20px 24px; }
  .product-actions { grid-template-columns: 1fr; }
  .checkout-progress button { display: flex; justify-content: center; }
  .checkout-progress button strong { display: none; }
  .toast { right: 16px; bottom: 16px; width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
