:root {
  --bg:        #ffffff;
  --bg-deep:   #eef3fa;
  --surface:   #ffffff;
  --ink:       #0a1a2f;
  --ink-soft:  #34466b;
  --muted:     #6b7894;
  --rule:      rgba(10, 26, 47, 0.10);
  --rule-firm: rgba(10, 26, 47, 0.18);

  --teal:           #1e4fbf;
  --teal-deep:      #0e3a99;
  --sage:           #5b8bd8;
  --sage-deep:      #3a6dc4;
  --blush:          #5b8bd8;
  --gold:           #5b8bd8;
  --sand:           #dfe7f5;
  --terracotta:     #1e4fbf;
  --terracotta-deep:#0e3a99;

  --tone-cream:      linear-gradient(160deg, #eaf0fb 0%, #cfdcf2 100%);
  --tone-sand:       linear-gradient(160deg, #dfe7f5 0%, #b6c8e6 100%);
  --tone-sage:       linear-gradient(160deg, #5b8bd8 0%, #3a6dc4 100%);
  --tone-blush:      linear-gradient(160deg, #93b4e6 0%, #6c93d5 100%);
  --tone-terracotta: linear-gradient(160deg, #2563eb 0%, #1e3a8a 100%);
  --tone-cocoa:      linear-gradient(160deg, #1e3a8a 0%, #0a1a2f 100%);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --pad-x:    clamp(1.25rem, 10vw, 4.5rem);
  --pad-y:    clamp(3rem, 8vw, 7rem);

  --ease:     cubic-bezier(0.32, 0.72, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-top:  20px;
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%,    rgba(30, 79, 191, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(91, 139, 216, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 60%, #eef3fa 100%);
}
body::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.12  0 0 0 0 0.22  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--teal); color: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}

.eyebrow:has(.eyebrow__num)::before { display: none; }
.eyebrow__num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blush);
  letter-spacing: 0.12em;
}
.eyebrow__num::after {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  display: inline-block;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);

  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.display--light { color: var(--surface); }

.nav {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 80;
  background: #ffffff;
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  box-shadow: 0 2px 18px -8px rgba(10, 26, 47, 0.18);
}

.nav__bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24;
}
.nav__logo {
  color: var(--teal);
  display: inline-flex;
  transition: transform 0.6s var(--ease-out);
}
.nav__brand:hover .nav__logo { transform: rotate(60deg); }

.nav__menu {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav__menu a {
  position: relative;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color 0.25s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav__menu a:hover {
  color: var(--ink);
}
.nav__menu a:hover::after {
  width: 100%;
  left: 0;
}

.nav__tools { display: flex; gap: 4px; }
.nav__icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__icon-btn:hover {
  background: var(--bg-deep);
  color: var(--teal);
}
.nav__icon-btn--menu { display: none; }

.search-panel {
  background: #ffffff;
  border-bottom: 1px solid var(--rule);
  padding: 18px var(--pad-x);
  animation: searchIn 0.3s var(--ease);
  box-shadow: 0 8px 30px -10px rgba(10, 26, 47, 0.12);
}
@keyframes searchIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-panel__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  color: var(--muted);
}
.search-panel__inner input {
  flex: 1;
  border: 0; outline: none;
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}
.search-panel__inner input::placeholder { color: var(--muted); font-style: italic; }
.search-panel__close {
  font-size: 28px; color: var(--muted);
  line-height: 1; width: 28px;
  transition: color 0.2s;
}
.search-panel__close:hover { color: var(--teal); }

.sheet {
  position: fixed; inset: 0;
  z-index: 200;
}
.sheet__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 26, 47, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeBackdrop 0.3s var(--ease);
}
@keyframes fadeBackdrop { from { opacity: 0; } to { opacity: 1; } }

.sheet__panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-radius: 28px 28px 0 0;
  padding: 14px 24px calc(28px + env(safe-area-inset-bottom)) 24px;
  animation: sheetUp 0.4s var(--ease-out);
  max-height: 88vh;
  overflow-y: auto;
}
@keyframes sheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.sheet__handle {
  width: 44px; height: 4px;
  background: var(--rule-firm);
  border-radius: 999px;
  margin: 4px auto 24px;
  cursor: pointer;
}

.sheet__menu {
  display: flex; flex-direction: column;
}
.sheet__menu a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}
.sheet__menu a:hover { color: var(--teal); }
.sheet__menu-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--teal);
}
.sheet__menu-label { flex: 1; }
.sheet__menu a svg { color: var(--muted); }

