:root {
  --cream: #f4ecdf;
  --cream-light: #fbf7f0;
  --sand: #ded0bd;
  --cocoa: #3a2924;
  --cocoa-soft: #6a5449;
  --green: #314a3b;
  --green-light: #dce5dc;
  --terracotta: #9f5945;
  --line: rgba(58, 41, 36, 0.18);
  --shadow: 0 24px 70px rgba(52, 36, 29, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--cocoa); font: 400 1rem/1.65 var(--sans); overflow-x: hidden; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
section[id] { scroll-margin-top: 108px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-150%); background: white; padding: .7rem 1rem; border-radius: 999px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244,236,223,.91); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: border-color .25s, box-shadow .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(58,41,36,.06); }
.nav-wrap { max-width: 1280px; height: 74px; padding: 0 22px; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; gap: .7rem; align-items: center; text-decoration: none; font-weight: 800; font-size: .92rem; letter-spacing: .13em; }
.brand-mark { position: relative; width: 27px; height: 25px; display: inline-block; }
.brand-mark::after { content: ""; position: absolute; left: 7px; bottom: 0; width: 15px; height: 12px; background: var(--green); border-radius: 60% 60% 50% 50%; transform: rotate(-4deg); }
.brand-mark span { position: absolute; width: 6px; height: 8px; background: var(--green); border-radius: 50%; }
.brand-mark span:nth-child(1) { left: 1px; top: 6px; transform: rotate(-22deg); }
.brand-mark span:nth-child(2) { left: 8px; top: 0; }
.brand-mark span:nth-child(3) { right: 4px; top: 1px; }
.brand-mark span:nth-child(4) { right: 0; top: 8px; transform: rotate(22deg); }
.menu-button { width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 7px; background: transparent; border: 1px solid var(--line); border-radius: 50%; }
.menu-button span:not(.sr-only) { width: 19px; height: 1px; background: var(--cocoa); transition: transform .2s; }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
.main-nav { position: fixed; inset: 74px 0 auto; padding: 24px 22px 30px; display: none; flex-direction: column; gap: 1.25rem; background: var(--cream-light); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); font-weight: 650; }
.main-nav.open { display: flex; }
.main-nav a { text-decoration: none; }
.nav-cta { padding: .85rem 1.1rem; text-align: center; color: white; background: var(--green); border-radius: 999px; }

.section, .hero { max-width: 1280px; margin: 0 auto; padding: 82px 22px; }
.eyebrow { margin: 0 0 1rem; color: var(--terracotta); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
h1 em, h2 em { color: var(--terracotta); font-weight: 400; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3.9rem, 18vw, 7.8rem); }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.65rem, 10vw, 5.6rem); }
h3 { line-height: 1.2; }
.button { min-height: 52px; padding: .88rem 1.25rem; display: inline-flex; justify-content: center; align-items: center; gap: .7rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 760; transition: transform .2s, box-shadow .2s, background .2s; }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 12px 24px rgba(49,74,59,.18); }
.button-primary:hover { background: #263c2f; box-shadow: 0 15px 30px rgba(49,74,59,.24); }
.button-outline { border-color: var(--cocoa); }
.button-light { background: var(--cream-light); color: var(--green); }

.hero { min-height: calc(100svh - 74px); padding-top: 48px; display: grid; align-items: center; gap: 46px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 32rem; margin-bottom: 1.8rem; font-size: 1.12rem; color: var(--cocoa-soft); }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.text-link { padding-bottom: .2rem; border-bottom: 1px solid var(--cocoa); text-decoration: none; font-weight: 700; }
.hero-note { margin: 2rem 0 0; display: flex; align-items: center; gap: .6rem; color: var(--cocoa-soft); font-size: .9rem; }
.hero-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-light); }
.hero-visual { position: relative; width: min(100%, 520px); margin: 0 auto; }
.hero-frame { position: relative; height: min(64vh, 650px); min-height: 430px; overflow: hidden; border-radius: 48% 48% 12px 12px; background: var(--sand); box-shadow: var(--shadow); }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(48,31,26,.16)); pointer-events: none; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 45%; }
.photo-tag { position: absolute; z-index: 2; padding: .75rem .9rem; background: var(--cream-light); border: 1px solid rgba(58,41,36,.13); box-shadow: 0 10px 30px rgba(58,41,36,.12); font-size: .68rem; font-weight: 800; line-height: 1.25; letter-spacing: .09em; text-transform: uppercase; }
.photo-tag span { color: var(--cocoa-soft); font-weight: 600; }
.photo-tag-top { top: 11%; left: -7px; transform: rotate(-4deg); }
.photo-tag-bottom { right: -5px; bottom: 9%; transform: rotate(3deg); }

