:root {
  --navy-1000: #020915;
  --navy-950: #041022;
  --navy-900: #07162d;
  --navy-850: #0a1e38;
  --navy-700: #183555;
  --cream-25: #fdfcf9;
  --cream-50: #faf8f3;
  --cream-100: #f3efe6;
  --cream-200: #e7dece;
  --gold-200: #e6d4aa;
  --gold-400: #cdb176;
  --gold-500: #b59150;
  --gold-700: #785925;
  --lilac-100: #eeeafd;
  --lilac-200: #ddd5f6;
  --lilac-400: #a991db;
  --ink: #111827;
  --muted: #626b78;
  --line: rgba(7,22,45,.12);
  --line-light: rgba(255,255,255,.13);
  --shadow-sm: 0 12px 34px rgba(3,15,31,.08);
  --shadow-lg: 0 32px 100px rgba(3,15,31,.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream-25); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-150%); background: white; color: var(--navy-900); padding: 10px 14px; border-radius: 4px; }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.statusbar { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 7px 20px; background: var(--navy-950); color: rgba(255,255,255,.78); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lilac-400); box-shadow: 0 0 16px rgba(169,145,219,.9); }
.status-separator { color: var(--gold-400); }

.site-header { position: sticky; top: 0; z-index: 80; background: rgba(253,252,249,.9); border-bottom: 1px solid rgba(7,22,45,.08); backdrop-filter: blur(20px); }
.nav-shell { width: min(1240px, calc(100% - 38px)); height: 78px; margin: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-logo { width: 47px; height: 47px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(181,145,80,.3); box-shadow: 0 7px 22px rgba(7,22,45,.12); }
.brand-word { color: var(--navy-900); font-family: var(--serif); font-size: 21px; letter-spacing: .24em; }
.nav-links { display: flex; justify-content: center; gap: 32px; }
.nav-links a { position: relative; padding: 10px 0; color: #364152; font-size: 13px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--gold-500); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.nav-actions { display: flex; gap: 9px; }
.round-action { position: relative; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: .2s ease; }
.round-action:hover { background: var(--cream-100); transform: translateY(-1px); }
.cart-count { position: absolute; right: -3px; top: -5px; min-width: 19px; height: 19px; padding: 0 5px; display: grid; place-items: center; border-radius: 10px; background: var(--navy-900); color: white; font-size: 10px; border: 2px solid var(--cream-25); }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; margin: 7px 0; background: var(--navy-900); }

.hero { min-height: 745px; position: relative; overflow: hidden; background: radial-gradient(circle at 82% 22%, rgba(221,213,246,.52), transparent 25%), linear-gradient(125deg, #fdfcf9 0%, #f5efe4 54%, #ece2d1 100%); }
.hero::after { content: ""; position: absolute; inset: auto -10% -55% 26%; height: 620px; border-radius: 50%; background: var(--navy-900); opacity: .035; transform: rotate(-7deg); }
.hero-shell { position: relative; z-index: 2; width: min(1240px, calc(100% - 38px)); min-height: 745px; margin: auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; padding: 78px 0 92px; }
.hero-copy { max-width: 690px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--gold-700); font-size: 11px; text-transform: uppercase; letter-spacing: .19em; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--gold-500); }
.eyebrow.light { color: var(--gold-200); }
.hero h1, .section-heading h2, .brand-story h2, .newsletter-card h2, .modal h2, .drawer h2 { margin: 0; color: var(--navy-900); font-family: var(--serif); font-weight: 500; }
.hero h1 { font-size: clamp(52px, 6.4vw, 92px); line-height: .98; letter-spacing: -.046em; }
.hero h1 em { color: var(--navy-700); font-weight: 400; }
.hero-lead { max-width: 640px; margin: 30px 0 0; color: #4e5968; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button { min-height: 53px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 2px; cursor: pointer; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy-900); color: white; box-shadow: 0 16px 34px rgba(7,22,45,.18); }
.button-primary:hover { background: #0a2341; }
.button-ghost { color: var(--navy-900); border: 1px solid rgba(7,22,45,.24); background: rgba(255,255,255,.28); }
.button-full { width: 100%; }
.hero-proof { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 8px 22px; color: #6a7280; font-size: 12px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof span::before { content: ""; width: 5px; height: 5px; border: 1px solid var(--gold-500); transform: rotate(45deg); }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-disc { position: relative; width: min(520px, 92%); aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg); }
.logo-disc img { width: 100%; height: 100%; object-fit: cover; }
.logo-halo { position: absolute; width: 540px; height: 540px; max-width: 98%; max-height: 98%; border-radius: 50%; border: 1px solid rgba(181,145,80,.38); }
.logo-halo::before, .logo-halo::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(169,145,219,.2); }
.logo-halo::before { inset: -25px; }
.logo-halo::after { inset: 35px; }
.floating-card { position: absolute; min-width: 188px; padding: 17px 18px; background: rgba(253,252,249,.88); border: 1px solid rgba(181,145,80,.28); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); }
.floating-card strong { display: block; margin-top: 6px; color: var(--navy-900); font-family: var(--serif); font-size: 16px; font-weight: 500; }
.floating-top { right: -10px; top: 92px; }
.floating-bottom { left: -38px; bottom: 70px; }
.micro-label { color: var(--gold-700); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.orbit-one, .orbit-two { position: absolute; border-radius: 50%; border: 1px solid rgba(181,145,80,.16); }
.orbit-one { width: 500px; height: 500px; left: -330px; top: 80px; }
.orbit-two { width: 700px; height: 700px; right: -460px; bottom: -430px; }

.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy-900); color: white; }
.service-strip > div { min-height: 112px; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 22px 34px; border-right: 1px solid var(--line-light); }
.service-strip > div:last-child { border-right: 0; }
.service-strip strong { color: var(--gold-200); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.service-strip span { color: rgba(255,255,255,.72); font-size: 13px; }

.section { width: min(1240px, calc(100% - 38px)); margin: auto; padding: 112px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading h2, .newsletter-card h2 { font-size: clamp(38px, 4.6vw, 62px); line-height: 1.04; letter-spacing: -.035em; }
.split-heading { display: grid; grid-template-columns: 1fr .74fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); line-height: 1.72; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card { min-height: 220px; position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); background: var(--cream-50); cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(181,145,80,.42); }
.category-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -65px; bottom: -75px; border-radius: 50%; background: radial-gradient(circle, rgba(221,213,246,.66), rgba(221,213,246,0) 70%); }
.category-number { color: var(--gold-500); font-family: var(--serif); font-size: 13px; }
.category-card h3 { margin: 55px 0 8px; color: var(--navy-900); font-family: var(--serif); font-size: 28px; font-weight: 500; }
.category-card p { max-width: 280px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.category-arrow { position: absolute; right: 24px; top: 24px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

.collection-section { padding-top: 70px; }
.collection-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.collection-heading h2 { font-size: clamp(38px, 4.6vw, 62px); }
.filter-row { max-width: 690px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { min-height: 37px; padding: 0 14px; border: 1px solid var(--line); background: transparent; color: #4c5665; font-size: 11px; letter-spacing: .05em; cursor: pointer; }
.filter-button.active { color: white; background: var(--navy-900); border-color: var(--navy-900); }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin: -18px 0 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.collection-toolbar p { margin: 0; color: var(--muted); font-size: 12px; }
.collection-toolbar select, .checkout-form select { min-height: 40px; border: 1px solid var(--line); background: white; color: var(--navy-900); padding: 0 34px 0 12px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 18px; }
.product-card { position: relative; background: white; border: 1px solid rgba(7,22,45,.09); transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.product-image-button { width: 100%; display: block; padding: 0; border: 0; background: transparent; cursor: pointer; }
.product-image { aspect-ratio: 1; width: 100%; object-fit: cover; background: var(--cream-100); }
.product-badge { position: absolute; left: 14px; top: 14px; z-index: 2; padding: 7px 9px; background: rgba(253,252,249,.9); border: 1px solid rgba(181,145,80,.25); color: var(--gold-700); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; backdrop-filter: blur(10px); }
.product-info { padding: 19px 18px 20px; }
.product-category { color: var(--gold-700); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.product-title { margin: 8px 0 5px; color: var(--navy-900); font-family: var(--serif); font-size: 21px; font-weight: 500; }
.product-description { min-height: 40px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-bottom { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product-price { color: var(--navy-900); font-size: 15px; font-weight: 700; }
.add-button { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--navy-900); cursor: pointer; transition: .2s ease; }
.add-button:hover { color: white; background: var(--navy-900); border-color: var(--navy-900); }
.add-button svg { width: 17px; }
.no-results { grid-column: 1 / -1; padding: 70px 30px; text-align: center; background: var(--cream-50); border: 1px solid var(--line); }
.no-results h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 28px; color: var(--navy-900); }
.no-results p { margin: 0; color: var(--muted); }

.brand-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: var(--navy-900); }
.brand-story-visual { min-height: 680px; overflow: hidden; position: relative; }
.brand-story-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(7,22,45,.55)); }
.brand-story-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); filter: saturate(.88) contrast(1.05); }
.brand-story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 7vw, 110px); color: white; }
.brand-story h2 { color: white; font-size: clamp(42px, 5vw, 72px); line-height: 1.03; letter-spacing: -.04em; }
.brand-story-copy > p:not(.eyebrow):not(.brand-quote) { margin: 28px 0 0; color: rgba(255,255,255,.69); font-size: 16px; line-height: 1.8; }
.brand-quote { margin: 42px 0 0; padding-top: 28px; border-top: 1px solid var(--line-light); color: var(--gold-200); font-family: var(--serif); font-size: 22px; line-height: 1.5; }

