@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #080808;
  --white: #fff;
  --off-white: #f5f5f5;
  --lime: #f1f3c0;
  --yellow: #f6fd7c;
  --lilac: #f0ebff;
  --pink: #ffc8c8;
  --blue: #e1ecf4;
  --aqua: #e3f6f7;
  --blush: #fbedeb;
  --muted: #777;
  --line: rgba(8, 8, 8, .18);
  --page: min(1440px, calc(100vw - 40px));
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.cart-open, body.search-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.page-width { width: var(--page); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.announcement {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
}
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.site-header {
  position: relative;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1440px) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a, .header-link {
  position: relative;
  border: 0;
  padding: 8px 0;
  background: transparent;
  font-size: 14px;
}
.nav a::after, .header-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.nav a:hover::after, .header-link:hover::after { right: 0; }
.logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}
.logo i { width: 11px; height: 11px; border-radius: 50%; background: var(--pink); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 21px; }
.header-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
}
.header-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.cart-trigger { position: relative; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 700;
}
.mobile-trigger { display: none; }

/* Buttons and type */
.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.05; letter-spacing: -.045em; }
h1 { font-size: clamp(52px, 6vw, 92px); }
h2 { font-size: clamp(36px, 4.3vw, 64px); }
h3 { font-size: clamp(24px, 2.2vw, 34px); }
.button {
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 700;
  transition: color .25s, background .25s, transform .25s;
}
.button:hover { color: var(--black); background: var(--white); }
.button:active { transform: scale(.98); }
.button-light { color: var(--black); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--black); }
.button-outline { color: var(--black); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translateX(5px); }
.section { padding: 100px 0; }
.section-head {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head p { max-width: 520px; margin: 12px 0 0; color: var(--muted); }

/* Home */
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 116px));
  overflow: hidden;
  background: var(--lilac);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.8) 29%, rgba(255,255,255,0) 58%);
  pointer-events: none;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content {
  position: relative;
  z-index: 2;
  min-height: min(760px, calc(100vh - 116px));
  padding: 82px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero-content h1 { max-width: 720px; font-size: clamp(58px, 7.2vw, 112px); }
.hero-content > p:not(.eyebrow) { max-width: 510px; margin: 24px 0 30px; font-size: 18px; }
.hero-controls { position: absolute; z-index: 3; right: 20px; bottom: 22px; display: flex; gap: 7px; }
.hero-controls button { width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.85); font-size: 19px; }

/* The source hero is 2400×1226. On wide screens preserve that ratio so the
   family is shown completely instead of being cropped vertically. */
@media (min-width: 1440px) {
  .hero { min-height: 0; aspect-ratio: 2400 / 1226; }
  .hero-image { object-fit: contain; background: #fff; }
  .hero-content { min-height: 0; height: 100%; }
}

.category-tabs { border-bottom: 1px solid var(--line); }
.tabs-list { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.tabs-list::-webkit-scrollbar { display: none; }
.tab-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
}
.tab-button.active { color: var(--white); background: var(--black); border-color: var(--black); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-card { min-width: 0; }
.category-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  background: var(--off-white);
}
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.3,1,.3,1); }
.category-card:hover img { transform: scale(1.04); }
.category-card h3 { margin-top: 15px; font-size: 20px; letter-spacing: -.02em; }
.category-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }

