:root {
  --ink: #103948;
  --ink-deep: #082832;
  --ink-soft: #18566c;
  --rust: #bc5631;
  --rust-dark: #8d3f24;
  --cream: #f6f2e9;
  --paper: #fcfcfa;
  --mist: #e8ecec;
  --white: #fff;
  --text: #213f49;
  --muted: #6d7e82;
  --line: rgba(16, 57, 72, .14);
  --shadow: 0 24px 60px rgba(8, 40, 50, .13);
  --radius: 22px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 2000;
  padding: 12px 18px; background: var(--white); color: var(--ink); border-radius: 10px;
  box-shadow: var(--shadow); transition: top .2s ease;
}
.skip-link:focus { top: 20px; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
  margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.mobile-only { display: none !important; }

.announcement { background: var(--ink); color: rgba(255,255,255,.9); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement p { margin: 0; }
.announcement__meta { display: flex; align-items: center; gap: 10px; }
.announcement a, .text-button { opacity: .82; transition: opacity .2s ease; }
.announcement a:hover, .text-button:hover { opacity: 1; }
.text-button { border: 0; background: none; color: inherit; padding: 0; cursor: pointer; text-transform: inherit; letter-spacing: inherit; font-size: inherit; }

.site-header {
  position: sticky; top: 0; z-index: 500; height: var(--header-height); background: rgba(252,252,250,.92);
  border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(8,40,50,.08); }
.header__inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand__mark {
  width: 42px; aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center;
  color: var(--ink); font: 700 13px/1 var(--serif); letter-spacing: -.03em;
}
.brand__mark span, .brand__name span, .signature span { color: var(--rust); }
.brand__name { color: var(--ink); font: 600 30px/1 var(--serif); letter-spacing: -.035em; }
.main-nav { justify-self: center; display: flex; gap: 30px; align-items: center; }
.main-nav a { position: relative; color: var(--ink); font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--rust); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header__actions { justify-self: end; display: flex; align-items: center; gap: 7px; }
.icon-button {
  position: relative; width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border: 0;
  border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.icon-button:hover { background: var(--mist); transform: translateY(-1px); }
.icon-button svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; right: 0; top: 0; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center;
  border: 2px solid var(--paper); border-radius: 99px; background: var(--rust); color: white; font-size: 10px; font-weight: 700;
}
.mobile-menu { position: absolute; inset: var(--header-height) 0 auto; background: var(--paper); border-top: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-menu__nav { padding: 20px; display: grid; }
.mobile-menu__nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); color: var(--ink); font: 600 25px/1.2 var(--serif); }

.hero { position: relative; min-height: calc(100svh - 116px); display: grid; align-items: center; overflow: hidden; background: var(--ink); color: white; }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1.1); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,28,35,.84) 0%, rgba(8,40,50,.62) 42%, rgba(8,40,50,.12) 75%), linear-gradient(0deg, rgba(7,30,38,.52), transparent 45%); }
.hero__content { position: relative; z-index: 2; padding-block: 80px 130px; }
.eyebrow { margin: 0 0 14px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow--dark { color: var(--rust); }
.hero h1, .section-heading h2, .gift-section h2, .story-section h2, .newsletter h2, .drawer h2, .search-panel h2, dialog h2 {
  margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.045em; line-height: .98;
}
.hero h1 { max-width: 800px; font-size: clamp(58px, 8vw, 112px); text-wrap: balance; }
.hero__lead { max-width: 610px; margin: 26px 0 32px; color: rgba(255,255,255,.84); font-size: clamp(16px, 2vw, 19px); }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px; padding: 0 25px; border: 1px solid transparent; border-radius: 99px; display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,0,0,.16); }
.button--light { background: white; color: var(--ink); }
.button--ghost-light { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.button--ghost-light:hover { background: white; color: var(--ink); }
.button--dark { background: var(--ink); color: white; }
.button--full { width: 100%; }
.scroll-hint { position: absolute; left: 50%; bottom: 28px; z-index: 2; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-hint svg { width: 18px; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.benefits { background: var(--cream); border-bottom: 1px solid var(--line); }
.benefits__grid { min-height: 145px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.benefit { display: flex; align-items: center; gap: 18px; padding: 28px 38px; border-right: 1px solid var(--line); }
.benefit:first-child { border-left: 1px solid var(--line); }
.benefit__icon { width: 40px; flex: 0 0 40px; color: var(--rust); font: 600 30px/1 var(--serif); }
.benefit h2 { margin: 0 0 4px; color: var(--ink); font: 600 20px/1.15 var(--serif); }
.benefit p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.section-heading { margin-bottom: 45px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading h2 { color: var(--ink); font-size: clamp(45px, 6vw, 72px); }
.section-heading > p { max-width: 470px; margin: 0 0 7px; color: var(--muted); }
.section-heading--center { display: block; text-align: center; }
.section-heading--center > p { margin: 20px auto 0; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.product-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { min-width: 0; }
.product-card__media { position: relative; width: 100%; aspect-ratio: .86; padding: 0; overflow: hidden; border: 0; background: #f0f1ef; cursor: pointer; }
.product-card--small .product-card__media { aspect-ratio: .83; }
.product-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .45s ease; }
.product-card__image--secondary { opacity: 0; }
.product-card__media:hover .product-card__image--primary { transform: scale(1.045); }
.product-card__media:hover .product-card__image--secondary { opacity: 1; transform: scale(1.045); }
.product-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 11px; border-radius: 99px; background: var(--rust); color: white; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card__badge--new { background: var(--ink-soft); }
.product-card__badge--sold { background: rgba(8,40,50,.72); }
.product-card__quick { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; padding: 12px; border-radius: 99px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transform: translateY(80px); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
.product-card__media:hover .product-card__quick { transform: translateY(0); opacity: 1; }
.product-card__info { padding: 17px 3px 0; }
.product-card__vendor { margin: 0 0 4px; color: var(--rust); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 0; color: var(--ink); font: 600 24px/1.15 var(--serif); }
.product-card--small h3 { font-size: 20px; }
.product-card h3 button { padding: 0; border: 0; background: none; text-align: left; cursor: pointer; }
.product-card h3 button:hover { color: var(--rust); }
.product-card__bottom { margin-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.price { margin: 0; color: var(--ink); font-size: 14px; font-weight: 700; }
.price span { color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.add-button { width: 40px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: white; color: var(--ink); cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.add-button:hover:not(:disabled) { background: var(--ink); color: white; transform: rotate(90deg); }
.add-button:disabled { opacity: .4; cursor: not-allowed; }
.add-button svg { width: 18px; }

.gift-section { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 720px; background: var(--ink); color: white; overflow: hidden; }
.gift-section__media { min-height: 560px; overflow: hidden; }
.gift-section__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gift-section:hover .gift-section__media img { transform: scale(1.025); }
.gift-section__content { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.gift-section h2 { font-size: clamp(52px, 6vw, 88px); }
.gift-section__content > p:not(.eyebrow) { max-width: 520px; margin: 26px 0; color: rgba(255,255,255,.74); }
.check-list { margin: 0 0 35px; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: 13px; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #ffd8c8; font-size: 11px; }
.clothing-section { background: var(--cream); }

.story-section { padding: 130px 0; background: white; overflow: hidden; }
.story-section__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 90px; }
.story-section__visual { position: relative; height: 520px; }
.story-card { position: absolute; display: grid; place-items: end start; padding: 24px; color: white; background: var(--ink); box-shadow: var(--shadow); overflow: hidden; }
.story-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.2), transparent 38%), repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.025) 12px 13px); }
.story-card span { position: relative; z-index: 1; font: italic 600 32px/1 var(--serif); }
.story-card--one { left: 2%; top: 8%; width: 42%; height: 64%; background: var(--rust); transform: rotate(-5deg); }
.story-card--two { left: 32%; top: 2%; width: 42%; height: 78%; background: var(--ink); transform: rotate(4deg); }
.story-card--three { right: 0; bottom: 0; width: 37%; height: 57%; background: var(--ink-soft); transform: rotate(-3deg); }
.story-section__content h2 { color: var(--ink); font-size: clamp(52px, 6vw, 82px); }
.story-section__content > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 17px; }
.signature { color: var(--ink); font: 600 40px/1 var(--serif); }

.newsletter { position: relative; padding: 110px 0; overflow: hidden; background: var(--rust); color: white; text-align: center; }
.newsletter__pattern { position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.3) 0 1px, transparent 2px), radial-gradient(circle at 80% 70%, rgba(255,255,255,.25) 0 1px, transparent 2px); background-size: 36px 36px, 52px 52px; }
.newsletter__inner { position: relative; max-width: 760px; }
.newsletter h2 { font-size: clamp(48px, 7vw, 78px); }
.newsletter__inner > p:not(.eyebrow):not(.newsletter-form__message) { max-width: 570px; margin: 20px auto 30px; color: rgba(255,255,255,.78); }
.newsletter-form { max-width: 620px; margin: 0 auto; padding: 7px 7px 7px 24px; display: flex; align-items: center; background: white; border-radius: 99px; box-shadow: 0 20px 45px rgba(77,22,8,.2); }
.newsletter-form input { min-width: 0; flex: 1; padding: 13px 0; border: 0; outline: 0; color: var(--ink); background: transparent; }
.newsletter-form button { height: 48px; padding: 0 22px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 99px; background: var(--ink); color: white; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.newsletter-form button svg { width: 18px; transition: transform .2s ease; }
.newsletter-form button:hover svg { transform: translateX(4px); }
.newsletter-form__message { min-height: 24px; margin: 12px 0 0; font-size: 13px; }

.site-footer { padding: 80px 0 20px; background: var(--ink-deep); color: rgba(255,255,255,.68); }
.footer__grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 60px; }
.brand--footer .brand__mark { border-color: rgba(255,255,255,.55); color: white; }
.brand--footer .brand__name { color: white; }
.footer__brand p { max-width: 330px; margin: 20px 0 0; font-size: 13px; }
.footer__column { display: grid; align-content: start; gap: 9px; }
.footer__column h2 { margin: 0 0 11px; color: white; font: 600 20px/1 var(--serif); }
.footer__column a { width: max-content; font-size: 13px; }
.footer__column a:hover { color: white; }
.footer__bottom { margin-top: 65px; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 25px; border-top: 1px solid rgba(255,255,255,.11); font-size: 11px; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.payment-badges span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 4px; color: rgba(255,255,255,.76); font-size: 9px; }

.overlay { position: fixed; inset: 0; z-index: 900; background: rgba(5,24,30,.56); backdrop-filter: blur(2px); opacity: 0; transition: opacity .25s ease; }
.overlay.is-visible { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; z-index: 1000; width: min(470px, 100%); height: 100dvh; padding: 0; display: flex; flex-direction: column; background: var(--paper); box-shadow: -15px 0 55px rgba(4,24,30,.22); transform: translateX(103%); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.drawer.is-open { transform: translateX(0); }
.drawer__header { padding: 28px 28px 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.drawer__header .eyebrow { margin-bottom: 4px; }
.drawer h2 { color: var(--ink); font-size: 45px; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 92px; height: 108px; object-fit: cover; background: var(--mist); }
.cart-item__name { margin: 0 0 4px; color: var(--ink); font: 600 20px/1.15 var(--serif); }
.cart-item__price { margin: 0 0 11px; color: var(--muted); font-size: 12px; }
.cart-item__controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart-item__qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 99px; }
.cart-item__qty button { width: 31px; height: 31px; padding: 0; border: 0; background: none; cursor: pointer; }
.cart-item__qty span { min-width: 22px; text-align: center; font-size: 12px; font-weight: 600; }
.cart-item__remove { border: 0; background: none; color: var(--rust); cursor: pointer; font-size: 11px; text-decoration: underline; }
.cart-drawer__empty { flex: 1; padding: 40px; display: grid; place-items: center; align-content: center; text-align: center; }
.cart-drawer__empty h3 { margin: 20px 0 8px; color: var(--ink); font: 600 29px/1.1 var(--serif); }
.cart-drawer__empty p { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.empty-icon { width: 100px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--rust); font: 600 27px/1 var(--serif); }
.cart-drawer__footer { padding: 20px 28px 28px; border-top: 1px solid var(--line); background: white; }
.cart-summary { display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.cart-summary strong { font: 600 27px/1 var(--serif); }
.cart-drawer__footer > p { margin: 8px 0 17px; color: var(--muted); font-size: 10px; }

.search-panel { position: fixed; inset: 0 0 auto; z-index: 1100; padding: 55px 0 70px; background: var(--paper); box-shadow: 0 25px 60px rgba(4,24,30,.18); transform: translateY(-105%); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.search-panel.is-open { transform: translateY(0); }
.search-panel__top { display: flex; align-items: center; justify-content: space-between; }
.search-panel h2 { color: var(--ink); font-size: clamp(42px, 6vw, 68px); }
.search-box { margin-top: 28px; padding: 0 20px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 99px; background: white; }
.search-box svg { width: 22px; }
.search-box input { width: 100%; padding: 17px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.search-panel__hint { margin: 12px 22px 0; color: var(--muted); font-size: 11px; }
.search-results { margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.search-result { padding: 13px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); background: white; cursor: pointer; text-align: left; }
.search-result img { width: 58px; height: 65px; object-fit: cover; }
.search-result strong { display: block; color: var(--ink); font: 600 17px/1.15 var(--serif); }
.search-result span { color: var(--rust); font-size: 11px; }
.search-empty { grid-column: 1 / -1; padding: 20px; color: var(--muted); text-align: center; }

dialog { border: 0; color: var(--text); background: var(--paper); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(5,24,30,.66); backdrop-filter: blur(3px); }
.quick-view { width: min(940px, calc(100% - 32px)); padding: 0; border-radius: var(--radius); overflow: hidden; }
.quick-view__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 590px; }
.quick-view__media { background: var(--mist); }
.quick-view__media img { width: 100%; height: 100%; object-fit: cover; }
.quick-view__content { padding: clamp(40px, 6vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.quick-view__content h2 { color: var(--ink); font-size: clamp(42px, 5vw, 62px); }
.quick-view__content > p:not(.eyebrow):not(.quick-view__price) { color: var(--muted); }
.quick-view__price { margin: 20px 0; color: var(--rust); font-weight: 700; }
.quick-view__close { position: absolute; top: 15px; right: 15px; z-index: 2; background: rgba(255,255,255,.9); }
.quantity-selector { width: max-content; margin: 20px 0; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 99px; }
.quantity-selector button { width: 45px; height: 43px; border: 0; background: none; cursor: pointer; }
.quantity-selector span { min-width: 30px; text-align: center; font-weight: 700; }
.country-modal { width: min(460px, calc(100% - 32px)); padding: 42px; border-radius: var(--radius); }
.country-modal h2 { margin-bottom: 25px; color: var(--ink); font-size: 50px; }
.country-modal label { display: grid; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 700; }
.country-modal select { width: 100%; margin-bottom: 20px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink); }
.country-modal__close { position: absolute; top: 12px; right: 12px; }

.toast { position: fixed; left: 50%; bottom: 25px; z-index: 1500; max-width: calc(100% - 32px); padding: 13px 20px; border-radius: 99px; background: var(--ink-deep); color: white; box-shadow: var(--shadow); font-size: 12px; transform: translate(-50%, 35px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 400; width: 44px; height: 44px; border: 0; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; box-shadow: 0 10px 25px rgba(8,40,50,.22); cursor: pointer; opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: grid !important; }
  .header__inner { grid-template-columns: 42px 1fr auto; gap: 12px; }
  .brand { justify-self: center; }
  .product-grid--four { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gift-section { grid-template-columns: 1fr 1fr; }
  .story-section__grid { gap: 45px; }
  .footer__grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 800px) {
  :root { --header-height: 68px; }
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 75px 0; }
  .announcement__inner { justify-content: center; text-align: center; }
  .announcement__meta { display: none; }
  .brand__name { font-size: 25px; }
  .brand__mark { width: 36px; }
  .hero { min-height: 720px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(6,28,35,.86), rgba(8,40,50,.45)), linear-gradient(0deg, rgba(7,30,38,.6), transparent 55%); }
  .hero__content { padding: 80px 0 130px; }
  .hero h1 { font-size: clamp(55px, 16vw, 82px); }
  .benefits__grid { grid-template-columns: 1fr; padding: 8px 0; }
  .benefit, .benefit:first-child { padding: 22px 10px; border: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 17px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
  .product-card h3, .product-card--small h3 { font-size: 20px; }
  .gift-section { grid-template-columns: 1fr; }
  .gift-section__media { min-height: 470px; }
  .gift-section__content { padding: 70px 28px; }
  .story-section { padding: 85px 0; }
  .story-section__grid { grid-template-columns: 1fr; }
  .story-section__visual { height: 430px; order: 2; }
  .newsletter { padding: 80px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .search-results { grid-template-columns: repeat(2, 1fr); }
  .quick-view__grid { grid-template-columns: 1fr; }
  .quick-view__media { min-height: 360px; }
}

@media (max-width: 540px) {
  .header__inner { width: calc(100% - 20px); }
  .brand { gap: 7px; }
  .brand__mark { width: 33px; font-size: 11px; }
  .brand__name { font-size: 22px; }
  .header__actions { gap: 0; }
  .icon-button { width: 38px; height: 38px; }
  .hero { min-height: calc(100svh - 106px); }
  .hero__buttons { display: grid; }
  .button { width: 100%; }
  .scroll-hint { display: none; }
  .section-heading h2 { font-size: 47px; }
  .product-grid, .product-grid--four { grid-template-columns: 1fr; gap: 35px; }
  .product-card__media, .product-card--small .product-card__media { aspect-ratio: .92; }
  .product-card__quick { transform: none; opacity: 1; background: rgba(255,255,255,.88); }
  .gift-section__media { min-height: 360px; }
  .gift-section h2 { font-size: 58px; }
  .story-section__visual { height: 370px; }
  .story-card span { font-size: 26px; }
  .newsletter-form { padding: 5px 5px 5px 18px; }
  .newsletter-form button { width: 47px; padding: 0; justify-content: center; }
  .newsletter-form button span { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .search-panel { padding: 35px 0 45px; }
  .search-results { grid-template-columns: 1fr; max-height: 40vh; overflow-y: auto; }
  .quick-view { max-height: 92dvh; overflow-y: auto; }
  .quick-view__media { min-height: 300px; }
  .quick-view__content { padding: 34px 25px; }
  .country-modal { padding: 35px 24px; }
}

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