.newsletter-section { padding-top: 96px; padding-bottom: 96px; }
.newsletter-card { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; padding: clamp(34px, 6vw, 76px); background: linear-gradient(120deg, var(--cream-100), #f9f7f2); border: 1px solid rgba(181,145,80,.25); }
.newsletter-card p:not(.eyebrow) { max-width: 620px; color: var(--muted); line-height: 1.65; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form input { min-height: 53px; width: 100%; border: 1px solid var(--line); background: white; padding: 0 16px; color: var(--navy-900); }
.newsletter-form small { grid-column: 1 / -1; min-height: 18px; color: var(--gold-700); }

.footer { padding: 68px max(19px, calc((100% - 1240px) / 2)) 22px; background: var(--navy-950); color: rgba(255,255,255,.66); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 56px; padding-bottom: 58px; }
.footer-brand .brand-word { color: white; }
.footer-grid > div:first-child p { max-width: 330px; line-height: 1.7; }
.footer h3 { margin: 0 0 18px; color: var(--gold-200); font-family: var(--serif); font-size: 17px; font-weight: 500; }
.footer-grid a, .footer-grid span, .footer-link { display: block; margin: 10px 0; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-link { border: 0; padding: 0; background: transparent; cursor: pointer; text-align: left; }
.footer-link:hover, .footer-grid a:hover { color: white; }
.footer-warning { max-width: 240px; color: var(--lilac-200) !important; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 11px; }

.overlay { position: fixed; inset: 0; z-index: 140; background: rgba(2,9,21,.62); backdrop-filter: blur(5px); }
.drawer { position: fixed; z-index: 150; top: 0; right: 0; width: min(470px, 100%); height: 100dvh; display: flex; flex-direction: column; background: var(--cream-25); box-shadow: -24px 0 80px rgba(2,9,21,.22); transform: translateX(102%); transition: transform .3s ease; }
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 28px; border-bottom: 1px solid var(--line); }
.drawer h2 { margin-top: 5px; font-size: 34px; }
.close-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--navy-900); font-size: 27px; line-height: 1; cursor: pointer; }
.cart-items { overflow: auto; padding: 10px 28px; }
.cart-item { display: grid; grid-template-columns: 86px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 86px; height: 86px; object-fit: cover; }
.cart-item h3 { margin: 0 0 5px; color: var(--navy-900); font-family: var(--serif); font-size: 17px; font-weight: 500; }
.cart-item p { margin: 0; color: var(--muted); font-size: 12px; }
.qty-controls { display: inline-flex; align-items: center; gap: 7px; margin-top: 11px; }
.qty-controls button { width: 27px; height: 27px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.qty-controls span { min-width: 18px; text-align: center; font-size: 12px; }
.remove-button { border: 0; background: transparent; color: #8c5960; font-size: 11px; cursor: pointer; }
.cart-empty { margin: auto; padding: 50px 40px; text-align: center; }
.empty-symbol { width: 74px; height: 74px; margin: 0 auto 20px; display: grid; place-items: center; border: 1px solid rgba(181,145,80,.45); border-radius: 50%; color: var(--navy-900); font-family: var(--serif); font-size: 35px; }
.cart-empty h3 { margin: 0 0 9px; font-family: var(--serif); color: var(--navy-900); font-size: 24px; }
.cart-empty p { margin: 0; color: var(--muted); line-height: 1.6; }
.cart-summary { margin-top: auto; padding: 24px 28px 28px; border-top: 1px solid var(--line); background: white; }
.cart-summary > div { display: flex; justify-content: space-between; margin: 9px 0; font-size: 13px; }
.cart-total { margin: 18px 0 !important; padding-top: 16px; border-top: 1px solid var(--line); color: var(--navy-900); font-size: 18px !important; }
.cart-note { color: var(--muted); font-size: 11px; line-height: 1.5; }
.search-box { margin: 28px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--navy-900); }
.search-box input { width: 100%; min-height: 54px; border: 0; outline: 0; background: transparent; color: var(--navy-900); font-size: 18px; }
.search-results { overflow: auto; padding: 0 28px 28px; }
.search-result { width: 100%; display: grid; grid-template-columns: 66px 1fr auto; gap: 13px; align-items: center; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.search-result img { width: 66px; height: 66px; object-fit: cover; }
.search-result strong { display: block; color: var(--navy-900); font-family: var(--serif); font-size: 17px; font-weight: 500; }
.search-result span { color: var(--muted); font-size: 11px; }

.modal { position: fixed; z-index: 160; left: 50%; top: 50%; width: min(1050px, calc(100% - 34px)); max-height: calc(100dvh - 34px); overflow: auto; padding: clamp(28px, 5vw, 58px); background: var(--cream-25); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translate(-50%, -47%) scale(.98); transition: .25s ease; }
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-close { position: absolute; right: 18px; top: 18px; z-index: 2; background: rgba(253,252,249,.88); }
.product-modal-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.product-modal-layout img { width: 100%; background: var(--cream-100); }
.product-modal-copy .product-category { font-size: 10px; }
.product-modal-copy h2 { margin: 12px 0 14px; font-size: clamp(38px, 5vw, 62px); }
.product-modal-copy .large-price { color: var(--navy-900); font-size: 22px; font-weight: 700; }
.product-modal-copy > p { color: var(--muted); line-height: 1.72; }
.product-features { margin: 26px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-features span { display: block; margin: 8px 0; color: #485365; font-size: 13px; }
.product-features span::before { content: "◇"; margin-right: 9px; color: var(--gold-500); }
.checkout-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; }
.checkout-modal h2 { margin: 0 0 12px; font-size: 46px; }
.checkout-intro { color: var(--muted); line-height: 1.65; }
.checkout-form { display: grid; gap: 15px; margin-top: 25px; }
.checkout-form label { display: grid; gap: 7px; color: var(--navy-900); font-size: 12px; }
.checkout-form input, .checkout-form textarea, .checkout-form select { width: 100%; min-height: 46px; border: 1px solid var(--line); background: white; padding: 11px 12px; color: var(--navy-900); }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-label { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; color: var(--muted) !important; line-height: 1.45; }
.check-label input { width: 18px; min-height: 18px; margin: 1px 0 0; }
.form-message { min-height: 20px; margin: 0; color: var(--gold-700); font-size: 12px; }
.checkout-order { padding: 28px; background: var(--navy-900); color: white; }
.checkout-order h3 { margin: 0 0 18px; color: var(--gold-200); font-family: var(--serif); font-size: 25px; font-weight: 500; }
.checkout-order-item { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-size: 12px; }
.checkout-order-total { display: flex; justify-content: space-between; margin-top: 20px; color: white; font-size: 18px; }
.checkout-order-note { margin-top: 24px; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.55; }
.legal-modal { width: min(780px, calc(100% - 34px)); }
.legal-modal h2 { margin-bottom: 22px; font-size: 44px; }
.legal-modal h3 { margin: 28px 0 9px; color: var(--navy-900); font-family: var(--serif); font-size: 22px; font-weight: 500; }
.legal-modal p, .legal-modal li { color: var(--muted); line-height: 1.7; }
.legal-alert { padding: 16px; background: var(--lilac-100); border-left: 3px solid var(--lilac-400); color: #55466e !important; }

.toast { position: fixed; z-index: 210; left: 50%; bottom: 28px; max-width: calc(100% - 30px); padding: 13px 18px; background: var(--navy-900); color: white; box-shadow: var(--shadow-sm); font-size: 12px; opacity: 0; transform: translate(-50%, 18px); pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1040px) {
  .hero-shell { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-top { right: 0; }
  .floating-bottom { left: 0; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .statusbar { font-size: 9px; }
  .statusbar .status-separator, .statusbar span:last-child { display: none; }
  .nav-shell { height: 70px; grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: block; justify-self: center; }
  .nav-links { position: fixed; left: 0; right: 0; top: 104px; z-index: 90; padding: 22px 20px 28px; display: grid; gap: 4px; background: var(--cream-25); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); transform: translateY(-150%); transition: .25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px; text-align: center; }
  .hero { min-height: auto; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; padding: 72px 0 82px; }
  .hero-copy { text-align: center; margin: auto; }
  .eyebrow { justify-content: center; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 540px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip > div { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .split-heading, .newsletter-card, .brand-story, .checkout-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 24px; }
  .collection-heading { display: block; }
  .filter-row { justify-content: flex-start; margin-top: 25px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-visual { min-height: 460px; }
  .brand-story-copy { padding: 62px 28px 76px; }
  .newsletter-card { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .product-modal-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-shell { width: min(100% - 24px, 1240px); gap: 8px; }
  .brand-word { font-size: 17px; letter-spacing: .16em; }
  .brand-logo { width: 40px; height: 40px; }
  .round-action { width: 39px; height: 39px; }
  .hero-shell, .section { width: min(100% - 28px, 1240px); }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-visual { min-height: 410px; }
  .floating-card { display: none; }
  .logo-halo { width: 350px; height: 350px; }
  .category-grid, .product-grid { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .collection-toolbar { align-items: flex-start; gap: 14px; }
  .collection-toolbar select { max-width: 170px; }
  .product-description { min-height: auto; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form small { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .two-columns { grid-template-columns: 1fr; }
  .modal { width: calc(100% - 18px); max-height: calc(100dvh - 18px); padding: 38px 20px 26px; }
  .checkout-order { padding: 20px; }
}

.catalog-message { grid-column: 1 / -1; padding: 56px 24px; border: 1px solid var(--line); text-align: center; color: var(--muted); background: var(--cream-25); }
.catalog-message.error { color: #88464e; border-color: rgba(136,70,78,.25); }
.product-card.sold-out { opacity: .72; }
.product-card button:disabled, .button:disabled, .add-button:disabled { opacity: .45; cursor: not-allowed; }
.product-bottom > div { display: grid; gap: 3px; }
.product-bottom small, .stock-line { color: var(--muted); font-size: 10px; }
.form-message strong { color: var(--navy-900); }