.sheet__cta {
  margin-top: 28px;
  padding: 20px;
  background: var(--bg-deep);
  border-radius: 18px;
  text-align: center;
}
.sheet__call {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 999px;
  margin-bottom: 12px;
  transition: background 0.25s var(--ease);
}
.sheet__call:hover { background: var(--teal); }
.sheet__addr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.hero {
  position: relative;

  height: clamp(560px, calc(100vh - 68px), 820px);
  overflow: hidden;
  background: var(--ink);
}
.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.hero__slide--active { opacity: 1; pointer-events: auto; }

.hero__slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;

  object-fit: cover;
  object-position: center;
  background: var(--ink);
}
.hero__slide--active .hero__slide-img {
  animation: kenburns 12s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero__slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 26, 47,0.12) 0%, transparent 28%, transparent 55%, rgba(10, 26, 47,0.78) 100%),
    linear-gradient(90deg, rgba(10, 26, 47,0.42) 0%, transparent 55%);
}

.hero__slide-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(60px, 8vw, 120px) var(--pad-x) clamp(110px, 12vw, 160px);
  z-index: 2;
  color: var(--surface);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__slide--active .hero__eyebrow,
.hero__slide--active .hero__title,
.hero__slide--active .hero__body,
.hero__slide--active .hero__cta {
  animation: heroIn 1s var(--ease-out) backwards;
}
.hero__slide--active .hero__eyebrow { animation-delay: 0.35s; }
.hero__slide--active .hero__title   { animation-delay: 0.50s; }
.hero__slide--active .hero__body    { animation-delay: 0.70s; }
.hero__slide--active .hero__cta     { animation-delay: 0.85s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: "";
  width: 32px; height: 1.5px;
  background: var(--sage);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--surface);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  max-width: 820px;
  margin-bottom: 22px;
}
.hero__body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  background: var(--surface);
  color: var(--ink);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}
.hero__cta:hover {
  background: var(--teal);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(30, 79, 191, 0.55);
}
.hero__cta::after {
  content: "→";
  font-size: 15px;
  transition: transform 0.3s var(--ease);
}
.hero__cta:hover::after { transform: translateX(4px); }

.hero__nav {
  position: absolute;
  left: 0; right: 0;
  bottom: 32px;
  z-index: 3;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.hero__nav > * { pointer-events: auto; }

.hero__control {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero__arrow {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s var(--ease), transform 0.25s var(--ease);
}
.hero__arrow:hover {
  color: #ffffff;
}
.hero__arrow:first-child:hover { transform: translateX(-3px); }
.hero__arrow:last-child:hover  { transform: translateX(3px); }

.hero__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__dot {
  width: 22px; height: 2px;
  background: rgba(255, 255, 255, 0.40);
  transition: background 0.3s var(--ease), width 0.4s var(--ease);
  cursor: pointer;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.70); }
.hero__dot--active {
  background: #ffffff;
  width: 40px;
}

.hero__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
  pointer-events: none;
}
.hero__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--teal);
  transform-origin: left center;
}

