:root {
  --ink: #292523;
  --muted: #766d67;
  --paper: #fbf8f5;
  --cream: #f3ece5;
  --blush: #e8cfc8;
  --sage: #bac2ad;
  --blue: #becbd8;
  --gold: #a98254;
  --white: #fff;
  --line: rgba(51, 43, 39, .13);
  --shadow: 0 24px 80px rgba(77, 58, 48, .15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.announcement {
  min-height: 32px; padding: 7px 4vw; display: flex; justify-content: center; align-items: center; gap: 18px;
  background: var(--ink); color: #f8f2ec; font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
}
.announcement-dot { width: 3px; height: 3px; border-radius: 99px; background: var(--blush); }
.site-header {
  height: 78px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0;
  z-index: 40; background: rgba(251,248,245,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 38px; height: 38px; border: 1px solid currentColor; display: grid; place-items: center; border-radius: 50%; font: 600 23px/1 var(--serif); }
.brand-copy { display: flex; flex-direction: column; line-height: .83; }
.brand-copy strong { font: 600 25px/1 var(--serif); letter-spacing: .02em; }
.brand-copy small { margin-top: 6px; font-size: 8px; letter-spacing: .35em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 38px); }
.desktop-nav a { position: relative; font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--ink); transition: width .3s ease; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button, .menu-toggle, .close-button {
  position: relative; width: 42px; height: 42px; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer;
}
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.cart-button span {
  position: absolute; top: 3px; right: 1px; width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: white; font-size: 9px;
}
.menu-toggle { display: none; gap: 5px; align-content: center; }
.menu-toggle span { width: 20px; height: 1px; background: var(--ink); display: block; }
.search-bar {
  position: fixed; z-index: 45; top: 110px; left: 0; width: 100%; padding: 0 4vw; background: var(--paper);
  transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .35s ease; border-bottom: 1px solid var(--line);
}
.search-bar.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.search-inner { max-width: 820px; margin: auto; height: 94px; display: flex; align-items: center; gap: 16px; }
.search-inner svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.search-inner input { flex: 1; border: 0; outline: 0; background: transparent; font: 500 22px var(--serif); }
.search-inner button { border: 0; background: none; cursor: pointer; font-size: 30px; font-weight: 300; }
.mobile-nav { display: none; }

.hero { min-height: calc(100vh - 110px); max-height: 850px; position: relative; display: flex; align-items: center; overflow: hidden; background: #eee2d9; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(249,244,239,.63) 0%, rgba(249,244,239,.08) 50%, transparent 75%); }
.hero-content { position: relative; z-index: 2; width: min(600px, 48vw); margin-left: 7vw; padding: 70px 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero h1, .section-heading h2, .catalog-heading h2, .story-copy h2, .newsletter h2, .modal-panel h2 {
  margin: 0; font: 600 clamp(50px, 6vw, 90px)/.9 var(--serif); letter-spacing: -.035em;
}
.hero h1 em { color: #947d6c; font-weight: 500; }
.hero-content > p:not(.eyebrow) { max-width: 470px; margin: 26px 0 32px; color: #635a55; font-size: 14px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button { min-height: 49px; padding: 13px 25px; border: 1px solid transparent; display: inline-flex; justify-content: center; align-items: center; gap: 8px; cursor: pointer; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 700; transition: .25s ease; }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #4b423d; transform: translateY(-2px); }
.button-block { width: 100%; }
.text-button { border: 0; background: transparent; padding: 10px 0; font-size: 11px; font-weight: 700; cursor: pointer; border-bottom: 1px solid currentColor; }
.text-button span, .text-link span { margin-left: 8px; }
.hero-caption { position: absolute; right: 3vw; bottom: 30px; z-index: 2; display: flex; align-items: center; gap: 12px; color: rgba(45,39,36,.7); }
.hero-caption span { font: 600 36px var(--serif); }
.hero-caption p { margin: 0; font-size: 9px; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; }

.service-strip { padding: 22px 6vw; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: white; }
.service-strip article { display: flex; align-items: center; justify-content: center; gap: 12px; border-right: 1px solid var(--line); }
.service-strip article:last-child { border-right: 0; }
.service-icon { color: var(--gold); font: 24px var(--serif); }
.service-strip strong, .service-strip small { display: block; }
.service-strip strong { font-size: 10px; letter-spacing: .06em; }
.service-strip small { color: var(--muted); font-size: 9px; }
.section-shell { width: min(1260px, 90vw); margin: 0 auto; }
.category-section { padding: 110px 0 70px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 38px; }
.section-heading h2, .catalog-heading h2, .story-copy h2, .newsletter h2, .modal-panel h2 { font-size: clamp(40px, 4.3vw, 64px); line-height: .95; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 12px; }
.category-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr 1.2fr; gap: 12px; min-height: 400px; }
.category-card {
  border: 0; padding: 26px; position: relative; text-align: left; overflow: hidden; cursor: pointer; color: white;
  transition: transform .35s ease;
}
.category-image { display: none; }
.category-card::before { display: none; }
.category-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(145deg, var(--cat-a), var(--cat-b)); }
.category-card:hover { transform: translateY(-5px); }
.category-card span, .category-card small { position: absolute; left: 25px; bottom: 48px; }
.category-card span { font: 600 26px var(--serif); }
.category-card small { bottom: 28px; opacity: .82; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.category-card i { position: absolute; right: 24px; bottom: 30px; font-style: normal; }
.category-gown { --cat-a:#d7baa8; --cat-b:#87746e; }
.category-wshoes { --cat-a:#c9b3aa; --cat-b:#736a65; }
.category-suit { --cat-a:#9ba7aa; --cat-b:#4e5557; }
.category-mshoes { --cat-a:#a98f7a; --cat-b:#55473e; }

.catalog-section { padding: 60px 0 120px; scroll-margin-top: 90px; }
.catalog-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; }
.catalog-tools { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 10px; }
.sort-control { display: flex; align-items: center; gap: 10px; }
.sort-control select { border: 0; border-bottom: 1px solid var(--ink); padding: 6px 22px 6px 2px; background: transparent; outline: 0; font-size: 10px; }
.filter-row { display: flex; gap: 9px; overflow-x: auto; padding: 0 0 28px; scrollbar-width: none; }
.filter-row button { white-space: nowrap; border: 1px solid var(--line); background: white; padding: 9px 16px; border-radius: 99px; font-size: 9px; cursor: pointer; }
.filter-row button.active { background: var(--ink); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 16px; }
.product-card { min-width: 0; }
.product-media { position: relative; aspect-ratio: .78; overflow: hidden; background: #eee7e1; cursor: pointer; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 5px 8px; background: rgba(255,255,255,.9); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.quick-add { position: absolute; inset: auto 10px 10px; min-height: 40px; border: 0; background: rgba(39,35,33,.92); color: white; opacity: 0; transform: translateY(10px); transition: .25s ease; cursor: pointer; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.product-info { padding-top: 13px; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; }
.product-category { margin: 0 0 4px; color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font: 600 18px var(--serif); }
.product-info p { margin: 5px 0 0; display: flex; gap: 7px; align-items: center; font-size: 10px; }
.original-price, .modal-price-row span { color: #a39a94; text-decoration: line-through; }
.swatches { display: flex; padding-top: 5px; gap: 4px; }
.swatches i { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state span { font: 50px var(--serif); color: var(--gold); }
.empty-state h3 { margin: 10px 0 0; font: 600 30px var(--serif); }
.empty-state p { color: var(--muted); font-size: 12px; }

.story-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: #e8ded7; }
.story-image { overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transform: scale(1.22); }
.story-copy { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.story-copy p:not(.eyebrow) { color: #655d58; font-size: 12px; max-width: 530px; }
.text-link { margin-top: 20px; width: fit-content; padding-bottom: 4px; border-bottom: 1px solid; font-size: 11px; font-weight: 700; }
.newsletter { padding: 90px 0; display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.newsletter p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.newsletter form { width: min(470px, 100%); display: flex; border-bottom: 1px solid var(--ink); }
.newsletter input { flex: 1; min-width: 0; padding: 14px 0; border: 0; outline: 0; background: transparent; font-size: 12px; }
.newsletter button { border: 0; background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }

footer { padding: 70px 6vw 25px; background: var(--ink); color: #e9e1db; }
.footer-brand { display: flex; justify-content: space-between; align-items: end; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand p { color: #aba19a; font: 500 20px var(--serif); }
.brand-light { color: white; }
.footer-links { padding: 50px 0 70px 30%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 10px; color: white; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a, .footer-links button { width: fit-content; border: 0; padding: 0; background: none; color: #aaa09a; font-size: 10px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #827973; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.modal-backdrop { position: fixed; z-index: 70; inset: 0; background: rgba(25,22,20,.52); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; pointer-events: none; transition: .3s ease; }
.modal-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }
.cart-drawer { position: fixed; z-index: 80; top: 0; right: 0; width: min(440px, 100%); height: 100%; padding: 28px; background: var(--paper); transform: translateX(102%); transition: .35s ease; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font: 600 38px var(--serif); }
.close-button { font-size: 29px; font-weight: 300; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: grid; grid-template-columns: 86px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 86px; height: 110px; object-fit: cover; }
.cart-item h3 { margin: 0; font: 600 16px var(--serif); }
.cart-item p, .cart-item small { margin: 3px 0; display: block; color: var(--muted); font-size: 9px; }
.cart-item strong { font-size: 10px; }
.cart-remove { align-self: start; border: 0; background: none; cursor: pointer; color: var(--muted); }
.quantity-control { width: fit-content; margin-top: 9px; display: flex; border: 1px solid var(--line); }
.quantity-control button, .quantity-control span { width: 26px; height: 24px; display: grid; place-items: center; border: 0; background: white; font-size: 10px; }
.quantity-control button { cursor: pointer; }
.cart-empty { margin: auto; text-align: center; color: var(--muted); }
.cart-empty span { font: 50px var(--serif); color: var(--gold); }
.cart-empty button { border: 0; border-bottom: 1px solid; background: none; cursor: pointer; }
.cart-summary { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 13px; }
.cart-summary small { display: block; margin: 6px 0 16px; color: var(--muted); font-size: 9px; }

.modal-panel { position: fixed; z-index: 90; left: 50%; top: 50%; max-height: 90vh; overflow-y: auto; background: var(--paper); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%,-46%) scale(.98); transition: .3s ease; }
.modal-panel.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.modal-close { position: absolute; z-index: 3; top: 8px; right: 8px; background: rgba(251,248,245,.8); border-radius: 50%; }
.product-modal { width: min(1040px, 94vw); display: grid; grid-template-columns: 1.05fr .95fr; }
.product-modal-media { padding: 18px; min-width: 0; }
.zoomable-image { width: 100%; aspect-ratio: .84; position: relative; border: 0; padding: 0; background: #eee7e1; cursor: zoom-in; overflow: hidden; }
.zoomable-image img { width: 100%; height: 100%; object-fit: cover; }
.zoomable-image span { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; background: rgba(255,255,255,.88); font-size: 8px; }
.thumbnail-row { margin-top: 8px; display: flex; gap: 8px; }
.thumbnail-row button { width: 65px; height: 78px; padding: 0; border: 1px solid transparent; background: #eee7e1; cursor: pointer; }
.thumbnail-row button.active { border-color: var(--ink); }
.thumbnail-row img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-info { padding: 56px 48px 38px 30px; }
.product-modal-info h2 { font-size: clamp(38px, 4vw, 56px); }
.modal-price-row { margin-top: 15px; display: flex; align-items: center; gap: 10px; }
.modal-price-row strong { font-size: 15px; }
.rating-row { margin: 12px 0 18px; display: flex; gap: 8px; align-items: center; }
.rating-row span { color: var(--gold); font-size: 10px; letter-spacing: .08em; }
.rating-row small { color: var(--muted); font-size: 9px; }
.product-description { color: var(--muted); font-size: 11px; }
.option-group { margin-top: 22px; }
.option-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; font-size: 10px; }
.option-label button { border: 0; border-bottom: 1px solid; background: none; color: var(--muted); font-size: 9px; cursor: pointer; }
.color-options, .size-options { display: flex; flex-wrap: wrap; gap: 7px; }
.color-option { width: 31px; height: 31px; padding: 3px; border: 1px solid transparent; border-radius: 50%; background: transparent; cursor: pointer; }
.color-option i { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); }
.color-option.active { border-color: var(--ink); }
.size-option { min-width: 42px; height: 37px; border: 1px solid var(--line); background: white; cursor: pointer; font-size: 9px; }
.size-option.active { border-color: var(--ink); background: var(--ink); color: white; }
.stock-note { color: #728166; font-size: 9px; }
.product-assurances { margin-top: 18px; display: grid; gap: 3px; color: var(--muted); font-size: 8px; }
.checkout-modal { width: min(1120px, 95vw); padding: 40px; }
.checkout-header { margin-bottom: 26px; }
.checkout-header h2 { font-size: 48px; }
.checkout-header > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 11px; }
.checkout-columns { display: grid; grid-template-columns: 1.25fr .75fr; gap: 45px; }
.checkout-fields h3, .checkout-order h3 { margin: 24px 0 14px; font: 600 20px var(--serif); }
.checkout-fields h3:first-child, .checkout-order h3:first-child { margin-top: 0; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field span { font-size: 9px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 12px 13px; background: white; outline: 0; font-size: 10px;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.payment-box { padding: 15px; display: grid; gap: 2px; background: var(--cream); }
.payment-box strong { font-size: 11px; }.payment-box span { font-size: 10px; }.payment-box small { color: var(--muted); font-size: 8px; }
.upload-box { min-height: 145px; margin-top: 14px; padding: 18px; border: 1px dashed #b8aaa1; display: grid; place-items: center; align-content: center; gap: 2px; text-align: center; cursor: pointer; overflow: hidden; }
.upload-box input { position: absolute; opacity: 0; pointer-events: none; }
.upload-box strong { font-size: 10px; }.upload-box small { color: var(--muted); font-size: 8px; }.upload-icon { font-size: 25px; color: var(--gold); }
.upload-box img { max-height: 180px; margin-top: 8px; object-fit: contain; }
.consent { margin-top: 14px; display: flex; gap: 8px; align-items: start; color: var(--muted); font-size: 8px; }
.checkout-order { padding: 22px; align-self: start; background: var(--cream); position: sticky; top: 0; }
.checkout-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.checkout-line img { width: 56px; height: 68px; object-fit: cover; }
.checkout-line strong { display: block; font: 600 13px var(--serif); }.checkout-line small { color: var(--muted); font-size: 8px; }.checkout-line > span { font-size: 9px; }
.checkout-totals { margin: 16px 0; display: grid; gap: 8px; }
.checkout-totals > div { display: flex; justify-content: space-between; font-size: 9px; }
.checkout-totals .grand-total { padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; }
.checkout-safe { display: block; margin-top: 10px; color: var(--muted); text-align: center; font-size: 8px; }
.compact-modal { width: min(500px, 92vw); padding: 45px; }
.compact-modal h2 { font-size: 46px; }
.compact-modal > p:not(.eyebrow) { color: var(--muted); font-size: 11px; }
.compact-modal form { display: grid; gap: 14px; margin-top: 25px; }
.track-result { margin-top: 18px; padding: 16px; background: var(--cream); font-size: 10px; }
.track-result strong { display: block; font: 600 20px var(--serif); }
.track-result .status-pill { width: fit-content; margin: 8px 0; padding: 5px 8px; background: #dce3d6; color: #506045; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.success-modal { text-align: center; }
.success-icon { width: 55px; height: 55px; margin: 0 auto 15px; display: grid; place-items: center; border-radius: 50%; background: #dbe3d5; color: #526246; font-size: 22px; }
.order-number { margin: 18px 0; padding: 13px; background: var(--cream); }.order-number span, .order-number strong { display: block; }.order-number span { color: var(--muted); font-size: 8px; }.order-number strong { font: 600 22px var(--serif); }
.image-lightbox { position: fixed; z-index: 110; inset: 0; padding: 4vh 4vw; display: grid; place-items: center; background: rgba(17,15,14,.94); opacity: 0; visibility: hidden; transition: .25s ease; }
.image-lightbox.open { opacity: 1; visibility: visible; }
.image-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.image-lightbox .close-button { position: absolute; top: 12px; right: 18px; color: white; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; padding: 12px 18px; background: var(--ink); color: white; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: .3s ease; font-size: 10px; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }.menu-toggle { display: grid; }
  .mobile-nav { position: fixed; z-index: 39; top: 110px; left: 0; right: 0; padding: 25px 5vw; display: grid; gap: 14px; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .3s ease; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a { font: 600 23px var(--serif); }
  .hero { min-height: 690px; }.hero-content { width: 63vw; margin-left: 6vw; }.hero h1 { font-size: 65px; }
  .service-strip { grid-template-columns: 1fr 1fr; gap: 18px 0; }.service-strip article:nth-child(2) { border-right: 0; }
  .category-grid { grid-template-columns: 1fr 1fr; }.product-grid { grid-template-columns: repeat(3, 1fr); }
  .story-copy { padding: 60px; }.footer-links { padding-left: 0; }
}
@media (max-width: 700px) {
  .announcement span:nth-of-type(n+2), .announcement-dot { display: none; }
  .site-header { height: 68px; padding: 0 4vw; }.search-bar, .mobile-nav { top: 100px; }
  .hero { min-height: 660px; align-items: end; }.hero > img { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(248,241,235,.93) 0%, rgba(248,241,235,.3) 55%, rgba(248,241,235,0) 82%); }
  .hero-content { width: auto; margin: 0; padding: 0 6vw 50px; }.hero h1 { font-size: 51px; }.hero-content > p:not(.eyebrow) { margin: 18px 0 22px; font-size: 12px; }
  .hero-caption { display: none; }.service-strip { padding: 20px 5vw; }.service-strip article { justify-content: flex-start; }.service-strip article:nth-child(even) { padding-left: 14px; }.service-strip strong { font-size: 9px; }.service-strip small { display: none; }
  .category-section { padding: 80px 0 45px; }.section-heading { align-items: start; flex-direction: column; gap: 16px; }.section-heading > p { font-size: 11px; }
  .category-grid { min-height: 620px; grid-template-columns: 1fr 1fr; }.category-card { padding: 18px; }.category-card span { left: 16px; bottom: 42px; font-size: 20px; }.category-card small { left: 16px; bottom: 24px; }.category-card i { right: 15px; bottom: 25px; }
  .catalog-section { padding-bottom: 80px; }.catalog-heading { align-items: start; flex-direction: column; }.catalog-tools { width: 100%; justify-content: space-between; }.product-grid { grid-template-columns: 1fr 1fr; gap: 28px 10px; }.quick-add { opacity: 1; transform: none; min-height: 34px; font-size: 8px; }
  .product-info h3 { font-size: 15px; }.product-info p { font-size: 9px; }
  .story-section { grid-template-columns: 1fr; }.story-image { min-height: 430px; }.story-copy { padding: 55px 7vw; }
  .newsletter { padding: 70px 0; align-items: start; flex-direction: column; gap: 28px; }
  .footer-brand { align-items: start; flex-direction: column; gap: 20px; }.footer-brand p { font-size: 17px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 40px 20px; }.footer-bottom { flex-direction: column; gap: 8px; }
  .product-modal { display: block; width: 94vw; }.product-modal-info { padding: 30px 24px 35px; }.zoomable-image { aspect-ratio: 1; }.product-modal-info h2 { font-size: 40px; }
  .checkout-modal { padding: 28px 18px; }.checkout-columns { grid-template-columns: 1fr; gap: 25px; }.checkout-order { position: static; }.field-grid { grid-template-columns: 1fr; }.field.full { grid-column: auto; }.checkout-header h2 { font-size: 40px; }
  .compact-modal { padding: 38px 24px; }.compact-modal h2 { font-size: 39px; }
}
@media (max-width: 420px) {
  .brand-copy strong { font-size: 22px; }.icon-button, .menu-toggle { width: 36px; }
  .hero h1 { font-size: 45px; }.hero-actions { gap: 15px; }
  .category-grid { min-height: 540px; }.category-card:nth-child(2), .category-card:nth-child(3) { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
