:root {
  --blue: #0046ad;
  --deep: #032b68;
  --gold: #d4af37;
  --gold-light: #ebc659;
  --cream: #f7f3e9;
  --paper: #fbfaf6;
  --ink: #10233f;
  --muted: #69778c;
  --line: #e1e7ef;
  --serif: "Playfair Display", Georgia, serif;
  --sans: Manrope, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; min-width: 20rem; background: var(--paper); color: var(--ink); font: 400 1rem/1.65 var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }

.topbar { min-height: 1.875rem; padding: .35rem 1rem; background: var(--deep); color: #dce8f7; display: flex; align-items: center; justify-content: center; gap: .625rem; text-align: center; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.topbar span { color: var(--gold-light); }
.header { min-height: 4.75rem; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0 max(5vw, calc((100vw - 82.5rem) / 2)); position: relative; z-index: 20; }
.brand { display: flex; align-items: center; gap: .625rem; color: var(--blue); flex: 0 0 auto; }
.brand.light { color: #fff; }
.site-logo-image { width: 3.35rem; height: 3.35rem; object-fit: contain; flex: 0 0 auto; }
.brand b { display: block; font: 600 1rem var(--serif); letter-spacing: .11em; }
.brand small { display: block; margin-top: .125rem; font-size: .5625rem; letter-spacing: .28em; }
.header nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem); }
.header nav a { font-size: .9375rem; font-weight: 700; transition: color .2s; }
.header nav a:hover { color: var(--blue); }
.cart-link { background: var(--blue); color: #fff; padding: .75rem 1rem; font-size: .8125rem; font-weight: 700; white-space: nowrap; }
.cart-link b { margin-left: .35rem; border-radius: 50%; background: var(--gold-light); color: var(--deep); padding: .2rem .42rem; font-size: .6875rem; }
.menu-button { display: none; border: 0; background: none; color: var(--deep); font-size: 1.5rem; }
.notice { position: fixed; top: 1rem; left: 50%; z-index: 100; transform: translateX(-50%); width: min(92vw, 30rem); padding: .875rem 1.125rem; box-shadow: 0 .75rem 2rem rgba(10,42,80,.15); font-size: .875rem; }
.notice.ok { background: #e7f8ee; color: #176739; border-left: .25rem solid #2da15e; }
.notice.bad { background: #fff0ee; color: #9d3026; border-left: .25rem solid #d24b3f; }

.hero { min-height: 39.5rem; overflow: hidden; background: radial-gradient(circle at 75% 45%, #0a63cb, var(--blue) 34%, #00347f 80%); display: grid; grid-template-columns: 1fr 1fr; padding: 0 max(5vw, calc((100vw - 82.5rem) / 2)); color: #fff; }
.hero-copy { align-self: center; padding: 4.5rem 0; position: relative; z-index: 2; }
.eyebrow { color: var(--gold-light); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow.dark { color: var(--blue); }
.hero h1 { margin: 1.25rem 0; font: 600 clamp(3.4rem, 6vw, 5.5rem)/.98 var(--serif); letter-spacing: -.025em; }
.hero h1 em, .section-heading h2 em, .story h2 em, .gift h2 em { color: var(--gold-light); font-weight: 600; }
.hero-copy > p { max-width: 31rem; color: #d9e5f5; font-size: 1rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin: 2rem 0; font-size: .875rem; font-weight: 700; }
.button { min-height: 3rem; padding: 0 1.25rem; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-size: .875rem; font-weight: 700; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-.125rem); }
.button.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--deep); }
.button.blue { background: var(--blue); color: #fff; box-shadow: 0 .75rem 1.75rem rgba(0,70,173,.18); }
.button:disabled { opacity: .55; cursor: wait; }
.trust { display: flex; flex-wrap: wrap; gap: 1.25rem; color: #ccdaee; font-size: .75rem; }
.hero-image { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero-image::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border: 1px solid rgba(235,198,89,.5); border-radius: 50%; box-shadow: 0 0 0 2.8rem rgba(255,255,255,.05), 0 0 0 7.5rem rgba(255,255,255,.03); animation: heroHalo 8s ease-in-out infinite; }
.hero-image img { position: relative; width: 88%; max-height: 35rem; object-fit: contain; object-position: center; filter: drop-shadow(1.5rem 1.875rem 2.3rem rgba(0,28,74,.42)); animation: heroFloat 7s ease-in-out infinite; }
.hero-seal { position: absolute; right: 4%; bottom: 18%; width: 6.75rem; aspect-ratio: 1; border-radius: 50%; background: rgba(5,37,88,.92); border: 1px solid var(--gold-light); display: grid; place-content: center; text-align: center; font-size: .6875rem; line-height: 1.5; }
.hero-seal b { color: var(--gold-light); }

.promises { max-width: 68.75rem; margin: -2.2rem auto 0; position: relative; z-index: 4; background: #fff; display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: 0 1rem 2.5rem rgba(25,58,105,.09); }
.promises article { padding: 1.75rem 1.875rem; border-right: 1px solid var(--line); }
.promises article:last-child { border: 0; }
.promises span { float: right; color: #e7edf5; font: 600 2rem var(--serif); }
.promises h3 { margin-bottom: .45rem; font: 600 1.2rem var(--serif); }
.promises p { margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.65; }
.section { padding: 6.5rem max(5vw, calc((100vw - 82.5rem) / 2)); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 2.75rem; }
.section-heading > div > span { color: var(--gold); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.section-heading h2, .story h2, .gift h2 { margin: .875rem 0 0; color: var(--deep); font: 600 clamp(2.5rem, 4vw, 3.625rem)/1.08 var(--serif); }
.section-heading > p { max-width: 27rem; margin-bottom: .25rem; color: var(--muted); font-size: .9375rem; line-height: 1.8; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem; align-items: stretch; }
.product-card { min-width: 0; height: 100%; overflow: hidden; background: #fff; border: 1px solid rgba(0,70,173,.09); border-radius: 1rem; box-shadow: 0 .65rem 1.8rem rgba(16,35,63,.08); display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.product-card:hover { transform: translateY(-.4rem); border-color: rgba(0,70,173,.2); box-shadow: 0 1.2rem 2.8rem rgba(16,35,63,.15); }
.product-photo { position: relative; display: block; width: 100%; aspect-ratio: 4/5; overflow: hidden; background: #e9f0f8; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.product-card:hover .product-photo img { transform: scale(1.045); }
.product-photo span { position: absolute; z-index: 2; top: .875rem; left: .875rem; max-width: calc(100% - 1.75rem); padding: .5rem .75rem; border-radius: 999px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--deep); box-shadow: 0 .35rem 1rem rgba(3,43,104,.2); font-size: .6875rem; font-weight: 800; line-height: 1; letter-spacing: .06em; text-transform: uppercase; }
.product-info { flex: 1; padding: 1.25rem; display: flex; flex-direction: column; }
.product-info > small { color: var(--muted); font-size: .6875rem; line-height: 1.5; letter-spacing: .09em; text-transform: uppercase; }
.product-info h3 { min-height: 3.25rem; margin: .55rem 0 .4rem; color: var(--deep); font: 600 1.2rem/1.35 var(--serif); }
.stars { color: var(--gold); font-size: .875rem; line-height: 1.4; }
.stars span { margin-left: .35rem; color: #7f8a98; font-size: .75rem; }
.product-buy { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: end; justify-content: space-between; gap: .75rem; }
.product-buy p { margin: 0; display: flex; flex-direction: column; }
.product-buy strong { color: var(--blue); font-size: 1.05rem; }
.product-buy del { margin-top: .1rem; color: #98a0aa; font-size: .75rem; }
.product-buy button { min-height: 2.5rem; border: 1px solid rgba(0,70,173,.25); border-radius: .65rem; background: #f5f8fc; color: var(--blue); padding: .55rem .8rem; font-size: .75rem; font-weight: 800; white-space: nowrap; transition: background .2s, color .2s; }
.product-buy button:hover { background: var(--blue); color: #fff; }

.story { background: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.story-image { position: relative; }
.story-image img { width: 100%; aspect-ratio: 5/4; object-fit: cover; object-position: center; border-radius: .75rem; }
.story-image > span { position: absolute; right: 5%; bottom: 5%; width: 6.5rem; aspect-ratio: 1; border-radius: 50%; background: var(--blue); border: .375rem solid #fff; color: var(--gold-light); display: grid; place-content: center; text-align: center; font-size: .6875rem; }
.story-image b { display: block; font: 600 2.15rem var(--serif); }
.story h2 { margin-bottom: 1.5rem; }
.story p, .gift p { color: var(--muted); font-size: .9375rem; line-height: 1.85; }
.story blockquote { margin: 1.5rem 0; padding: .35rem 0 .35rem 1.1rem; border-left: .18rem solid var(--gold); color: var(--blue); font: italic 600 1.1rem/1.6 var(--serif); }
.gift { background: linear-gradient(125deg, #002a68, #0054bd); color: #fff; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.gift h2 { color: #fff; }
.gift p { max-width: 31rem; margin: 1.5rem 0; color: #d9e5f5; }
.gift img { width: 100%; aspect-ratio: 5/4; object-fit: cover; object-position: center; border-radius: .75rem; box-shadow: 1.25rem 1.5rem 2.8rem rgba(0,27,72,.3); transform: rotate(2deg); }
.journal { background: #fff; }
.journal .section-heading > a { color: var(--blue); font-size: .875rem; font-weight: 700; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.post-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: .75rem; background: #fff; }
.post-grid article > a img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-grid article > div { padding: 1.25rem; }
.post-grid small { color: #8994a2; font-size: .75rem; }
.post-grid h3, .post-grid h2 { margin: .6rem 0; color: var(--deep); font: 600 1.2rem/1.4 var(--serif); }
.post-grid p { color: var(--muted); font-size: .875rem; line-height: 1.7; }

.footer { background: var(--deep); color: #fff; padding: 4rem max(5vw, calc((100vw - 82.5rem) / 2)) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 7vw; padding-bottom: 3rem; }
.footer-grid > div > b { display: block; margin-bottom: 1rem; color: var(--gold-light); font: 600 1.05rem var(--serif); }
.footer-grid p, .footer-grid a:not(.brand) { display: block; margin: .5rem 0; color: #b5c4d8; font-size: .8125rem; line-height: 1.8; }
.footer-grid > div:first-child p { max-width: 21rem; margin-top: 1.25rem; }
.copyright { padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.12); color: #8aa0bc; font-size: .75rem; }
.call-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 30; padding: .7rem 1rem; border-radius: 999px; background: var(--gold-light); color: var(--deep); box-shadow: 0 .75rem 1.875rem rgba(5,37,88,.25); font-size: .75rem; }
.call-float b { margin-left: .45rem; }

.inner { max-width: 82.5rem; margin: auto; padding: 3rem 5vw 6.25rem; }
.inner.narrow { max-width: 68.75rem; }
.breadcrumb { margin-bottom: 2.75rem; color: #8290a3; font-size: .8125rem; }
.breadcrumb a { color: var(--blue); }
.page-title { margin-bottom: 2.25rem; }
.page-title > span, .success-page > small { color: var(--gold); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.page-title h1 { margin: .6rem 0; color: var(--deep); font: 600 2.9rem var(--serif); }
.page-title.centered { margin: 2rem auto 3.5rem; text-align: center; }
.page-title.centered p { color: var(--muted); font-size: .9375rem; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.detail-image { overflow: hidden; background: #e9f0f8; border-radius: 1rem; aspect-ratio: 4/5; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.detail-copy h1 { margin: .875rem 0; color: var(--deep); font: 600 3rem/1.08 var(--serif); }
.detail-copy > p { color: var(--muted); font-size: .9375rem; line-height: 1.8; }
.detail-price { margin: 1rem 0 !important; }
.detail-price strong { color: var(--blue); font: 600 1.5rem var(--serif); }
.detail-price del { margin-left: .7rem; color: #999; font-size: .875rem; }
.detail-copy ul { margin: 1.25rem 0; padding-left: 1.2rem; color: var(--muted); font-size: .875rem; line-height: 2; }
.review-section { margin-top: 6rem; }
.review-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 3.5rem; }
.review-list article { padding: 1.25rem 0; border-top: 1px solid var(--line); }
.review-list article > div { display: flex; justify-content: space-between; gap: 1rem; }
.review-list article > div span { color: var(--gold); }
.review-list article small { display: block; margin-top: .25rem; color: #8d98a7; font-size: .75rem; }
.review-list article p { font-size: .9375rem; line-height: 1.75; }
.review-list article img { width: 5.625rem; aspect-ratio: 1; object-fit: cover; border-radius: .5rem; }
.review-list blockquote { margin: .75rem 0; padding: .75rem; background: #f2f6fb; font-size: .8125rem; }
.review-form, .cart-summary, .panel { padding: 1.5rem; border: 1px solid var(--line); border-radius: .75rem; background: #fff; }
.review-form h3, .cart-summary h2 { margin: 0 0 1rem; font: 600 1.5rem var(--serif); }
.review-form label, .checkout-fields label { display: block; margin: .85rem 0; color: #344a66; font-size: .8125rem; font-weight: 700; }
.review-form input, .review-form select, .review-form textarea, .checkout-fields input, .checkout-fields textarea, .cart-summary input { display: block; width: 100%; min-height: 2.75rem; margin-top: .4rem; padding: .7rem .8rem; border: 1px solid #d7e0ea; border-radius: .4rem; outline: 0; font-size: .875rem; }
.review-form textarea, .checkout-fields textarea { min-height: 5.5rem; resize: vertical; }
.form-note { margin: .5rem 0 1rem; color: var(--muted); font-size: .8125rem; }
.honeypot { position: absolute; left: -9999rem; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1.5fr .8fr; gap: 3rem; align-items: start; }
.cart-items { overflow: hidden; border: 1px solid var(--line); border-radius: .75rem; background: #fff; }
.cart-items article { padding: 1rem; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 5rem 1fr 6.25rem 6.25rem; gap: 1rem; align-items: center; }
.cart-items img { width: 5rem; aspect-ratio: 1; object-fit: cover; border-radius: .5rem; }
.cart-items small, .checkout-item { color: #8793a3; font-size: .75rem; }
.cart-items h3 { margin: .3rem 0; font: 600 1rem var(--serif); }
.cart-items strong, .cart-items article > b { color: var(--blue); font-size: .875rem; }
.qty { display: flex; align-items: center; }
.qty button { width: 1.8rem; height: 1.8rem; border: 1px solid var(--line); background: #fff; }
.qty span { width: 2rem; text-align: center; font-size: .8125rem; }
.cart-summary > p { margin: 0; padding: .75rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: .875rem; }
.cart-summary > p b { color: var(--ink); }
.cart-summary .discount b { color: #199358; }
.cart-summary .final { border: 0; font-size: 1rem; }
.cart-summary .final b { color: var(--blue); font: 600 1.35rem var(--serif); }
.cart-summary .button { width: 100%; }
.voucher-form { margin-bottom: .7rem; padding-bottom: 1rem; }
.voucher-form label { display: block; margin-bottom: .4rem; font-size: .8125rem; }
.voucher-form > div { display: flex; }
.voucher-form input { flex: 1; margin: 0; border-radius: .35rem 0 0 .35rem; }
.voucher-form button { border: 0; border-radius: 0 .35rem .35rem 0; background: var(--deep); color: #fff; padding: 0 1rem; font-size: .8125rem; }
.empty { padding: 4rem 0; text-align: center; }
.checkout-fields { padding: 1.5rem; border: 1px solid var(--line); border-radius: .75rem; background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-fields fieldset { margin: 1rem 0; padding: .75rem 0; border: 0; }
.checkout-fields legend { font-size: .875rem; font-weight: 700; }
.pay-option { padding: .85rem !important; border: 1px solid var(--line); border-radius: .5rem; display: flex !important; gap: .65rem; align-items: flex-start; }
.pay-option input { width: auto; min-height: auto; margin: .15rem 0; }
.pay-option b, .pay-option small { display: block; }
.pay-option small { margin-top: .2rem; color: var(--muted); font-size: .75rem; }
.checkout-item { margin: .65rem 0; display: grid; grid-template-columns: 2.75rem 1fr auto; gap: .6rem; align-items: center; }
.checkout-item img { width: 2.75rem; aspect-ratio: 1; object-fit: cover; border-radius: .35rem; }
.checkout-item b { color: var(--blue); font-size: .8125rem; }
.secure-note { display: block; margin-top: .75rem; color: #8a96a5; text-align: center; font-size: .75rem; }
.success-page { max-width: 50rem; margin: auto; padding: 6rem 1.25rem; text-align: center; }
.success-icon { width: 4.5rem; aspect-ratio: 1; margin: 0 auto 1.4rem; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 2.15rem; }
.success-page h1 { margin: .75rem 0; color: var(--deep); font: 600 2.8rem var(--serif); }
.success-page > p { color: var(--muted); line-height: 1.8; }
.payment-box { max-width: 35rem; margin: 1.75rem auto; padding: 1.25rem; background: #f3f7fb; border: 1px solid var(--line); border-radius: .75rem; display: flex; align-items: center; gap: 1.5rem; text-align: left; }
.payment-box img { width: 9rem; aspect-ratio: 1; }
.payment-box h2 { color: var(--deep); font: 600 1.25rem var(--serif); }
.payment-box p { color: var(--muted); font-size: .8125rem; line-height: 1.8; }
.article-page { max-width: 56.25rem; margin: auto; padding: 3rem 1.25rem 6rem; }
.article-page > header { max-width: 47rem; margin: 2.75rem auto; text-align: center; }
.article-page > header > span { color: var(--gold); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.article-page > header h1 { margin: 1rem 0; color: var(--deep); font: 600 3.2rem/1.1 var(--serif); }
.article-page > header p { color: var(--muted); line-height: 1.8; }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: .75rem; }
.article-content { max-width: 44rem; margin: 2.5rem auto; font-size: 1rem; line-height: 1.9; }
.article-content h2 { margin-top: 2rem; color: var(--deep); font: 600 1.8rem var(--serif); }
.share { max-width: 44rem; margin: auto; padding-top: 1.25rem; border-top: 1px solid var(--line); display: flex; gap: 1rem; font-size: .8125rem; }
.share b { margin-right: auto; }
.share a { color: var(--blue); }

.home-reviews { background: linear-gradient(180deg, #f7f3e9, #fbfaf6); }
.home-review-layout, .blog-comments { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(18rem,.65fr); gap: 3rem; align-items: start; }
.home-review-layout .review-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.home-review-layout .review-list article { padding: 1.25rem; border: 1px solid var(--line); border-radius: .75rem; background: #fff; }
.post-actions { max-width: 44rem; margin: 2rem auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 1rem; }
.post-actions > button { border: 1px solid #e2a3a3; border-radius: 999px; background: #fff; color: #a73535; padding: .65rem 1rem; font-weight: 800; }
.post-actions > button.liked { background: #a73535; color: #fff; }
.post-actions .share { flex: 1; margin: 0; padding: 0; border: 0; }
.blog-comments { max-width: 50rem; margin: 4rem auto 0; }
.blog-comments h2 { color: var(--deep); font: 600 2rem var(--serif); }
.blog-comments article { padding: 1rem 0; border-top: 1px solid var(--line); }
.blog-comments article small { display: block; color: var(--muted); font-size: .75rem; }
.blog-comments article p { margin: .45rem 0 0; }

@keyframes heroFloat { 0%,100% { transform: translate3d(0,0,0) rotate(1deg); } 50% { transform: translate3d(0,-1rem,0) rotate(-1deg); } }
@keyframes heroHalo { 0%,100% { transform: scale(.96); opacity: .65; } 50% { transform: scale(1.04); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero-image img, .hero-image::before { animation: none; } }

@media (max-width: 64rem) {
  .header { padding-inline: 2rem; }
  .hero, .section { padding-inline: 2rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story, .gift, .product-detail { grid-template-columns: 1fr; }
  .story-image { order: 2; }
  .review-layout, .cart-layout, .checkout-layout, .home-review-layout, .blog-comments { grid-template-columns: 1fr; }
  .review-form { order: -1; }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 48rem) {
  .header { min-height: 4.25rem; padding-inline: 1rem; }
  .menu-button { display: block; order: 1; }
  .header .brand { order: 0; }
  .cart-link { order: 2; }
  .header nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1.25rem; background: #fff; flex-direction: column; align-items: flex-start; box-shadow: 0 .75rem 1.75rem rgba(23,55,93,.12); }
  .header nav.open { display: flex; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-inline: 1.25rem; }
  .hero-copy { padding: 4rem 0 2rem; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4rem); }
  .hero-image { min-height: 28rem; }
  .hero-image img { width: min(78vw, 23rem); }
  .promises { margin: 0; grid-template-columns: 1fr; }
  .promises article { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 4.5rem 1.25rem; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cart-items article { grid-template-columns: 4rem 1fr 5rem; }
  .cart-items img { width: 4rem; }
  .cart-items article > b { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .article-page > header h1 { font-size: 2.4rem; }
  .home-review-layout .review-list { grid-template-columns: 1fr; }
  .post-actions { align-items: flex-start; flex-direction: column; }
  .post-actions .share { width: 100%; }
}

@media (max-width: 37.5rem) {
  .topbar { font-size: .6875rem; }
  .site-logo-image { width: 2.85rem; height: 2.85rem; }
  .brand b { font-size: .875rem; }
  .brand small { font-size: .5rem; }
  .cart-link { padding: .7rem; font-size: 0; }
  .cart-link b { font-size: .6875rem; }
  .product-grid { gap: .875rem; }
  .product-info { padding: .9rem; }
  .product-info h3 { min-height: 2.8rem; font-size: 1.05rem; }
  .product-buy { align-items: stretch; flex-direction: column; }
  .product-buy p { flex-direction: row; align-items: baseline; gap: .4rem; }
  .product-buy button { width: 100%; }
  .post-grid { grid-template-columns: 1fr; }
  .call-float span { display: none; }
}

@media (max-width: 26.25rem) {
  .product-grid { grid-template-columns: 1fr; }
  .product-info h3 { min-height: auto; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .payment-box { flex-direction: column; text-align: center; }
}