.catstrip {
  background: transparent;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.catstrip__scroll {
  display: flex;
  gap: 6px;
  padding: 0 var(--pad-x);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
.catstrip__scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.cat-pill + .cat-pill { margin-left: 18px; }
.cat-pill::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.cat-pill:hover { color: var(--ink); }
.cat-pill:hover::after { transform: scaleX(0.5); }
.cat-pill--active {
  color: var(--ink);
  font-weight: 600;
}
.cat-pill--active::after { transform: scaleX(1); }
.cat-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.cat-pill--active .cat-pill__dot { opacity: 1; }

.shop {
  padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(64px, 10vw, 120px);
  max-width: 1280px;
  margin: 0 auto;
}

.shop__head {
  margin-bottom: 28px;
}
.shop__title { max-width: 720px; }
.shop__head .eyebrow { margin-bottom: 14px; }
.shop__head .display {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  letter-spacing: -0.028em;
  line-height: 1;
  margin-bottom: 12px;
}

.shop__lede {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--muted);
  letter-spacing: 0;
  margin: 0;
}

.filterbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 calc(-1 * var(--pad-x)) 28px;
  padding: 0 var(--pad-x);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.filterbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.filterbar__group--inline {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}
.filter {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.filter__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.filter__field {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 26px;
}
.select {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 0; outline: none;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding-right: 22px;
  cursor: pointer;
  min-width: 110px;
}
.select__caret {
  position: absolute; right: 2px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  pointer-events: none;
}
.filter__prefix {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.filter__field input {
  border: 0; outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  width: 90px;
  -moz-appearance: textfield;
}
.filter__field input::-webkit-outer-spin-button,
.filter__field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.filter__field input::placeholder { color: var(--muted); font-weight: 500; }
.filter__clear {
  font-size: 16px; color: var(--muted);
  line-height: 1; padding: 0 4px;
}
.filter__clear:hover { color: var(--ink); }

.filterbar__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}
.filterbar__total {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.filterbar__reset {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.filterbar__reset:hover {
  background: var(--bg-deep);
  color: var(--teal);
}

.filterbar__mobile-btn { display: none; }

@media (max-width: 720px) {
  .filterbar__inner { padding: 12px 0; gap: 12px; }
  .filterbar__group--inline { display: none; }
  .filterbar__mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--surface);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    flex-shrink: 0;
  }
  .filterbar__count {
    background: var(--surface);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
  }
  .filterbar__meta { gap: 10px; }
  .filterbar__reset {
    padding: 8px 12px;
    font-size: 12px;
  }
  .filterbar__total {
    font-size: 10.5px;
  }
}

.filter-sheet {
  position: fixed; inset: 0; z-index: 200;
}
.filter-sheet__scrim {
  position: absolute; inset: 0;
  background: rgba(10, 26, 47, 0.5);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.filter-sheet--open .filter-sheet__scrim { opacity: 1; }
.filter-sheet__panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  padding: 22px 22px 24px;
  transform: translateY(100%);
  transition: transform 0.32s var(--ease);
  max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 -20px 60px -20px rgba(10, 26, 47, 0.25);
}
.filter-sheet--open .filter-sheet__panel { transform: translateY(0); }
.filter-sheet__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 18px;
}
.filter-sheet__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.filter-sheet__close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--ink);
}
.filter-sheet__body {
  flex: 1;
  overflow-y: auto;
  display: flex; flex-direction: column;
  gap: 22px;
  padding-bottom: 12px;
}
.filter-sheet__field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.filter-sheet__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.filter-sheet__field .filter__field {
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--rule);
  min-height: 48px;
}
.filter-sheet__field input,
.filter-sheet__field .select {
  font-size: 15px;
}
.filter-sheet__foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  margin-top: 4px;
}
.btn-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 14px 4px;
}
.btn-primary {
  flex: 1;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 14px;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 20px; }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 56px 28px; }
}

.product {
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
  animation: cardIn 0.7s var(--ease-out) backwards;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product__art {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-deep);
  transition: box-shadow 0.4s var(--ease-out);
}
.product__art--cream      { background: var(--tone-cream);      color: var(--ink-soft); }
.product__art--sand       { background: var(--tone-sand);       color: var(--ink); }
.product__art--sage       { background: var(--tone-sage);       color: var(--surface); }
.product__art--blush      { background: var(--tone-blush);      color: var(--surface); }
.product__art--terracotta { background: var(--tone-terracotta); color: var(--surface); }
.product__art--cocoa      { background: var(--tone-cocoa);      color: var(--blush); }

.product:hover .product__art {
  box-shadow: 0 18px 40px -22px rgba(10, 26, 47, 0.4);
}

.product__svg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 24px;
}
.product__svg svg {
  width: 55%; height: auto;
  opacity: 0.65;
  transition: transform 0.6s var(--ease-out);
}
.product:hover .product__svg svg { transform: scale(1.05); }

.product__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
  image-rendering: -webkit-optimize-contrast;
}
.product:hover .product__img { transform: scale(1.06); }

.product__badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 3;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px -2px rgba(10, 26, 47, 0.15);
}
.product__badge--sale { background: var(--teal); color: var(--surface); }
.product__badge--new  { background: var(--ink); color: var(--surface); }
.product__badge--eid  { background: var(--gold); color: var(--surface); }

.product__body {
  display: flex; flex-direction: column;
  gap: 4px;
}
.product__eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.product__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.25s var(--ease);
  font-variation-settings: 'opsz' 24;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) { .product__name { font-size: 17.5px; } }
.product:hover .product__name { color: var(--teal); }