.moments { border-top: 1px solid var(--line); }
.section-heading { max-width: 800px; }
.section-heading > p:last-child, .products-intro > p:last-child, .faq-intro > p:last-child { max-width: 590px; color: var(--cocoa-soft); font-size: 1.05rem; }
.moment-grid { margin-top: 3rem; display: grid; gap: 14px; }
.moment-card { position: relative; isolation: isolate; padding: 0; display: flex; flex-direction: column; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,.25); color: white; background: #2c4034; box-shadow: 0 16px 45px rgba(58,41,36,.1); transition: box-shadow .35s ease; }
.moment-image { width: 100%; height: auto; aspect-ratio: 3 / 4; flex: none; object-fit: cover; object-position: center 52%; }
.moment-card::after { content: ""; position: absolute; z-index: 1; inset: 0 0 auto; aspect-ratio: 3 / 4; pointer-events: none; background: linear-gradient(180deg, rgba(26,35,28,.12) 0%, transparent 35%, rgba(44,64,52,.04) 87%, #2c4034 100%); }
.moment-rain .moment-image { object-position: center; }
.moment-walk .moment-image { object-position: center 48%; }
.moment-copy { position: relative; z-index: 2; flex: 1; padding: .8rem 1.5rem 1.65rem; }
.moment-card h3 { margin-bottom: .6rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.moment-card p { margin: 0; color: #e1e6dd; font-size: .94rem; }
.moment-number { position: absolute; z-index: 2; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: .55rem; padding: .5rem .7rem; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(33,47,38,.75); color: white; font: italic 1.08rem var(--serif); backdrop-filter: blur(8px); }
.moment-icon { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.reveal-word { display: inline-block; }

.products { max-width: none; background: var(--cream-light); }
.products > * { max-width: 1236px; margin-left: auto; margin-right: auto; }
.products-intro { margin-bottom: 3rem; }
.product-layout { display: grid; gap: 26px; }
.product-photo { position: relative; }
.product-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center; border-radius: 10px; }
.product-photo p { position: absolute; left: 14px; bottom: 14px; margin: 0; padding: .55rem .8rem; border-radius: 999px; background: rgba(251,247,240,.92); font-size: .75rem; font-weight: 700; }
.product-photo p span { color: var(--green); }
.product-list { display: grid; gap: 14px; }
.product-card { padding: 1.6rem; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.product-card.featured { color: white; background: var(--green); border-color: var(--green); }
.product-topline { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem; font-weight: 800; }
.size-pill { padding: .25rem .65rem; border: 1px solid currentColor; border-radius: 999px; font-size: .72rem; }
.product-price { margin: 1.2rem 0 1rem; display: flex; align-items: end; gap: .55rem; }
.product-price strong { font: 400 4.2rem/.9 var(--serif); letter-spacing: -.06em; }
.product-price span { font-size: .78rem; font-weight: 700; }
.product-card p { color: var(--cocoa-soft); }
.product-card.featured p { color: rgba(255,255,255,.75); }
.product-card.featured .button-primary { color: var(--green); background: var(--cream-light); box-shadow: none; }

.real-details { border-top: 1px solid var(--line); }
.details-heading { margin-bottom: 3rem; display: grid; gap: 1rem; }
.details-heading h2 { margin-bottom: 0; }
.details-heading > p { max-width: 560px; color: var(--cocoa-soft); }
.details-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.detail-card { position: relative; margin: 0; overflow: hidden; border-radius: 8px; background: var(--sand); }
.detail-card-wide { grid-column: 1 / -1; }
.detail-card img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .5s ease; }
.detail-card-wide img { aspect-ratio: 1.35 / 1; object-position: center 72%; }
.detail-card figcaption { position: absolute; inset: auto 8px 8px; padding: .55rem .7rem; display: flex; justify-content: space-between; gap: .6rem; border-radius: 4px; background: rgba(251,247,240,.92); color: var(--cocoa); font-size: .68rem; font-weight: 800; letter-spacing: .03em; backdrop-filter: blur(8px); }
.detail-card figcaption span { color: var(--terracotta); font-family: var(--serif); font-style: italic; }

.care { display: grid; gap: 45px; align-items: center; }
.care-photo { position: relative; max-width: 500px; padding: 18px 0 0 18px; }
.care-photo::before { content: ""; position: absolute; inset: 0 18px 18px 0; border: 1px solid var(--terracotta); border-radius: 180px 180px 10px 10px; }
.care-photo img { position: relative; width: 100%; height: 560px; object-fit: cover; object-position: 50% 47%; border-radius: 180px 180px 10px 10px; }
.care-copy > p:not(.eyebrow) { color: var(--cocoa-soft); font-size: 1.08rem; }
.benefit-list { margin: 2.3rem 0 0; }
.benefit-list div { padding: 1rem 0; display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.benefit-list dt { font-weight: 800; }
.benefit-list dd { margin: 0; color: var(--cocoa-soft); }

.steps { max-width: none; background: #dfd0bd; }
.steps > * { max-width: 1236px; margin-left: auto; margin-right: auto; }
.section-heading.compact { max-width: 760px; }
.steps-list { padding: 0; margin-top: 3rem; display: grid; list-style: none; border-top: 1px solid rgba(58,41,36,.25); }
.steps-list li { padding: 1.3rem 0; display: grid; grid-template-columns: 46px 1fr; gap: 1rem; border-bottom: 1px solid rgba(58,41,36,.25); }
.steps-list li > span { font: italic 1.25rem var(--serif); color: var(--terracotta); }
.steps-list h3 { margin-bottom: .2rem; font-size: 1.05rem; }
.steps-list p { margin: 0; color: var(--cocoa-soft); }
.steps-cta { margin-top: 2.2rem; }

.delivery { margin-top: 80px; margin-bottom: 80px; padding: 2.2rem; display: grid; gap: 22px; align-items: center; color: white; background: var(--green); border-radius: 10px; }
.delivery-icon { width: 90px; height: 90px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.delivery-icon svg { width: 66px; fill: none; stroke: var(--cream); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.delivery-copy .eyebrow { color: #caa996; }
.delivery-copy h2 { margin-bottom: .7rem; font-size: clamp(2.3rem, 8vw, 4rem); }
.delivery-copy p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.delivery-form { grid-column: 1 / -1; width: 100%; padding-top: 1.8rem; margin-top: .5rem; border-top: 1px solid rgba(255,255,255,.23); }
.delivery-form h3 { margin-bottom: .55rem; font: 400 1.65rem/1.15 var(--serif); }
.delivery-form > p, .delivery-form .form-note { max-width: 760px; color: #d7e0d8; font-size: .9rem; }
.delivery-options { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 1.35rem 0; border: 0; }
.delivery-options legend { width: 100%; margin-bottom: .7rem; font-size: .88rem; font-weight: 750; }
.delivery-options label { display: inline-flex; align-items: center; gap: .6rem; min-height: 48px; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.32); border-radius: 8px; cursor: pointer; transition: background .2s, border-color .2s; }
.delivery-options label:has(input:checked) { color: var(--green); background: var(--cream-light); border-color: var(--cream-light); }
.delivery-options input { width: 17px; height: 17px; margin: 0; accent-color: var(--green); }
.delivery-fields { display: grid; gap: 1rem; align-items: end; }
.form-field { display: grid; gap: .45rem; min-width: 0; }
.form-field > label { font-weight: 750; font-size: .86rem; }
.form-field input, .form-field select { width: 100%; min-height: 52px; padding: .8rem .9rem; border: 1px solid #b9c9bc; border-radius: 7px; background: var(--cream-light); color: var(--cocoa); }
.form-field select { padding-right: 2rem; }
.form-field input::placeholder { color: #796b61; opacity: 1; }
.form-field input[aria-invalid="true"] { border-color: #ffd4b7; outline: 2px solid #ffd4b7; }
.form-field small { color: #d7e0d8; font-size: .78rem; }
.delivery-form button { width: 100%; }
.delivery-form button:focus-visible, .delivery-form a:focus-visible, .delivery-form input:focus-visible, .delivery-form select:focus-visible { outline-color: #efc3a9; }
.delivery-form .form-note { margin: 1rem 0 0; }
.delivery-result { margin-top: 1.25rem; padding: 1.2rem; border: 1px solid rgba(255,255,255,.28); border-radius: 8px; background: rgba(255,255,255,.06); }
.delivery-result p { margin-bottom: 1rem; color: #eff3ed; font-size: .93rem; }
.delivery-result .button { width: 100%; }
.price-note { font-size: .84rem; line-height: 1.5; border-bottom: 1px solid currentColor; padding-bottom: 1rem; }
.hero-area { margin: .7rem 0 0; font-size: .84rem; color: var(--cocoa-soft); }
.hero-note { align-items: baseline; }
.hero-note span { flex: 0 0 8px; }
.delivery-copy .delivery-schedule { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .9rem; }
.delivery-schedule strong { display: block; color: var(--cream-light); }
.delivery-consult { padding-top: 0; }
.delivery-consult h2 { font-size: clamp(2.65rem, 7vw, 4.3rem); }
.delivery-form { padding: 1.5rem; margin-top: 2rem; border: 1px solid var(--line); border-radius: 12px; background: var(--cream-light); }
.delivery-form .form-note, .delivery-form > p, .delivery-result p { color: var(--cocoa-soft); }
.delivery-form .form-note { margin: 1rem 0 1.5rem; }
.delivery-options label { border-color: var(--line); flex: 1 1 240px; }
.delivery-options label:has(input:checked) { background: var(--green-light); border-color: var(--green); }
.delivery-options small { display: block; color: var(--cocoa-soft); font-size: .82rem; }
.delivery-result { background: #fff; border-color: var(--line); }
.delivery-form button:focus-visible, .delivery-form a:focus-visible, .delivery-form input:focus-visible, .delivery-form select:focus-visible { outline-color: var(--terracotta); }
.form-field input[aria-invalid="true"] { border-color: var(--terracotta); outline-color: var(--terracotta); }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: 100px; }
select, input, button { font: inherit; }
@media (min-width: 720px) { .delivery-form { max-width: 850px; padding: 2rem; } .delivery-form button { width: auto; } }

.faq { display: grid; gap: 40px; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font: 300 1.6rem/1 var(--sans); transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: 0; padding: 0 2.5rem 1.3rem 0; color: var(--cocoa-soft); }

.wholesale { max-width: 1236px; margin: 0 auto 20px; padding: 1.2rem 22px; display: flex; flex-direction: column; gap: .7rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--cocoa-soft); font-size: .91rem; }
.wholesale p { margin: 0; }
.wholesale a { flex: none; font-weight: 800; text-underline-offset: 4px; }
.final-cta { padding-top: 100px; padding-bottom: 120px; text-align: center; }
.final-cta h2 { max-width: 950px; margin-left: auto; margin-right: auto; }

.site-footer { position: relative; padding: 42px 22px 100px; display: grid; gap: 1.2rem; background: #2c211e; color: var(--cream); }
.site-footer .brand-mark span, .site-footer .brand-mark::after { background: var(--cream); }
.footer-brand p { margin: .5rem 0 0; color: #c7b7a8; font-family: var(--serif); font-style: italic; }
.site-footer > p { margin: 0; color: #c7b7a8; }
.site-footer .legal { font-size: .72rem; color: #8f7d71; }
.back-top { position: absolute; right: 22px; bottom: 42px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; text-decoration: none; }
.floating-wa { position: fixed; z-index: 40; right: 16px; bottom: 16px; min-width: 56px; height: 56px; padding: 0 18px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; color: white; background: #26714b; box-shadow: 0 14px 35px rgba(28,58,39,.3); text-decoration: none; font-size: .85rem; font-weight: 800; }
.floating-wa svg { width: 24px; fill: currentColor; }

@media (min-width: 720px) {
  .section, .hero { padding-left: 40px; padding-right: 40px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .moment-grid { grid-template-columns: repeat(3, 1fr); }
  .moment-copy { padding: .8rem 1.3rem 1.5rem; }
  .moment-card h3 { font-size: 1.7rem; }
  .product-layout { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
  .product-photo img { height: 100%; aspect-ratio: auto; }
  .details-heading { grid-template-columns: 1.2fr .8fr; align-items: end; }
  .details-heading > p { margin-bottom: .45rem; }
  .details-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 16px; }
  .detail-card-wide { grid-column: auto; }
  .detail-card img, .detail-card-wide img { height: 520px; aspect-ratio: auto; }
  .detail-card-wide img { object-position: center 68%; }
  .care { grid-template-columns: .85fr 1.15fr; }
  .benefit-list div { grid-template-columns: 145px 1fr; gap: 1.2rem; }
  .steps-list { grid-template-columns: repeat(4, 1fr); }
  .steps-list li { padding: 1.4rem; grid-template-columns: 1fr; border-right: 1px solid rgba(58,41,36,.25); }
  .steps-list li:last-child { border-right: 0; }
  .delivery { grid-template-columns: auto 1fr auto; padding: 2.5rem 3rem; }
  .delivery-fields { grid-template-columns: minmax(180px, 1fr) minmax(145px, .65fr); }
  .delivery-fields > .button { grid-column: 1 / -1; width: max-content; }
  .delivery-result .button { width: auto; }
  .faq { grid-template-columns: .8fr 1.2fr; }
  .wholesale { flex-direction: row; justify-content: space-between; align-items: center; }
  .site-footer { padding: 55px 40px; grid-template-columns: 1fr auto auto; align-items: end; }
  .site-footer .legal { text-align: right; }
  .back-top { right: 40px; top: -23px; bottom: auto; background: #2c211e; }
}

@media (min-width: 960px) {
  .nav-wrap { height: 86px; padding-left: 40px; padding-right: 40px; }
  .menu-button { display: none; }
  .main-nav { position: static; padding: 0; display: flex; flex-direction: row; align-items: center; gap: 1.5rem; background: transparent; border: 0; box-shadow: none; font-size: .86rem; }
  .main-nav > a:not(.nav-cta) { position: relative; }
  .main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .2s; }
  .main-nav > a:not(.nav-cta):hover::after { right: 0; }
  .nav-cta { padding: .7rem 1rem; }
  .hero { min-height: calc(100svh - 86px); grid-template-columns: 1fr .82fr; gap: 6vw; }
  .hero-copy { padding-left: 4vw; }
  .hero-visual { margin-right: 3vw; }
  .photo-tag-top { left: -34px; }
  .photo-tag-bottom { right: -28px; }
  .moments { padding-top: 120px; padding-bottom: 120px; }
  .moment-copy { padding: .9rem 1.75rem 1.9rem; }
  .moment-card h3 { font-size: 2rem; }
  .delivery-fields { grid-template-columns: minmax(220px, 1fr) minmax(180px, .65fr) auto; }
  .delivery-fields > .button { grid-column: auto; }
  .products { padding-top: 120px; padding-bottom: 120px; }
  .real-details { padding-top: 120px; padding-bottom: 120px; }
  .care { padding-top: 135px; padding-bottom: 135px; gap: 8vw; }
  .care-copy { padding-right: 4vw; }
  .steps { padding-top: 115px; padding-bottom: 115px; }
  .delivery { margin-top: 110px; margin-bottom: 110px; }
  .faq { padding-top: 110px; padding-bottom: 110px; }
  .floating-wa span { display: inline; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .moment-card:hover { box-shadow: 0 20px 46px rgba(58,41,36,.17); }
  .detail-card:hover img { transform: scale(1.018); }
  .delivery-options label:hover { border-color: var(--cream-light); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .button:hover, .detail-card:hover img { transform: none; }
}