.statement { padding: 110px 0; text-align: center; background: var(--lime); }
.statement h2 { max-width: 1120px; margin: auto; font-size: clamp(48px, 7vw, 108px); }
.statement p { max-width: 600px; margin: 28px auto 0; font-size: 18px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 12px; }
.product-card { min-width: 0; }
.product-media {
  position: relative;
  aspect-ratio: .76;
  overflow: hidden;
  border-radius: 18px;
  background: var(--off-white);
}
.product-media.tone-pink { background: var(--blush); }
.product-media.tone-blue { background: var(--blue); }
.product-media.tone-lilac { background: var(--lilac); }
.product-media.tone-aqua { background: var(--aqua); }
.product-media.tone-lime { background: var(--lime); }
.product-media img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; transition: transform .45s cubic-bezier(.3,1,.3,1); }
.product-media > a:first-child { display: block; width: 100%; height: 100%; }
.product-card:hover .product-media img { transform: scale(1.045); }
.badge { position: absolute; top: 12px; left: 12px; padding: 7px 11px; border-radius: 999px; background: var(--white); font-size: 11px; font-weight: 700; }
.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 23px;
  transition: transform .25s, color .25s, background .25s;
}
.quick-add:hover { color: var(--black); background: var(--yellow); transform: rotate(90deg); }
.product-name { display: block; margin-top: 15px; font-weight: 700; line-height: 1.35; }
.product-row { margin-top: 7px; display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.product-row span { color: var(--muted); }
.product-row strong { white-space: nowrap; }

.editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--lilac); }
.editorial-media { position: relative; min-height: 640px; overflow: hidden; background: var(--pink); }
.editorial-media img { position: absolute; width: 58%; height: 83%; object-fit: contain; object-position: center bottom; }
.editorial-media img:first-child { left: 4%; bottom: 0; transform: rotate(-4deg); }
.editorial-media img:last-child { right: 2%; top: 2%; transform: rotate(4deg); }
.editorial-copy { padding: 72px clamp(32px, 7vw, 110px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.editorial-copy h2 { max-width: 650px; }
.editorial-copy > p:not(.eyebrow) { max-width: 520px; margin: 26px 0 32px; font-size: 18px; }
.editorial-list { width: 100%; margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.editorial-list li { padding: 14px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 13px; }

.marquee { overflow: hidden; padding: 19px 0; color: var(--white); background: var(--black); }
.marquee-track { width: max-content; display: flex; animation: marquee 28s linear infinite; }
.marquee-track span { padding-right: 34px; font-size: 17px; font-weight: 700; }
@keyframes marquee { to { transform: translateX(-50%); } }

.journal-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.story-card { min-height: 510px; padding: 36px; display: flex; flex-direction: column; align-items: flex-start; border-radius: var(--radius); background: var(--blue); }
.story-card:nth-child(2) { background: var(--pink); }
.story-card time { font-size: 12px; }
.story-card h3 { max-width: 650px; margin: auto 0 20px; font-size: clamp(34px, 4vw, 58px); }

/* Shared inner pages */
.inner-hero { padding: 72px 0 62px; border-bottom: 1px solid var(--line); }
.breadcrumbs { margin-bottom: 30px; display: flex; gap: 8px; color: var(--muted); font-size: 12px; }
.inner-hero h1 { max-width: 1100px; }
.inner-hero .lead { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.chips { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 7px; }
.chip { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 13px; }
.chip.active, .chip:hover { color: var(--white); background: var(--black); border-color: var(--black); }

/* Catalog */
.catalog-toolbar { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); font-size: 13px; }
.catalog-toolbar div { display: flex; align-items: center; gap: 16px; }
.catalog-toolbar button, .catalog-toolbar select { border: 0; background: transparent; }
.catalog-layout { padding: 42px 0 110px; display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; }
.filters { position: sticky; top: 20px; }
.filter-group { padding-bottom: 23px; margin-bottom: 23px; border-bottom: 1px solid var(--line); }
.filter-group h3 { margin: 0 0 14px; font-size: 15px; letter-spacing: -.01em; }
.filter-group label { margin: 9px 0; display: flex; align-items: center; gap: 9px; font-size: 13px; }
.filter-group input { accent-color: var(--black); }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.size-options button { min-height: 35px; border: 1px solid var(--line); border-radius: 8px; background: transparent; font-size: 12px; }
.size-options button.active { color: var(--white); background: var(--black); }
.catalog-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Product */
.product-page { padding: 38px 0 110px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(390px, .75fr); gap: 54px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-item { min-height: 650px; overflow: hidden; border-radius: 18px; background: var(--blush); }
.gallery-item:nth-child(2) { background: var(--blue); }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.product-info { position: sticky; top: 24px; padding: 18px 0 0; }
.product-info h1 { font-size: clamp(46px, 4.8vw, 72px); }
.detail-price { margin: 18px 0 0; font-size: 25px; font-weight: 700; }
.detail-copy { margin: 22px 0 28px; color: var(--muted); font-size: 16px; }
.selector { padding: 22px 0; border-top: 1px solid var(--line); }
.selector-head { margin-bottom: 13px; display: flex; justify-content: space-between; font-size: 13px; }
.selector-head a { text-decoration: underline; }
.size-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.size-pills button { min-width: 47px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; }
.size-pills button.active { color: var(--white); background: var(--black); }
.purchase-row { margin-top: 22px; display: grid; grid-template-columns: 112px 1fr; gap: 8px; }
.qty { min-height: 50px; display: flex; align-items: center; justify-content: space-around; border: 1px solid var(--line); border-radius: 999px; }
.qty button { border: 0; background: transparent; font-size: 19px; }
.purchase-row .button { width: 100%; border: 0; }
.availability { margin-top: 14px; padding: 17px; border-radius: 12px; background: var(--lime); font-size: 13px; }
.availability small { display: block; margin-top: 4px; color: #5f622f; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 18px 0; display: flex; justify-content: space-between; list-style: none; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 20px; font-weight: 500; }
.accordion details[open] summary::after { content: "−"; }
.accordion details > div { padding: 0 0 20px; color: var(--muted); font-size: 14px; }
.related-products { padding-top: 0; }

/* Checkout */
.checkout { padding: 64px 0 110px; background: var(--off-white); }
.checkout-title { max-width: 800px; margin-bottom: 50px; }
.checkout-title h1 { font-size: clamp(48px, 6vw, 84px); }
.checkout-steps { margin-top: 26px; display: flex; gap: 7px; }
.checkout-steps span { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; }
.checkout-steps span.active { color: var(--white); background: var(--black); border-color: var(--black); }
.checkout-layout { display: grid; grid-template-columns: 1fr 410px; gap: 72px; align-items: start; }
.checkout-form { background: var(--white); border-radius: var(--radius); padding: 36px; }
.checkout-block + .checkout-block { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--line); }
.checkout-block-head { margin-bottom: 22px; display: flex; align-items: center; gap: 15px; }
.step-number { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-weight: 700; }
.checkout-block h2 { font-size: 30px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 12px; font-weight: 700; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; background: var(--white); outline: none; }
.field textarea { min-height: 92px; padding-top: 14px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--black); }
.delivery-option { min-height: 76px; padding: 14px; display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; border: 1px solid var(--line); border-radius: 13px; }
.delivery-option + .delivery-option { margin-top: 8px; }
.delivery-option input { accent-color: var(--black); }
.delivery-option span { display: flex; flex-direction: column; }
.delivery-option small { color: var(--muted); }
.order-summary { position: sticky; top: 24px; padding: 30px; border-radius: var(--radius); background: var(--white); }
.order-summary h2 { font-size: 32px; }
.summary-product { padding: 22px 0; display: grid; grid-template-columns: 76px 1fr auto; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.summary-image { height: 94px; overflow: hidden; border-radius: 10px; background: var(--blush); }
.summary-image img { width: 100%; height: 100%; object-fit: contain; }
.summary-product p { margin: 0; display: flex; flex-direction: column; line-height: 1.35; }
.summary-product small { margin-top: 5px; color: var(--muted); }
.summary-row { padding-top: 15px; display: flex; justify-content: space-between; font-size: 13px; }
.summary-total { margin-top: 18px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 20px; }
.checkout-submit { width: 100%; margin-top: 22px; border: 0; }
.legal { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

/* Journal */
.journal-hero { padding: 90px 0; background: var(--lilac); }
.journal-hero-inner { display: grid; grid-template-columns: 1fr 280px; align-items: center; gap: 50px; }
.journal-stamp { width: 230px; height: 230px; display: grid; place-items: center; justify-self: end; border-radius: 50%; background: var(--yellow); font-size: 26px; font-weight: 700; text-align: center; transform: rotate(7deg); }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.article-card { min-height: 470px; padding: 32px; display: flex; flex-direction: column; align-items: flex-start; border-radius: var(--radius); background: var(--blue); }
.article-card:nth-child(2) { background: var(--pink); }
.article-card:nth-child(3) { background: var(--lime); }
.article-card:nth-child(4) { background: var(--aqua); }
.article-card time { font-size: 12px; }
.article-card h2 { max-width: 620px; margin: auto 0 18px; font-size: clamp(34px, 4vw, 56px); }
.article-card p { max-width: 520px; margin: 0 0 24px; }

.article-page { padding: 55px 0 110px; }
.article-header { max-width: 1140px; margin: 0 auto 70px; text-align: center; }
.article-header h1 { margin-top: 24px; font-size: clamp(56px, 7.8vw, 112px); }
.article-header .lead { max-width: 730px; margin: 28px auto 0; color: var(--muted); font-size: 19px; }
.article-layout { max-width: 1080px; margin: auto; display: grid; grid-template-columns: 210px 1fr; gap: 70px; align-items: start; }
.article-aside { position: sticky; top: 25px; display: flex; flex-direction: column; gap: 11px; font-size: 13px; }
.article-aside strong { margin-bottom: 6px; }
.article-aside a { color: var(--muted); }
.article-copy { max-width: 720px; }
.article-copy p, .article-copy li { font-size: 18px; line-height: 1.72; }
.article-copy .intro { margin-top: 0; font-size: 25px; line-height: 1.5; }
.article-copy h2 { margin: 58px 0 20px; font-size: clamp(36px, 4vw, 52px); scroll-margin-top: 24px; }
.article-copy blockquote { margin: 42px 0; padding: 32px; border-radius: var(--radius); background: var(--pink); font-size: 25px; font-weight: 700; line-height: 1.35; }
.article-tip { margin: 36px 0; padding: 27px; border-radius: 18px; background: var(--blue); }
.article-tip p { margin: 6px 0 0; }

/* Footer and overlays */
.site-footer { padding: 78px 0 24px; color: var(--white); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr 1fr; gap: 50px; }
.footer-brand .logo { justify-content: flex-start; font-size: 31px; }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.62); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-col h3 { margin-bottom: 8px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.footer-newsletter { padding: 24px; border-radius: 18px; background: rgba(255,255,255,.08); }
.footer-newsletter h3 { font-size: 24px; }
.newsletter-form { margin-top: 18px; display: flex; border-bottom: 1px solid rgba(255,255,255,.45); }
.newsletter-form input { flex: 1; min-width: 0; height: 42px; border: 0; outline: 0; color: var(--white); background: transparent; }
.newsletter-form button { border: 0; color: var(--white); background: transparent; font-size: 19px; }
.footer-bottom { margin-top: 62px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.45); font-size: 11px; }
.overlay { position: fixed; z-index: 90; inset: 0; opacity: 0; visibility: hidden; background: rgba(0,0,0,.42); transition: opacity .25s, visibility .25s; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.3,1,.3,1);
}
.overlay.open .drawer { transform: none; }
.drawer-head { padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 30px; }
.close-button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 22px; }
.drawer-body { flex: 1; overflow-y: auto; }
.cart-empty { min-height: 300px; display: grid; place-items: center; color: var(--muted); text-align: center; }
.cart-line { padding: 16px 0; display: grid; grid-template-columns: 72px 1fr auto; gap: 13px; border-bottom: 1px solid var(--line); }
.cart-line img { width: 72px; height: 90px; object-fit: contain; border-radius: 8px; background: var(--blush); }
.cart-line p { margin: 0; font-weight: 700; line-height: 1.3; }
.cart-line small { display: block; margin-top: 6px; color: var(--muted); }
.cart-line button { margin-top: 10px; border: 0; padding: 0; background: transparent; color: var(--muted); font-size: 12px; text-decoration: underline; }
.drawer-foot { padding-top: 18px; border-top: 1px solid var(--line); }
.drawer-total { margin-bottom: 16px; display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; }
.drawer-foot .button { width: 100%; }
.search-panel { position: absolute; top: 0; left: 0; right: 0; padding: 30px max(20px, calc((100vw - 1440px) / 2)); background: var(--white); transform: translateY(-100%); transition: transform .35s cubic-bezier(.3,1,.3,1); }
.overlay.open .search-panel { transform: none; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.search-row input { width: 100%; height: 64px; border: 0; border-bottom: 1px solid var(--black); outline: 0; font-size: 28px; }
.menu-panel { position: absolute; inset: 0 auto 0 0; width: min(390px, 100%); padding: 25px; background: var(--white); transform: translateX(-100%); transition: transform .35s cubic-bezier(.3,1,.3,1); }
.overlay.open .menu-panel { transform: none; }
.mobile-nav { margin-top: 35px; display: flex; flex-direction: column; }
.mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 28px; font-weight: 700; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; padding: 13px 20px; border-radius: 999px; color: var(--white); background: var(--black); transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: .3s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 1050px) {
  :root { --page: min(100% - 32px, 900px); }
  .nav { display: none; }
  .site-header { grid-template-columns: 1fr auto 1fr; padding-inline: 16px; }
  .mobile-trigger { display: grid; }
  .header-actions .header-icon.user-icon { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card:nth-child(n+4) { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial { grid-template-columns: 1fr; }
  .editorial-media { min-height: 610px; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .catalog-products { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-info { position: static; max-width: 760px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; max-width: 600px; }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 24px); }
  .announcement { height: 34px; padding: 0 12px; font-size: 10px; }
  .announcement span { display: none; }
  .site-header { height: 68px; }
  .logo { font-size: 22px; }
  .header-actions { gap: 14px; }
  .section { padding: 70px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 680px; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.25) 45%, rgba(255,255,255,.93) 100%); }
  .hero-image { object-position: 61% center; }
  .hero-content { min-height: 680px; padding: 45px 0 46px; justify-content: flex-end; }
  .hero-content h1 { font-size: clamp(52px, 16vw, 75px); }
  .hero-content > p:not(.eyebrow) { max-width: 380px; margin: 18px 0 24px; font-size: 15px; }
  .hero-controls { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:nth-child(3) { display: block; }
  .category-card:nth-child(3) { grid-column: 1 / -1; }
  .category-card:nth-child(3) .category-image { aspect-ratio: 16 / 9; }
  .statement { padding: 76px 0; }
  .statement h2 { font-size: clamp(45px, 13vw, 70px); }
  .product-grid { gap: 30px 8px; }
  .product-media { border-radius: 12px; }
  .product-name { margin-top: 11px; font-size: 13px; }
  .product-row { font-size: 12px; }
  .quick-add { width: 37px; height: 37px; right: 8px; bottom: 8px; }
  .badge { top: 8px; left: 8px; font-size: 9px; }
  .editorial-media { min-height: 470px; }
  .editorial-copy { padding: 55px 20px; }
  .editorial-copy > p:not(.eyebrow) { font-size: 16px; }
  .story-card { min-height: 400px; padding: 25px; }
  .inner-hero { padding: 48px 0; }
  .inner-hero h1 { font-size: 52px; }
  .inner-hero .lead { font-size: 15px; }
  .catalog-toolbar > span { display: none; }
  .catalog-products { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { padding-top: 30px; }
  .product-page { padding-top: 20px; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-item { min-height: 520px; }
  .gallery-item:nth-child(2) { display: none; }
  .product-info h1 { font-size: 49px; }
  .purchase-row { grid-template-columns: 1fr; }
  .qty { width: 130px; }
  .checkout { padding: 45px 0 80px; }
  .checkout-form { padding: 22px 16px; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .checkout-title h1 { font-size: 50px; }
  .checkout-steps { flex-wrap: wrap; }
  .order-summary { padding: 22px 16px; }
  .journal-hero { padding: 60px 0; }
  .journal-hero-inner { grid-template-columns: 1fr; }
  .journal-stamp { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 410px; padding: 25px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { display: none; }
  .article-header { margin-bottom: 50px; }
  .article-header h1 { font-size: 51px; }
  .article-copy .intro { font-size: 22px; }
  .article-copy p, .article-copy li { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .footer-brand, .footer-newsletter { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