.product__row {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 6px;
}
.product__price {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}
.product__price--now { color: var(--teal); }
.product__price--was {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 13px;
}
.product__stock {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.product__stock--low { color: var(--teal); }

.shop__empty {
  text-align: center;
  padding: 96px 24px;
  color: var(--muted);
}
.shop__empty h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

.shop__preview {
  text-align: center;
  padding: 72px 24px;
  background: linear-gradient(180deg,
    rgba(30, 79, 191,0.04) 0%,
    rgba(30, 79, 191,0.0) 100%);
  border: 1px solid rgba(30, 79, 191,0.18);
  border-radius: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.shop__preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(30, 79, 191,0.08);
  color: var(--teal, #1e4fbf);
  margin-bottom: 22px;
}
.shop__preview h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.shop__preview p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 14px;
  line-height: 1.6;
}
.shop__preview-cta {
  margin-top: 22px !important;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.shop__preview .btn-primary,
.shop__preview .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.shop__preview .btn-primary {
  background: var(--teal, #1e4fbf);
  color: white;
}
.shop__preview .btn-primary:hover {
  background: #0e3a99;
}
.shop__preview .btn-secondary {
  background: transparent;
  color: var(--teal, #1e4fbf);
  border: 1.5px solid currentColor;
}
.shop__preview .btn-secondary:hover {
  background: rgba(30, 79, 191,0.08);
}

.shop--preview .shop__refine,
.shop--preview .shop__meta {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 64px;
}
.page-btn {
  min-width: 40px; height: 40px;
  padding: 0 14px;
  display: grid; place-items: center;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.page-btn:hover:not(:disabled) {
  background: var(--bg-deep);
  color: var(--ink);
}
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-btn--active {
  background: var(--ink);
  color: var(--surface);
}
.page-btn--ellipsis { cursor: default; color: var(--muted); pointer-events: none; }
.page-list { display: flex; gap: 4px; margin: 0 6px; }

.offers {
  background: var(--ink);
  color: var(--surface);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.offers::before {
  content: ""; position: absolute;
  top: -240px; right: -240px;
  width: 540px; height: 540px;

  background: radial-gradient(circle, rgba(59, 130, 246, 0.32) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.offers__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.offers__head {
  max-width: 720px;
  margin-bottom: 88px;
}
.offers__head .eyebrow {
  color: var(--blush);
  margin-bottom: 18px;
  display: inline-block;
}
.offers__head .display {
  margin-bottom: 22px;
}
.offers__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  letter-spacing: -0.005em;
}

.offers__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  position: relative;
}
.offers__pair::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.offer {
  display: flex;
  flex-direction: column;
}
.offer__label {
  margin-bottom: 36px;
}
.offer__kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(147, 180, 230, 0.4);
  margin-bottom: 18px;
}
.offer__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--surface);
  font-variation-settings: 'opsz' 80, 'SOFT' 30;
}

.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer__list li {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.offer__list li::before {
  content: "";
  width: 6px;
  height: 1px;
  background: var(--blush);
  flex-shrink: 0;
}
.offer__list li:last-child { border-bottom: 0; }

.offer__body {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.offer__points {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.offer__points li {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer__points li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blush);
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .offers__head { margin-bottom: 56px; }
  .offers__pair {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .offers__pair::before {
    left: 0; right: 0;
    top: 50%; bottom: auto;
    width: 100%; height: 1px;
  }
  .offer__title { font-size: 36px; }
}

.story {
  padding: var(--pad-y) var(--pad-x);
}
.story__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.story__title { margin: 14px 0 32px; max-width: 760px; }
.story__body {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 720px;
  margin-bottom: 80px;
  letter-spacing: -0.005em;
}

.story__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 56px;
}

.story-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out),
              border-color 0.25s var(--ease);
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(10, 26, 47, 0.18);
  border-color: rgba(30, 79, 191, 0.22);
}
.story-card:hover::before { opacity: 1; }

.story-card__letter {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--teal);
  font-variation-settings: 'opsz' 144;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  display: block;
}
.story-card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
  font-variation-settings: 'opsz' 24;
}
.story-card__body {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.visit {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg-deep);
}
.visit__head {
  max-width: 1240px;
  margin: 0 auto 56px;
}
.visit__head .eyebrow { margin-bottom: 12px; }

.visit__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.visit-card {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
}
.visit-card--info { padding: 44px 40px; }

.visit-card__row {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.visit-card__row:first-child { padding-top: 0; }
.visit-card__row:last-child  { border-bottom: 0; padding-bottom: 0; }

.visit-card__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}
.visit-card__value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.visit-card__big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.25s var(--ease);
  font-variation-settings: 'opsz' 48;
}
.visit-card__big:hover { color: var(--teal); }
.visit-card__link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s var(--ease);
}
.visit-card__link:hover { color: var(--teal-deep); }

