@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #302d2b;
  --rose: #ddbbaf;
  --butter: #f4e8b0;
  --surface: #f8f3ef;
  --muted: #6e625c;
  --line: #d8ccc4;
  --clay-rose: #ebc7ba;
  --clay-lilac: #e7ddee;
  --scrollbar-thumb: #c4b2d3;
  --scrollbar-thumb-hover: #ad95bf;
  --radius-control: 999px;
  --radius-media: 24px;
  --clay-shadow: 5px 7px 14px rgb(85 56 42 / 15%), inset 4px 4px 7px rgb(255 255 255 / 65%), inset -4px -5px 9px rgb(110 74 40 / 16%);
  --clay-shadow-hover: 6px 10px 18px rgb(85 56 42 / 18%), inset 4px 4px 7px rgb(255 255 255 / 75%), inset -4px -5px 9px rgb(110 74 40 / 16%);
  --clay-shadow-pressed: 2px 3px 6px rgb(85 56 42 / 10%), inset 2px 3px 6px rgb(110 74 40 / 16%), inset -3px -3px 6px rgb(255 255 255 / 60%);
  --gutter: clamp(24px, 3.65vw, 72px);
  --header-compact-height: 60px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Layers: hero 0, header 2, skip link 3; native dialogs use the top layer. */
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--rose);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
html { scroll-padding-top: calc(var(--header-compact-height) + 12px); scrollbar-gutter: stable; }
html, dialog { scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--surface); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border: 2px solid var(--surface); border-radius: var(--radius-control); }
::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-thumb-hover); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; cursor: pointer; }
button, a, input { touch-action: manipulation; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
button:focus-visible, a:focus-visible, [tabindex]:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
button:disabled { cursor: default; }
svg { flex-shrink: 0; }
::selection { color: var(--ink); background: var(--butter); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 3; padding: 12px 18px; background: var(--butter); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

/* A softly domed surface: light upper rim, shaded lower rim, and a cast shadow. */
.primary-button, .bag-button, .icon-button, .panel-close-button, .view-all-button, .gallery-arrow, .collection-tab, .product-preview-views button, .add-to-bag {
  border-radius: var(--radius-control);
  box-shadow: var(--clay-shadow);
  transition: translate 250ms var(--ease), scale 250ms var(--ease), box-shadow 250ms ease, background-color 250ms ease;
}
:is(.primary-button, .bag-button, .icon-button, .panel-close-button, .view-all-button, .gallery-arrow, .collection-tab, .product-preview-views button, .add-to-bag):active:not(:disabled) {
  translate: 0 2px;
  scale: 0.98;
  box-shadow: var(--clay-shadow-pressed);
}

.site-header { position: fixed; inset: 0 0 auto; z-index: 2; height: 80px; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; transition: height 300ms var(--ease), background-color 300ms ease, box-shadow 300ms ease; }
.site-header .wordmark { transition: font-size 300ms var(--ease); }
.site-header.is-scrolled { height: var(--header-compact-height); background: var(--surface); box-shadow: 0 4px 18px rgb(85 56 42 / 9%), inset 0 -1px 0 rgb(110 74 40 / 9%); }
.site-header.is-scrolled .wordmark { font-size: 30px; }
.site-header.is-scrolled .bag-button { min-height: 44px; }
.desktop-navigation, .header-actions { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.header-actions { justify-content: flex-end; }
.nav-link { position: relative; padding: 12px 0; background: transparent; white-space: nowrap; font-size: 11px; font-weight: 600; letter-spacing: 0.075em; text-transform: uppercase; }
.nav-link::after { position: absolute; content: ""; left: 0; right: 0; bottom: 6px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 250ms var(--ease); }
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }
.wordmark { display: inline-block; font-size: clamp(33px, 2.75vw, 46px); font-weight: 850; letter-spacing: -0.075em; line-height: 1; }
.wordmark-period { letter-spacing: -0.12em; }
.bag-button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 0 20px; background: var(--clay-rose); }
.bag-label { font-size: 11px; letter-spacing: 0.075em; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; background: var(--clay-rose); }
.mobile-menu, .mobile-bag-count { display: none; }

.hero-stage.is-scroll-reveal { padding-bottom: clamp(120px, 24svh, 220px); }
.hero { position: relative; isolation: isolate; min-height: 740px; min-height: max(740px, 100svh); display: flex; align-items: flex-end; overflow: hidden; background: var(--rose); }
.hero-stage.is-scroll-reveal .hero-media { transform-origin: 70% 40%; }
.hero-stage.is-hero-covered .hero { visibility: hidden; }
.arrivals { position: relative; z-index: 1; }
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-content { padding: 170px var(--gutter) clamp(60px, 9vh, 108px); width: 100%; }
.hero-eyebrow { margin: 0 0 26px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
h1 { margin: 0; max-width: 820px; font-size: clamp(66px, 5.8vw, 110px); font-weight: 450; line-height: 0.99; letter-spacing: -0.065em; }
.headline-line { display: block; padding-bottom: 0.12em; margin-bottom: -0.08em; overflow: hidden; }
.headline-line > span { display: inline-block; }
.hero-description { margin: 27px 0 30px; font-size: 14px; font-weight: 450; line-height: 1.6; letter-spacing: -0.01em; }
.primary-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 36px; min-height: 58px; padding: 17px 26px; background: var(--butter); color: var(--ink); font-size: 12px; font-weight: 600; line-height: 1.3; white-space: nowrap; }
.primary-button svg { transition: transform 300ms var(--ease); }
.primary-button:hover svg { transform: translate(3px, -3px); }

.side-panel { position: fixed; inset: 0 0 0 auto; margin: 0; width: min(540px, 100%); height: 100%; max-height: 100dvh; max-width: 100%; border: 0; border-radius: 32px 0 0 32px; padding: 28px 32px 42px; overflow-y: auto; overscroll-behavior: contain; background: var(--surface); color: var(--ink); box-shadow: -12px 0 40px rgb(62 42 32 / 15%), inset 3px 3px 8px rgb(255 255 255 / 85%), inset -4px -4px 10px rgb(110 74 40 / 5%); }
.side-panel::backdrop { background: rgb(38 30 29 / 30%); }
.panel-topline { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 24px; }
.panel-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.close-button { background: var(--clay-lilac); }
.collection-tabs { display: flex; gap: 12px; margin-bottom: 26px; }
.collection-tab { min-height: 44px; padding: 12px 22px; background: var(--surface); font-size: 14px; color: var(--muted); }
.collection-tab[aria-selected="true"] { background: var(--butter); color: var(--ink); }
.collection-image-wrap { overflow: hidden; aspect-ratio: 1 / 1; border-radius: var(--radius-media); background: var(--rose); }
.collection-image-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.collection-copy { padding-top: 22px; }
.collection-copy .panel-label { margin: 0 0 12px; }
.side-panel h2 { margin: 0 0 16px; font-size: clamp(37px, 4vw, 50px); font-weight: 450; line-height: 1.06; letter-spacing: -0.055em; }
.collection-copy > p:not(.panel-label), .text-panel-content > p:not(.panel-label) { color: var(--muted); font-size: 15px; line-height: 1.7; }
.palette { display: flex; align-items: center; gap: 8px; margin-top: 25px; }
.swatch { width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgb(48 45 43 / 10%); }
.swatch-butter { background: #eddda6; }
.swatch-rose { background: #b98c85; }
.swatch-sage { background: #b7b7a2; }
.palette > span:last-child { margin-left: 8px; font-size: 11px; color: var(--muted); }
.text-panel-content { padding: 14vh 0 30px; }
.text-panel-content .panel-label { margin-bottom: 24px; }
.text-panel-content .primary-button { margin-top: 24px; }
.mobile-navigation { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 12vh; }
.mobile-navigation button { padding: 0; background: transparent; font-size: 48px; font-weight: 450; letter-spacing: -0.045em; }
.menu-note { margin-top: 70px; color: var(--muted); font-size: 14px; line-height: 1.7; }
body:has(dialog[open]) { overflow: hidden; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.arrivals { padding: 84px var(--gutter) 80px; background: var(--surface); scroll-margin-top: 0; }
.arrivals-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.arrivals h2 { margin: 0; font-size: clamp(34px, 3.1vw, 52px); font-weight: 450; letter-spacing: -0.055em; line-height: 1.1; }
.arrivals-intro > p { margin: 14px 0 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.arrivals-actions { display: flex; align-items: center; gap: 22px; }
.arrivals-actions[hidden] { display: none; }
.view-all-button { min-height: 46px; padding: 13px 22px; background: var(--clay-lilac); text-transform: none; letter-spacing: 0; font-size: 12px; font-weight: 550; }
.view-all-button::after { content: none; }
.gallery-controls { display: flex; gap: 12px; }
.gallery-controls[hidden] { display: none; }
.gallery-arrow { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; padding: 0; background: var(--butter); }
.gallery-arrow:disabled { opacity: 0.42; box-shadow: inset 2px 2px 5px rgb(110 74 40 / 10%), inset -2px -2px 5px rgb(255 255 255 / 70%); }
.product-track { --card-gap: 20px; position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 60px) / 3.5); gap: var(--card-gap); margin: 0; padding: 0 0 8px; list-style: none; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-x pan-y pinch-zoom; }
.product-track::-webkit-scrollbar { display: none; }
.product-track:focus-visible { outline-offset: 5px; }
.product-track.is-dragging { scroll-snap-type: none; }
.product-track.is-dragging, .product-track.is-dragging a { cursor: grabbing; user-select: none; }
.product-track.is-dragging .product-image-alternate { opacity: 0; }
.product-card { min-width: 0; scroll-snap-align: start; }
.product-media { position: relative; container-type: inline-size; }
.product-photo { position: relative; display: block; overflow: hidden; aspect-ratio: 2 / 3; border-radius: var(--radius-media); background: #dfd9d1; cursor: grab; user-select: none; -webkit-user-drag: none; }
.product-photo:focus-visible { outline-offset: -4px; }
.product-image { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.product-image-alternate { position: absolute; inset: 0; opacity: 0; transition: opacity 450ms var(--ease); }
.product-photo:focus-visible .product-image-alternate { opacity: 1; }
.quick-view { position: absolute; right: 14px; bottom: 14px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-control); background: var(--clay-lilac); box-shadow: var(--clay-shadow); transition: transform 250ms var(--ease), box-shadow 250ms ease; pointer-events: none; }
.product-photo:hover .quick-view, .product-photo:focus-visible .quick-view { transform: translateX(2px); box-shadow: var(--clay-shadow-hover); }
.add-to-bag { display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 46px; padding: 13px 18px; background: var(--butter); font-size: 12px; font-weight: 600; white-space: nowrap; }
.add-to-bag[hidden] { display: none; }
.add-to-bag.is-added { background: #dce4c7; }
.size-picker { padding: 6px 12px 12px; border: 1px solid #fff9dc; border-radius: 24px; background: var(--butter); box-shadow: var(--clay-shadow); }
.size-picker-card { position: absolute; left: 10px; right: 10px; bottom: 10px; }
.size-picker-detail { max-width: 340px; margin-top: 20px; }
.size-picker-header { display: flex; align-items: center; justify-content: space-between; gap: 6px; font-size: 12px; font-weight: 600; }
.size-picker-cancel { min-width: 44px; min-height: 44px; padding: 0; background: transparent; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.size-options { display: grid; grid-template-columns: repeat(4, minmax(44px, 1fr)); gap: 6px; }
.size-options:has(:only-child) { grid-template-columns: 1fr; }
.size-option { min-height: 44px; padding: 8px 4px; border-radius: 999px; background: #fffae9; box-shadow: 2px 3px 5px rgb(110 74 40 / 12%), inset 2px 2px 3px #fff, inset -2px -3px 4px rgb(110 74 40 / 10%); font-size: 12px; font-weight: 600; transition: background-color 160ms ease, box-shadow 160ms ease; }
.size-option:hover { background: var(--clay-lilac); }
.size-option:active { box-shadow: var(--clay-shadow-pressed); }
.size-option:focus-visible { outline-offset: 2px; }
.product-media:has(.size-picker) .quick-view { visibility: hidden; }
@container (max-width: 235px) {
  .size-options { grid-template-columns: repeat(2, minmax(44px, 1fr)); }
  .size-picker { padding-inline: 8px; border-radius: 18px; }
  .size-picker-header { font-size: 11px; }
}
.product-add-button { position: absolute; left: 14px; right: 72px; bottom: 14px; }
.product-details { display: grid; grid-template-columns: 1fr auto; column-gap: 14px; row-gap: 9px; padding: 18px 0 3px; }
.product-name, .product-price, .product-colour { margin: 0; }
.product-name { font-size: 14px; font-weight: 500; line-height: 1.4; }
.product-price { font-size: 12px; line-height: 1.65; font-variant-numeric: tabular-nums; white-space: nowrap; }
.product-colour { display: flex; align-items: center; gap: 8px; grid-column: 1 / -1; font-size: 11px; color: var(--muted); line-height: 1.5; }
.product-swatch { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: var(--swatch); border: 1px solid rgb(48 45 43 / 12%); }
.collection-edits { display: grid; place-items: center; min-height: calc(100svh - var(--header-compact-height)); padding: 24px var(--gutter) 40px; background: #edc7d1; }
/* Reserve space for captions, frame padding and the pinned navbar while retaining the full 4:5 photographs. */
.collection-edits-frame { --edit-photo-height: clamp(160px, calc(100svh - 340px), 560px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; width: min(100%, calc(var(--edit-photo-height) * 1.6 + 76px)); padding: 24px; border: 2px solid #fff; border-radius: 32px; background: #fff; box-shadow: 10px 14px 28px rgb(92 67 109 / 16%), inset 7px 7px 14px rgb(255 255 255 / 65%), inset -8px -10px 18px rgb(115 81 135 / 20%); }
.collection-edit { min-width: 0; }
.collection-edit-photo { display: block; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--radius-media); background: #e3d5ca; }
.collection-edit-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.collection-edit-photo:focus-visible { outline-offset: -5px; }
.collection-edit-caption { display: flex; align-items: flex-start; flex-direction: column; gap: 16px; padding: 18px 0 0; }
.collection-edit-copy h2 { margin: 0; font-size: clamp(28px, 2.8vw, 40px); font-weight: 450; letter-spacing: -0.055em; line-height: 1.1; }
.collection-edit-copy p { margin: 8px 0 0; font-size: 13px; color: #58485f; line-height: 1.5; }
.collection-edit-button { flex-shrink: 0; min-height: 48px; padding: 13px 20px; gap: 24px; }
.collection-edit-button[data-shop-collection="men"] { background: var(--clay-lilac); }
.brand-story { min-height: max(calc(100svh - var(--header-compact-height)), var(--story-min-height, 0px)); padding: 72px var(--gutter) 88px; overflow-x: clip; background: var(--surface); }
.pin-spacer-story-entrance { width: 100% !important; background: var(--surface); }
.pin-spacer-story-entrance > .brand-story { width: 100% !important; }
.brand-story-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; max-width: 1240px; margin: 0 auto 28px; }
.brand-story-heading h2 { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.brand-story-heading p { margin: 0; font-size: 12px; color: var(--muted); }
.story-display { position: relative; max-width: 1240px; margin-inline: auto; }
.story-waiting-mark { position: absolute; inset: 0; display: grid; place-items: center; visibility: hidden; opacity: 0; pointer-events: none; }
.story-waiting-symbol { display: block; width: clamp(156px, 19.5vw, 234px); aspect-ratio: 1; border-radius: 19%; background: var(--rose); box-shadow: var(--clay-shadow); transform: rotate(-6deg); }
.story-waiting-symbol img { display: block; width: 100%; height: 100%; border-radius: inherit; }
.story-accordion { --story-rail: clamp(56px, 6vw, 84px); display: grid; gap: 16px; max-width: 1240px; margin-inline: auto; }
.story-card { position: relative; min-width: 0; padding: 0 24px 24px; border-radius: 30px; background: var(--story-colour); box-shadow: 6px 9px 18px rgb(85 56 42 / 13%), inset 5px 5px 10px rgb(255 255 255 / 65%), inset -6px -7px 12px rgb(110 74 40 / 13%); }
.story-card-less-fuss { --story-colour: #f4e8b0; }
.story-card-modest { --story-colour: #d5dfc4; }
.story-card-soft-colour { --story-colour: #edc7d1; }
.story-card-room-to-move { --story-colour: #c9dfea; }
.story-trigger-heading { margin: 0; font: inherit; }
.story-trigger { position: relative; display: flex; align-items: center; gap: 16px; width: 100%; min-height: 64px; padding: 0; background: transparent; color: var(--ink); text-align: left; }
.story-trigger:disabled { cursor: default; }
.story-number { font-size: 10px; letter-spacing: 0.05em; opacity: 0.65; }
.story-tab-label { font-size: 13px; font-weight: 550; }
.story-toggle-icon { display: none; margin-left: auto; }
.story-headline { margin: 0; font-size: clamp(48px, min(6vw, 10svh), 84px); font-weight: 450; letter-spacing: -0.06em; line-height: 1.02; }
.story-content { display: flex; flex-direction: column; gap: 24px; }
.story-detail { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 32px; align-items: end; }
.story-detail img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 16px; }
.story-copy p { max-width: 34ch; margin: 0; font-size: clamp(14px, 1.3vw, 17px); line-height: 1.65; }
.story-link { display: inline-flex; align-items: center; gap: 20px; min-height: 44px; margin-top: 16px; font-size: 12px; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; }
.story-accordion.is-enhanced { display: flex; gap: 12px; height: clamp(480px, calc(100svh - 240px), 620px); }
.is-enhanced .story-card { flex: 0 0 var(--story-rail); padding: 0; overflow: hidden; border-radius: calc(var(--story-rail) / 2); }
.is-enhanced .story-card.is-active { flex-grow: 1; border-radius: 30px; }
.is-enhanced.is-ready .story-card { transition: flex-grow 520ms cubic-bezier(0.22, 0.61, 0.36, 1), border-radius 400ms ease; }
.is-enhanced .story-trigger-heading { height: 100%; }
.is-enhanced .story-trigger { flex-direction: column; justify-content: space-between; width: var(--story-rail); height: 100%; padding: 28px 0; }
.is-enhanced .story-tab-label { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 18px; white-space: nowrap; }
.is-enhanced .story-toggle-icon { display: block; margin: 0; }
.is-enhanced .story-trigger:focus-visible { outline-offset: -5px; border-radius: inherit; }
.is-enhanced .is-active .story-trigger-heading { height: 64px; }
.is-enhanced .is-active .story-trigger { flex-direction: row; justify-content: flex-start; width: 100%; height: 64px; padding: 0 24px; }
.is-enhanced .is-active .story-tab-label { writing-mode: horizontal-tb; transform: none; font-size: 12px; }
.is-enhanced .is-active .story-toggle-icon { margin-left: auto; }
.is-active .story-plus-stem { opacity: 0; }
.is-enhanced .story-content { position: absolute; top: 64px; bottom: 24px; left: 24px; width: var(--story-body-width); justify-content: space-between; opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none; }
.is-enhanced.is-ready .story-content { transition: opacity 120ms ease, visibility 0s 120ms, transform 240ms ease; }
.is-enhanced .is-active .story-content { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.is-enhanced.is-ready .is-active .story-content { transition: opacity 240ms ease 70ms, transform 360ms ease 70ms; }
@media (max-width: 767px) {
  .brand-story { padding-top: 48px; padding-bottom: 56px; }
  .brand-story-heading { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .story-card { padding: 0 20px 24px; border-radius: 24px; }
  .story-headline { font-size: clamp(42px, 11vw, 64px); }
  .story-detail { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .story-detail img { max-height: 210px; }
  .story-copy p { max-width: none; font-size: 14px; line-height: 1.6; }
  .story-accordion.is-enhanced { flex-direction: column; height: auto; }
  .is-enhanced .story-card { flex: none; height: 64px; border-radius: 24px; }
  .is-enhanced .story-card.is-active { flex: none; height: var(--story-open-height, 520px); border-radius: 24px; }
  .is-enhanced.is-ready .story-card { transition: height 420ms cubic-bezier(0.22, 0.61, 0.36, 1); }
  .is-enhanced .story-trigger, .is-enhanced .is-active .story-trigger { flex-direction: row; justify-content: flex-start; width: 100%; height: 64px; padding: 0 20px; }
  .is-enhanced .story-tab-label, .is-enhanced .is-active .story-tab-label { writing-mode: horizontal-tb; transform: none; font-size: 13px; }
  .is-enhanced .story-toggle-icon { margin-left: auto; }
  .is-enhanced .story-content { left: 20px; bottom: auto; }
}
.story-accordion.is-enhanced.is-ready.is-entering .story-card,
.story-accordion.is-enhanced.is-ready.is-entering .story-content { transition: none; }
.is-enhanced.is-entering .story-card.is-active { flex-grow: var(--story-intro-grow, 0); }
.is-enhanced.is-entering .is-active .story-content { opacity: var(--story-intro-content, 0); transform: none; }
@media (min-width: 768px) and (max-height: 700px) {
  .brand-story { padding-top: 24px; padding-bottom: 36px; }
  .brand-story-heading { margin-bottom: 20px; }
}
@media (min-width: 768px) {
  .is-enhanced.is-entering:not(.is-opening) .is-active { border-radius: calc(var(--story-rail) / 2); }
  .is-enhanced.is-entering:not(.is-opening) .is-active .story-trigger-heading { height: 100%; }
  .is-enhanced.is-entering:not(.is-opening) .is-active .story-trigger { flex-direction: column; justify-content: space-between; width: var(--story-rail); height: 100%; padding: 28px 0; }
  .is-enhanced.is-entering:not(.is-opening) .is-active .story-tab-label { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 18px; }
  .is-enhanced.is-entering:not(.is-opening) .is-active .story-toggle-icon { margin-left: 0; }
  .is-enhanced.is-entering:not(.is-opening) .is-active .story-plus-stem { opacity: 1; }
}
@media (max-width: 767px) {
  .is-enhanced.is-entering .story-card.is-active { flex: none; height: calc(64px + (var(--story-open-height, 520px) - 64px) * var(--story-intro-grow, 0)); }
}
.all-products-grid .product-card[hidden] { display: none; }

.newsletter { position: relative; padding: 100px var(--gutter) 88px; background: #edc7d1; text-align: center; box-shadow: inset 0 5px 12px rgb(255 255 255 / 30%); }
.newsletter-content { max-width: 800px; margin-inline: auto; }
.newsletter h2 { margin: 0; font-size: clamp(46px, 5.7vw, 80px); font-weight: 450; letter-spacing: -0.06em; line-height: 1.04; }
.newsletter-description { max-width: 48ch; margin: 24px auto 38px; font-size: 16px; line-height: 1.6; text-wrap: balance; }
.newsletter-form { max-width: 670px; margin-inline: auto; text-align: left; }
.newsletter-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.newsletter-form label { display: block; margin: 0 0 12px 24px; font-size: 12px; font-weight: 600; }
.newsletter-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
.newsletter-controls input { min-width: 0; width: 100%; min-height: 64px; padding: 18px 26px; border: 2px solid #fffaf7; border-radius: 999px; background: #fffaf7; color: var(--ink); font: inherit; font-size: 16px; box-shadow: 5px 7px 16px rgb(109 63 76 / 13%), inset 4px 4px 8px rgb(255 255 255 / 95%), inset -5px -6px 10px rgb(137 95 92 / 12%); }
.newsletter-controls input::placeholder { color: #766760; opacity: 1; }
.newsletter-controls input:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.newsletter-controls input[aria-invalid="true"] { border-color: #8c344b; }
.newsletter .newsletter-submit { min-height: 64px; padding: 18px 26px; gap: 24px; white-space: nowrap; }
.newsletter-note { margin: 16px 24px 0; color: #62534f; font-size: 11px; line-height: 1.6; }
.newsletter-status { min-height: 38px; margin: 8px 24px 0; font-size: 12px; line-height: 1.6; }
.newsletter-status.is-error { color: #8c344b; }
.footer-stage { display: flow-root; overflow: clip; background: #edc7d1; }
.site-footer { position: relative; padding: 68px var(--gutter) 28px; overflow: clip; border-top: 2px solid #f2f5e9; border-radius: 48px 48px 0 0; background: #d5dfc4; box-shadow: 0 -18px 0 #edc7d1, inset 0 8px 14px rgb(255 255 255 / 65%), inset 0 -12px 18px rgb(102 119 73 / 8%); }
.footer-inner { max-width: 1600px; margin-inline: auto; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1fr) auto 158px; align-items: center; gap: clamp(36px, 6vw, 96px); padding: 0 28px; }
.footer-intro p { margin: 0 0 18px; font-size: clamp(34px, 3.8vw, 54px); font-weight: 450; letter-spacing: -0.055em; line-height: 1.08; }
.footer-intro > span { display: block; max-width: 26ch; font-size: 13px; line-height: 1.6; text-wrap: balance; }
.footer-navigation { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.footer-shop-links { display: flex; gap: 12px; }
.site-footer .footer-shop { min-height: 56px; padding: 16px 22px; gap: 26px; font-size: 12px; white-space: nowrap; }
.footer-shop-women { background: var(--butter); }
.footer-shop-men { background: #c9dfea; }
.footer-text-links { display: flex; gap: 28px; padding-inline: 10px; }
.footer-text-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 12px; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: rgb(48 45 43 / 35%); }
.footer-label { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; width: 158px; min-height: 210px; padding: 36px 18px 22px; border: 2px solid #fff; border-radius: 26px; background: #f8f3ef; box-shadow: var(--clay-shadow); transform: rotate(7deg); transition: transform 300ms var(--ease), box-shadow 250ms ease; }
.footer-label-hole { position: absolute; top: 15px; left: calc(50% - 6px); width: 12px; height: 12px; border-radius: 50%; background: #c3ceb3; box-shadow: inset 2px 2px 3px rgb(74 87 59 / 30%), 0 1px 0 #fff; }
.footer-label img { width: 66px; height: 66px; border-radius: 12px; }
.footer-label > span:last-child { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.footer-label:active { transform: rotate(0deg) translateY(2px); box-shadow: var(--clay-shadow-pressed); }
.footer-wordmark { margin: 64px 0 28px; font-size: clamp(78px, 18.35vw, 302px); font-weight: 850; letter-spacing: -0.09em; line-height: 0.95; text-align: center; white-space: nowrap; color: #c4ceb2; text-shadow: -2px -3px 2px rgb(255 255 255 / 85%), 3px 5px 3px rgb(77 95 56 / 28%); user-select: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-inline: 28px; padding-top: 24px; border-top: 1px solid rgb(74 87 59 / 22%); font-size: 11px; line-height: 1.6; }
@media (hover: hover) and (pointer: fine) {
  .footer-label:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--clay-shadow-hover); }
  .footer-text-links a:hover { text-decoration-color: currentColor; }
}
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: minmax(0, 1fr) auto; gap: 36px; padding-inline: 8px; }
  .footer-navigation { grid-row: 2; grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-label { grid-column: 2; grid-row: 1; }
}
@media (max-width: 767px) {
  .newsletter { padding: 64px var(--gutter) 56px; }
  .newsletter h2 { font-size: clamp(38px, 8.8vw, 60px); }
  .newsletter-description { margin: 20px auto 30px; font-size: 14px; }
  .newsletter-controls { grid-template-columns: minmax(0, 1fr); }
  .newsletter-controls input, .newsletter .newsletter-submit { min-height: 58px; }
  .newsletter .newsletter-submit { justify-content: space-between; }
  .newsletter-form label { margin-left: 20px; }
  .newsletter-note, .newsletter-status { margin-inline: 20px; }
  .site-footer { padding-top: 48px; padding-bottom: 24px; border-radius: 32px 32px 0 0; }
  .footer-top { gap: 28px 16px; padding: 0; }
  .footer-intro p { font-size: clamp(32px, 8.5vw, 46px); }
  .footer-intro > span { max-width: 20ch; font-size: 12px; }
  .footer-label { width: 114px; min-height: 162px; padding: 32px 12px 18px; gap: 14px; border-radius: 22px; }
  .footer-label img { width: 48px; height: 48px; }
  .footer-label > span:last-child { font-size: 10px; gap: 6px; }
  .footer-navigation { flex-direction: column; align-items: stretch; gap: 12px; }
  .footer-shop-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .site-footer .footer-shop { min-height: 50px; justify-content: space-between; padding: 14px; gap: 10px; font-size: 11px; }
  .footer-text-links { justify-content: space-between; padding-inline: 4px; }
  .footer-wordmark { margin-top: 40px; margin-bottom: 24px; font-size: 18vw; text-shadow: -1px -2px 1px rgb(255 255 255 / 85%), 2px 3px 2px rgb(77 95 56 / 28%); }
  .footer-bottom { margin-inline: 0; padding-top: 20px; gap: 12px; font-size: 10px; }
}

.fullscreen-panel { position: fixed; inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; overflow: auto; overscroll-behavior: contain; background: var(--surface); color: var(--ink); }
.fullscreen-panel::backdrop { background: rgb(38 30 29 / 35%); }
.product-panel::backdrop { background: transparent; }
.fullscreen-header { position: sticky; top: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 92px; padding: 20px var(--gutter); background: var(--surface); border-bottom: 1px solid var(--line); }
.fullscreen-header .wordmark { font-size: 34px; }
.fullscreen-header-actions { display: flex; align-items: center; gap: 12px; }
.panel-bag-button { min-height: 48px; padding: 12px 16px; gap: 8px; }
.panel-close-button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; padding: 12px 22px; background: var(--clay-lilac); font-size: 13px; font-weight: 600; }
.all-products-content { max-width: 1800px; margin: 0 auto; padding: 54px var(--gutter) 64px; }
.all-products-heading { margin-bottom: 38px; }
.all-products-heading .panel-label { margin: 0 0 20px; }
.all-products-heading h2 { margin: 0; font-size: clamp(42px, 4.5vw, 72px); font-weight: 450; letter-spacing: -0.055em; line-height: 1.05; }
.all-products-heading > p:last-child { margin: 16px 0 0; font-size: 14px; color: var(--muted); }
.all-products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; margin: 0; padding: 0; list-style: none; }
.is-filtered .all-products-content { max-width: 1120px; }
.is-filtered .all-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.all-products-grid .product-photo { cursor: pointer; }
.product-preview-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 100px); align-items: center; max-width: 1440px; margin: 0 auto; padding: 36px var(--gutter) 44px; }
.product-preview-photo { width: min(100%, calc((100dvh - 172px) * 2 / 3)); margin: 0 auto; overflow: hidden; border-radius: var(--radius-media); background: #dfd9d1; aspect-ratio: 2 / 3; }
.product-preview-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-preview-views { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 0; }
.product-preview-views button { min-height: 44px; padding: 12px 20px; background: var(--surface); color: var(--muted); font-size: 12px; }
.product-preview-views button[aria-pressed="true"] { color: var(--ink); background: var(--butter); }
.product-preview-copy { max-width: 470px; }
.product-preview-copy .panel-label { margin: 0 0 22px; }
.product-preview-copy h2 { margin: 0; font-size: clamp(44px, 5vw, 72px); font-weight: 450; line-height: 1.02; letter-spacing: -0.055em; }
.product-preview-add { min-width: 220px; min-height: 54px; margin-top: 20px; }
#product-preview-price { margin: 26px 0 16px; font-size: 22px; }
#product-preview-colour { margin: 0 0 26px; font-size: 13px; color: var(--muted); }
#product-preview-description { font-size: 15px; line-height: 1.7; color: var(--muted); }

.side-panel.bag-panel { width: min(564px, 100%); padding: 12px; border-radius: 0; overflow: hidden; background: transparent; box-shadow: none; }
.bag-panel.is-photo-open { width: 100%; }
.bag-content { position: relative; z-index: 1; display: flex; flex-direction: column; width: min(540px, 100%); height: 100%; margin-left: auto; padding: 28px 32px max(24px, env(safe-area-inset-bottom)); overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: -12px 0 40px rgb(62 42 32 / 15%), inset 3px 3px 8px rgb(255 255 255 / 85%); }
.bag-panel .panel-topline { flex: none; margin: 0; padding: 0 0 12px; }
#bag-filled:not([hidden]) { display: flex; flex: 1; flex-direction: column; min-height: 0; }
.bag-toolbar { display: flex; flex: none; justify-content: flex-end; border-bottom: 1px solid var(--line); }
.bag-toolbar .bag-reset { margin: 0; padding: 8px 0 8px 20px; }
.bag-photo-preview { position: absolute; inset: 12px 568px 12px 12px; display: flex; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid rgb(255 255 255 / 80%); border-radius: 28px; background: #eee5dc; box-shadow: inset 3px 3px 8px rgb(255 255 255 / 65%), inset -3px -3px 8px rgb(110 74 40 / 8%); }
.bag-photo-close { align-self: flex-end; flex: none; margin-bottom: 18px; }
.bag-photo-preview figure { flex: 1; min-height: 0; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bag-photo-preview img { min-height: 0; max-width: 100%; flex: 1; width: 100%; height: 0; object-fit: contain; }
.bag-photo-preview figcaption { flex: none; text-align: center; font-size: 12px; line-height: 1.5; }
.bag-item-preview { align-self: start; width: fit-content; padding: 0; border-radius: 16px; background: transparent; cursor: zoom-in; }
.bag-item-preview img { display: block; }
.bag-item-preview:hover { box-shadow: 0 0 0 3px var(--clay-lilac); }
@media (max-width: 899px) {
  .bag-photo-preview { inset: 8px; z-index: 2; padding: 20px; border-radius: 24px; }
  .side-panel.bag-panel { width: min(556px, 100%); padding: 8px; }
  .bag-panel.is-photo-open { width: 100%; }
}
@media (max-width: 599px) {
  .bag-content { padding: 20px 20px max(20px, env(safe-area-inset-bottom)); border-radius: 24px; }
  .bag-item-controls { flex-wrap: wrap; }
}
#bag-title { margin: 0; font-size: 28px; font-weight: 500; text-transform: none; letter-spacing: -0.045em; line-height: 1.2; }
.bag-panel [hidden] { display: none; }
#bag-empty h3 { margin: 0; font-size: clamp(38px, 4vw, 52px); font-weight: 450; line-height: 1.05; letter-spacing: -0.055em; }
#bag-empty p { color: var(--muted); font-size: 14px; line-height: 1.7; }
#bag-empty:not([hidden]) { display: flex; flex: 1; flex-direction: column; min-height: 0; }
.bag-empty-copy { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.bag-empty-continue { flex: none; width: 100%; margin-top: 20px; }
.bag-items { flex: 1; min-height: 0; margin: 0; padding: 0; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--surface); list-style: none; }
.bag-item { display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.bag-item-image { width: 78px; height: 108px; object-fit: cover; border-radius: 16px; background: var(--rose); }
.bag-item-heading { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.bag-item h3 { margin: 0; font-size: 14px; font-weight: 550; line-height: 1.4; }
.bag-item-price { margin: 0; white-space: nowrap; font-size: 12px; line-height: 1.6; }
.bag-item-colour { margin: 8px 0 6px; font-size: 11px; color: var(--muted); }
.bag-item-size { margin: 0 0 14px; font-size: 11px; font-weight: 550; }
.bag-item-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bag-quantity { display: inline-flex; align-items: center; border-radius: 999px; background: #eee6ef; }
.bag-quantity button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; background: transparent; }
.bag-quantity button:disabled { opacity: 0.35; cursor: default; }
.bag-quantity span { min-width: 20px; text-align: center; font-size: 12px; font-variant-numeric: tabular-nums; }
.bag-remove { min-height: 44px; padding: 8px 0 8px 8px; background: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; font-size: 11px; }
.bag-summary { flex: none; padding-top: 20px; border-top: 1px solid var(--line); }
.bag-subtotal { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; font-size: 16px; }
.bag-subtotal strong { font-size: 23px; font-weight: 500; }
.bag-continue { width: 100%; margin-top: 20px; }
.bag-reset { display: block; min-height: 44px; margin: 10px auto 0; padding: 8px 20px; background: transparent; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; color: var(--muted); }
.checkout-panel { background: #edc7d1; }
.checkout-heading { max-width: 1220px; margin: 0 auto; padding: 44px 32px 30px; }
.checkout-heading h2 { margin: 8px 0 12px; font-size: clamp(46px, 5vw, 72px); line-height: 1; font-weight: 450; letter-spacing: -0.06em; }
.checkout-heading > p:last-child { font-size: 14px; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: start; gap: 24px; max-width: 1220px; margin: 0 auto; padding: 0 32px 60px; }
.checkout-form { display: grid; gap: 24px; }
.checkout-card { min-width: 0; padding: 28px; border: 2px solid #fff; border-radius: 28px; background: var(--surface); box-shadow: var(--clay-shadow); }
.checkout-card h3 { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; font-size: 21px; font-weight: 500; letter-spacing: -0.035em; }
.checkout-card h3 > span { display: inline-grid; place-items: center; min-width: 32px; height: 32px; border-radius: 50%; background: var(--clay-lilac); font-size: 11px; letter-spacing: 0; }
.checkout-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; }
.checkout-fields label, .voucher-form > label { display: grid; gap: 9px; font-size: 12px; font-weight: 500; }
.checkout-field-wide { grid-column: 1 / -1; }
.checkout-fields input, .checkout-fields select, .voucher-form input { width: 100%; min-width: 0; min-height: 48px; padding: 12px 16px; border: 1px solid #fff; border-radius: 14px; background: #fffcfa; color: var(--ink); box-shadow: inset 2px 3px 5px rgb(85 56 42 / 8%), 0 1px 0 #fff; font: inherit; font-size: 14px; }
.checkout-fields input:focus-visible, .checkout-fields select:focus-visible, .voucher-form input:focus-visible { outline: 2px solid #887593; outline-offset: 3px; }
.payment-options { display: grid; gap: 12px; padding: 0; margin: 0; border: 0; }
.payment-option { display: flex; align-items: center; gap: 12px; min-height: 78px; padding: 14px; border: 2px solid transparent; border-radius: 18px; background: #ede5ed; cursor: pointer; }
.payment-option:has(:checked) { background: #f4edc9; border-color: #a89553; }
.payment-option input { width: 18px; height: 18px; accent-color: #746234; }
.payment-option strong { font-size: 13px; font-weight: 600; }
.payment-option small { display: block; margin-top: 5px; font-size: 11px; color: var(--muted); }
.payment-badge { margin-left: auto; padding: 8px; border-radius: 8px; background: rgb(255 255 255 / 65%); font-size: 11px; font-weight: 700; }
.checkout-demo { margin: 20px 0 0; font-size: 11px; color: var(--muted); line-height: 1.6; }
.checkout-summary { position: sticky; top: 116px; }
.checkout-items { display: grid; gap: 18px; max-height: 340px; margin: 0; padding: 0 0 20px; overflow-y: auto; list-style: none; }
.checkout-item { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.checkout-item img { display: block; width: 56px; height: 74px; border-radius: 12px; object-fit: cover; }
.checkout-item strong { font-size: 12px; font-weight: 550; }
.checkout-item p { margin: 6px 0 0; font-size: 10px; color: var(--muted); }
.checkout-item > span { font-size: 12px; white-space: nowrap; }
.voucher-form { padding: 20px 0; border-top: 1px solid var(--line); }
.voucher-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin-top: 10px; }
.voucher-form .primary-button { min-height: 48px; padding: 12px 22px; font-size: 12px; }
#voucher-status, #checkout-status { margin: 10px 0 0; font-size: 11px; line-height: 1.6; }
.checkout-totals { margin: 0; border-top: 1px solid var(--line); }
.checkout-totals > div { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-top: 16px; font-size: 12px; }
.checkout-totals > div[hidden] { display: none; }
.checkout-totals dd { margin: 0; }
.checkout-totals button { min-height: 32px; margin-left: 8px; background: transparent; font-size: 10px; text-decoration: underline; }
.checkout-totals .checkout-total { padding-top: 20px; border-top: 1px solid var(--line); font-size: 20px; font-weight: 550; }
.checkout-total small { display: block; margin-top: 5px; font-size: 10px; font-weight: 400; }
.checkout-pay { width: 100%; justify-content: center; margin-top: 24px; }
.payment-supported { margin: 18px 0 0; text-align: center; color: var(--muted); font-size: 10px; line-height: 1.8; }
@media (max-width: 899px) {
  .checkout-layout { grid-template-columns: 1fr; max-width: 640px; padding: 0 20px 36px; }
  .checkout-heading { max-width: 640px; padding: 30px 20px 20px; }
  .checkout-summary { position: static; }
  .checkout-card { padding: 22px; }
}
@media (max-width: 420px) {
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-fields input, .checkout-fields select, .voucher-form input { font-size: 16px; }
  .payment-option { gap: 8px; padding: 10px; }
  .payment-badge { font-size: 9px; }
}
.bag-flight { position: fixed; inset: 0 auto auto 0; z-index: 10; width: 70px; height: 88px; max-width: none; max-height: none; margin: 0; padding: 0; border: 3px solid var(--surface); border-radius: 18px; object-fit: cover; background: var(--surface); box-shadow: 0 12px 26px rgb(62 42 32 / 22%); pointer-events: none; will-change: transform, opacity; }
.bag-flight::backdrop { background: transparent; pointer-events: none; }
.maker-banner { position: fixed; z-index: 3; left: -72px; bottom: 20px; display: flex; align-items: center; gap: 10px; width: 240px; min-height: 44px; padding: 10px 14px 10px 87px; border: 1px solid rgb(255 249 236 / 60%); border-radius: 0 999px 999px 0; background: rgb(248 243 239 / 60%); backdrop-filter: blur(8px); box-shadow: 3px 4px 10px rgb(85 56 42 / 10%), inset 2px 2px 4px rgb(255 255 255 / 50%), inset -2px -2px 4px rgb(110 74 40 / 8%); font-size: 10px; white-space: nowrap; opacity: 0; visibility: hidden; pointer-events: none; translate: -16px 0; transition: translate 200ms var(--ease), opacity 200ms ease, visibility 200ms; }
.maker-banner.is-visible { opacity: 1; visibility: visible; pointer-events: auto; translate: 0 0; }
.maker-banner strong { font-weight: 700; }
.maker-banner.is-visible:hover { translate: 5px 0; }
.maker-banner:focus-visible { outline-offset: -4px; }

@media (hover: hover) and (pointer: fine) {
  :is(.primary-button, .bag-button, .icon-button, .panel-close-button, .view-all-button, .gallery-arrow, .collection-tab, .product-preview-views button, .add-to-bag):hover:not(:disabled):not(:active) { translate: 0 -2px; box-shadow: var(--clay-shadow-hover); }
  .product-photo:hover .product-image-alternate { opacity: 1; }
  .product-track.is-dragging .product-image-alternate { opacity: 0; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-track { grid-auto-columns: calc((100% - 40px) / 2.3); }
  .all-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .arrivals { padding-top: 54px; padding-bottom: 54px; }
  .arrivals-header { display: block; margin-bottom: 24px; }
  .arrivals-intro > p { margin-top: 10px; font-size: 12px; }
  .arrivals-actions { margin-top: 22px; justify-content: space-between; }
  .product-track { --card-gap: 14px; grid-auto-columns: 86%; }
  .product-details { column-gap: 8px; padding-top: 15px; }
  .product-name { font-size: 13px; }
  .collection-edits-frame { gap: 12px; padding: 12px; border-radius: var(--radius-media); }
  .collection-edit-photo { border-radius: 16px; }
  .collection-edit-caption { gap: 12px; padding-top: 14px; }
  .collection-edit-copy h2 { font-size: 28px; }
  .collection-edit-copy p { min-height: 36px; font-size: 12px; line-height: 1.5; }
  .collection-edit .collection-edit-button { min-height: 44px; padding: 11px 10px; gap: 6px; font-size: 11px; white-space: nowrap; }
  .collection-edit-button svg { width: 18px; height: 18px; }
  .fullscreen-header { min-height: 80px; padding: 16px var(--gutter); gap: 12px; }
  .fullscreen-header-actions { gap: 8px; }
  .fullscreen-header-actions .panel-close-button { gap: 6px; padding-inline: 12px; }
  .panel-bag-button { padding-inline: 12px; }
  .fullscreen-header .wordmark { font-size: 29px; }
  .panel-close-button { gap: 12px; padding-inline: 18px; }
  .all-products-content { padding-top: 32px; padding-bottom: 40px; }
  .all-products-heading { margin-bottom: 28px; }
  .all-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
  .all-products-grid .product-photo { border-radius: 18px; }
  .all-products-grid .quick-view { right: 8px; bottom: 8px; width: 44px; height: 44px; }
  .all-products-grid .product-add-button { left: 8px; right: 58px; bottom: 8px; padding: 10px 8px; min-height: 44px; justify-content: center; font-size: 10px; }
  .all-products-grid .product-add-button svg { display: none; }
  .bag-item { gap: 12px; grid-template-columns: 65px minmax(0, 1fr); }
  .bag-item-image { width: 65px; height: 92px; }
  .all-products-grid .product-details { grid-template-columns: 1fr; row-gap: 6px; }
  .all-products-grid .product-price { grid-row: 3; }
  .all-products-grid .product-name { font-size: 12px; }
  .product-preview-layout { grid-template-columns: minmax(0, 1fr); gap: 30px; padding: 24px var(--gutter) 44px; }
  .product-preview-photo { width: min(100%, 380px); }
  .product-preview-copy { max-width: none; }
  .product-preview-copy h2 { font-size: 44px; }
  #product-preview-price { margin-top: 20px; }
}

@media (min-width: 1800px) {
  .hero-content { padding-bottom: 11vh; }
}

@media (max-width: 1279px) {
  h1 { font-size: clamp(58px, 6.1vw, 80px); }
  .hero-content { padding-bottom: 70px; }
}

@media (min-width: 768px) and (max-aspect-ratio: 6/5) {
  .site-header { background: var(--rose); }
  .hero-image { position: relative; top: 80px; height: calc(80% - 80px); object-position: 83% top; }
  .hero-media::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, var(--rose) 10%, rgb(221 187 175 / 0%) 95%); }
}

@media (max-width: 767px) {
  :root { --gutter: 24px; }
  .site-header { height: 76px; padding: 0 18px; grid-template-columns: 1fr auto 1fr; gap: 12px; background: var(--rose); }
  .desktop-navigation { display: none; }
  .mobile-menu { display: inline-flex; margin-left: -6px; }
  .wordmark { font-size: 33px; }
  .bag-button { min-width: 48px; min-height: 44px; padding: 0 11px; gap: 5px; }
  .bag-label { display: none; }
  .mobile-bag-count { display: inline; font-size: 11px; }
  .hero { min-height: max(740px, 100svh); }
  .hero-media { inset: 0; }
  .hero-image { position: relative; top: 76px; height: calc(77% - 76px); object-position: 83% top; }
  .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(221 187 175 / 20%) 0%, transparent 17%, transparent 44%, rgb(221 187 175 / 70%) 67%, var(--rose) 80%); }
  .hero-content { padding: 440px var(--gutter) 36px; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: 0.13em; }
  h1 { font-size: clamp(39px, 8.7vw, 65px); font-weight: 500; line-height: 1.03; letter-spacing: -0.06em; }
  .hero-description { font-size: 13px; margin: 18px 0 24px; line-height: 1.55; }
  .primary-button { min-height: 54px; padding: 16px 24px; gap: 38px; font-size: 12px; }
  .side-panel { padding: 20px 24px 32px; }
  .panel-topline { margin-bottom: 20px; }
  .collection-image-wrap { aspect-ratio: 1.12; }
  .text-panel-content { padding-top: 10vh; }
}

@media (max-width: 374px) {
  :root { --gutter: 20px; }
  .hero-content { padding-top: 405px; }
  h1 { font-size: 34px; }
}

@media (max-height: 640px) and (min-width: 768px) {
  .hero { min-height: 640px; }
  .hero-content { padding-bottom: 48px; }
  .hero-image { object-position: center 25%; }
}

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