.visit-card__hours {
  list-style: none; padding: 0;
}
.visit-card__hours li {
  display: flex; justify-content: space-between;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.visit-card__social {
  display: flex; flex-direction: column; gap: 10px;
}
.visit-card__social a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: var(--bg-deep);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.visit-card__social a:hover {
  background: var(--ink);
  color: var(--surface);
}
.visit-card__social svg { color: var(--teal); }
.visit-card__social a:hover svg { color: var(--surface); }

.visit-card--map { padding: 0; }
.visit-card__map { height: 100%; min-height: 460px; }
.visit-card__map iframe {
  width: 100%; height: 100%; border: 0;
  display: block;
  min-height: 460px;
}

.foot {
  background: var(--ink);
  color: var(--surface);
  padding: 80px var(--pad-x) 32px;
}
.foot__top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot__brand {
  display: flex; flex-direction: column;
}
.foot__logo { color: var(--teal); margin-bottom: 20px; }
.foot__brand h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
}
.foot__brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  line-height: 1.5;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot__cols h6 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
}
.foot__cols a {
  display: block;
  padding: 7px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.foot__cols a:hover {
  color: var(--surface);
  padding-left: 6px;
}

.foot__base {
  max-width: 1240px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: grid; place-items: center;
  animation: fadeBackdrop 0.3s var(--ease);
}
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 26, 47, 0.65);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative; z-index: 1;
  background: var(--surface);
  max-width: 920px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 24px;
  animation: panelIn 0.45s var(--ease-out);
}
@keyframes panelIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal__close {
  position: absolute; top: 18px; right: 22px;
  z-index: 5;
  width: 38px; height: 38px;
  font-size: 28px; line-height: 1;
  color: var(--muted);
  border-radius: 50%;
  background: var(--surface);
  transition: all 0.25s var(--ease);
}
.modal__close:hover {
  background: var(--teal);
  color: var(--surface);
  transform: rotate(90deg);
}

.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal__art {
  min-height: 420px;
  position: relative;
  border-radius: 24px 0 0 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.modal__art .product__svg svg { width: 50%; }

.modal__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.modal__info { padding: 56px 48px; }
.modal__eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.modal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  font-variation-settings: 'opsz' 48;
}
.modal__sku {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.modal__price-row {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 28px;
}
.modal__price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.modal__price--now { color: var(--teal); }
.modal__price--was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 22px;
}
.modal__desc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.modal__details { list-style: none; padding: 0; margin-bottom: 28px; }
.modal__details li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13.5px;
}
.modal__details li span:first-child {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal__details li span:last-child {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 600;
}
.modal__cta {
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.3s var(--ease);
}
.modal__cta:hover { background: var(--teal); }

.modal--info .modal__panel--info { max-width: 720px; }
.info-page { padding: 64px clamp(32px, 5vw, 72px); }
.info-page__eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.info-page__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  font-variation-settings: 'opsz' 144;
}
.info-page h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 32px 0 14px;
}
.info-page p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.info-page ul { list-style: none; padding: 0; margin: 0 0 20px; }
.info-page ul li {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
  padding: 9px 0 9px 22px;
  position: relative;
  line-height: 1.55;
}
.info-page ul li::before {
  content: ""; position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 1px;
  background: var(--teal);
}

@media (max-width: 900px) {
  .nav__bar { height: 60px; gap: 16px; }
  .nav__menu { display: none; }
  .nav__icon-btn--menu { display: grid; }
  .nav__bar { grid-template-columns: 1fr auto; }

  .hero { height: clamp(520px, calc(100vh - 60px), 760px); }
  .hero__nav { bottom: 24px; }
  .hero__control { gap: 16px; }
  .hero__dots { gap: 6px; }
  .hero__dot { width: 18px; }
  .hero__dot--active { width: 30px; }

  .story__cols { grid-template-columns: 1fr; gap: 16px; padding-top: 40px; }
  .story-card { padding: 28px 24px; }
  .story-card__letter { font-size: 48px; margin-bottom: 16px; }

  .visit__grid { grid-template-columns: 1fr; }
  .visit-card--info { padding: 32px 28px; }
  .visit-card__map { min-height: 320px; }
  .visit-card__map iframe { min-height: 320px; }

  .shop__head { flex-direction: column; align-items: stretch; gap: 28px; }
  .shop__refine { gap: 16px; }
  .refine-field { min-width: 0; flex: 1; }

  .foot__top { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .foot__base { gap: 8px; }

  .modal__body { grid-template-columns: 1fr; }
  .modal__art { border-radius: 24px 24px 0 0; min-height: 280px; }
  .modal__info { padding: 36px 28px; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .product__name { font-size: 16px; }
  .product__art { border-radius: 10px; }
  .hero__title { font-size: 2.5rem; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .catstrip { padding: 18px 0; }
  .catstrip__scroll { padding: 0 var(--pad-x); }
}

.product--skeleton { pointer-events: none; }
.product__art--skeleton {
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.04) 30%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0.04) 70%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
.skeleton {
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.06) 30%,
    rgba(0,0,0,0.12) 50%,
    rgba(0,0,0,0.06) 70%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}
.skeleton--line { height: 12px; margin: 8px 0; }
.skeleton--narrow { width: 35%; height: 9px; }
.skeleton--short { width: 60%; }
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.display {
  letter-spacing: -0.028em;
  font-weight: 500;
}
h1.display, h2.display { line-height: 1.02; }

.hero__slide-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero__cta,
.btn-primary,
.modal__cta {
  transition:
    transform 0.18s cubic-bezier(.2,.7,.3,1),
    box-shadow 0.18s cubic-bezier(.2,.7,.3,1),
    background  0.15s ease;
  will-change: transform;
}
.hero__cta:hover,
.btn-primary:hover,
.modal__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.25);
}
.hero__cta:active,
.btn-primary:active,
.modal__cta:active { transform: translateY(0); }

.product {
  transition:
    transform 0.25s cubic-bezier(.2,.7,.3,1),
    box-shadow 0.25s ease;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(10, 26, 47,0.18);
}

@media (min-width: 900px) {
  .shop, .offers, .story, .visit { padding-top: 100px; padding-bottom: 100px; }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible { outline-offset: 4px; }

.nav__menu a {
  position: relative;
  transition: color 0.15s ease;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.2s ease, left 0.2s ease;
}
.nav__menu a:hover::after {
  width: 100%;
  left: 0;
}

.eyebrow {
  letter-spacing: 0.18em;
  font-weight: 500;
}

.product__badge {
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announce {
  position: relative;
  background: var(--ink);
  color: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  animation: announceIn 0.5s var(--ease-out);
}
@keyframes announceIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 60px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--surface);
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}
.announce__inner:hover { opacity: 0.85; }
.announce__icon {
  display: inline-flex;
  color: var(--gold);
  flex-shrink: 0;
}
.announce__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 760px;
}
.announce__arrow {
  font-family: var(--sans);
  font-weight: 500;
  opacity: 0.7;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.announce__inner:hover .announce__arrow {
  transform: translateX(3px);
  opacity: 1;
}
.announce__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: color 0.2s, background 0.2s;
}
.announce__close:hover {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 560px) {
  .announce__inner { padding: 12px 50px; font-size: 12.5px; }
  .announce__text { max-width: none; }
}

.gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.gallery__track {
  position: absolute; inset: 0;
}
.gallery__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery__slide--active {
  opacity: 1;
  pointer-events: auto;
}
.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s var(--ease);
  z-index: 2;
}
.gallery__btn:hover {
  background: var(--surface);
}
.gallery__btn--prev { left: 14px; }
.gallery__btn--next { right: 14px; }
.gallery__btn--prev:hover { transform: translateY(-50%) translateX(-2px); }
.gallery__btn--next:hover { transform: translateY(-50%) translateX(2px); }
.gallery__dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}
.gallery__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.gallery__dot--active {
  background: var(--surface);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .shop { padding: 32px 16px 56px; }
  .shop__head { margin-bottom: 16px; }
  .shop__head .display { font-size: clamp(2rem, 8vw, 2.5rem); }
  .shop__lede { font-size: 13.5px; }

  .filterbar { margin: 0 -16px 20px; padding: 0 16px; }

  .catstrip { padding: 14px 0; }
  .cat-pill { font-size: 13px; padding: 10px 2px; }
  .cat-pill + .cat-pill { margin-left: 14px; }

  .product__art { border-radius: 6px; margin-bottom: 10px; }
  .product__name { font-size: 14.5px; }
  .product__price { font-size: 13.5px; }
  .product__badge { font-size: 9px; padding: 4px 8px; }

  .pagination { gap: 4px; margin-top: 40px; }
  .page-btn { min-width: 36px; height: 36px; padding: 0 10px; font-size: 12.5px; }
}

@media (max-width: 380px) {
  .product-grid { gap: 24px 10px; }
  .product__name { font-size: 13.5px; }
}
