:root {
  --ink: #111111;
  --ink-2: #444444;
  --muted: #7a7a7a;
  --line: #e7e5e1;
  --paper: #ffffff;
  --paper-2: #f7f5f2;
  --accent: #111111;
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --container: 1280px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: .02em; line-height: 1; display: inline-flex; align-items: baseline; gap: 5px; }
.logo span { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-2); }
.nav { display: flex; gap: 28px; margin-left: auto; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.nav a { padding: 6px 0; border-bottom: 1px solid transparent; transition: border-color .2s; }
.nav a:hover, .nav a.is-active { border-color: var(--ink); }
.header-tg { flex-shrink: 0; }
.nav-toggle { display: none; margin-left: auto; width: 40px; height: 40px; background: none; border: 0; padding: 8px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; }
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); transition: transform .2s; }
.mobile-nav { display: none; flex-direction: column; border-top: 1px solid var(--line); padding: 8px 16px 16px; }
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.mobile-nav a:last-child { border: 0; }
@media (max-width: 900px) {
  .nav, .site-header .header-tg { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .mobile-nav { display: flex; }
  .site-header.is-open .nav-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .site-header.is-open .nav-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border: 1px solid var(--ink); border-radius: var(--radius); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s, transform .1s; white-space: nowrap; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #2b2b2b; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 9px 16px; font-size: 11px; }
.btn--lg { padding: 18px 32px; font-size: 14px; }
.btn--block { width: 100%; }
.btn.is-disabled { opacity: .45; cursor: default; }
.btn:active { transform: translateY(1px); }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; text-align: center; background: var(--paper); }
.hero__inner { max-width: 820px; }
.eyebrow { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; font-weight: 600; }
.hero__title { font-family: var(--serif); font-size: clamp(46px, 8vw, 108px); line-height: .98; letter-spacing: -.01em; font-weight: 500; margin-bottom: 28px; }
.hero__text { font-size: 17px; color: var(--ink-2); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) { .hero { padding: 64px 0 48px; } }

.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; animation: ticker 40s linear infinite; }
.ticker__track span { display: inline-block; padding: 12px 0; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--ink-2); }
.ticker__track span::after { content: '✦'; margin: 0 28px; color: var(--muted); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Catalog ---------- */
.catalog { padding: 72px 0 80px; }
.catalog__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.section-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); line-height: 1.05; font-weight: 500; }
.section-title__sub { color: var(--muted); font-style: italic; }
.catalog__count { color: var(--muted); font-size: 13px; }

.filters { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 500; transition: all .2s; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filters__right { display: flex; gap: 10px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.select, .input { height: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 0 14px; font: inherit; font-size: 14px; color: var(--ink); outline: none; }
.select:focus, .input:focus { border-color: var(--ink); }
.select { appearance: none; -webkit-appearance: none; padding-right: 36px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.search { position: relative; }
.search .input { width: 240px; padding-right: 40px; }
.search__btn { position: absolute; right: 4px; top: 4px; width: 32px; height: 32px; border: 0; background: none; cursor: pointer; display: grid; place-items: center; color: var(--ink-2); }
.filters__reset { font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) { .filters__right { margin-left: 0; width: 100%; } .search { flex: 1; } .search .input { width: 100%; } }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 24px; }
@media (max-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; } }

.card { display: block; }
.card__media { position: relative; aspect-ratio: 4 / 5; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: opacity .35s, transform .6s; }
.card__img--alt { opacity: 0; }
.card:hover .card__img--alt { opacity: 1; }
.card:hover .card__img:not(.card__img--alt) { transform: scale(1.03); }
.card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 48px; color: var(--line); }
.card__placeholder--lg { position: relative; aspect-ratio: 4 / 5; font-size: 120px; }
.card__badge { position: absolute; top: 12px; left: 12px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; background: var(--ink); color: #fff; padding: 5px 9px; }
.card__body { padding-top: 14px; }
.card__brand { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.card__name { font-size: 15px; font-weight: 500; line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__sizes { font-size: 12px; color: var(--muted); margin-bottom: 8px; }

/* ---------- Price ---------- */
.price__total { font-family: var(--serif); font-weight: 600; line-height: 1; letter-spacing: -.01em; }
.price__total sup { font-size: .5em; font-weight: 400; margin-left: 2px; color: var(--muted); }
.price__note { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.price--sm .price__total { font-size: 24px; }
.price--sm .price__note { font-size: 11px; margin-top: 4px; }
.price--md .price__total { font-size: 32px; }
.price--lg .price__total { font-size: 52px; }
.price--lg .price__note { font-size: 13px; margin-top: 10px; }

/* ---------- Empty / pagination ---------- */
.empty { text-align: center; padding: 72px 16px; color: var(--ink-2); border: 1px dashed var(--line); }
.empty__title { font-family: var(--serif); font-size: 32px; margin-bottom: 8px; color: var(--ink); }
.empty a { text-decoration: underline; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 48px; color: var(--muted); font-size: 13px; }

/* ---------- How it works ---------- */
.how { padding: 80px 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.how .section-title { margin-bottom: 40px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.steps--vertical { grid-template-columns: repeat(2, 1fr); margin: 40px 0 64px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps, .steps--vertical { grid-template-columns: 1fr; } }
.step__n { display: block; font-family: var(--serif); font-size: 40px; color: var(--muted); line-height: 1; margin-bottom: 14px; font-style: italic; }
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 14px; margin: 0; }

/* ---------- Product page ---------- */
.product { padding: 32px 0 80px; }
.crumbs { font-size: 12px; color: var(--muted); display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; letter-spacing: .04em; }
.crumbs a:hover { color: var(--ink); }
.product__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: start; }
@media (max-width: 900px) { .product__grid { grid-template-columns: 1fr; gap: 32px; } }
.gallery { position: sticky; top: 92px; }
@media (max-width: 900px) { .gallery { position: static; } }
.gallery__main { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); background: #fff; overflow: hidden; }
.gallery__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 6%; opacity: 0; transition: opacity .3s; }
.gallery__img.is-active { opacity: 1; }
.gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery__thumb { flex: 0 0 72px; width: 72px; height: 88px; border: 1px solid var(--line); background: #fff; padding: 6px; cursor: pointer; opacity: .6; transition: opacity .2s, border-color .2s; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumb.is-active, .gallery__thumb:hover { opacity: 1; border-color: var(--ink); }

.product__brand { display: inline-block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.product__brand:hover { color: var(--ink); }
.product__title { font-family: var(--serif); font-size: clamp(32px, 4vw, 44px); line-height: 1.08; font-weight: 500; margin-bottom: 24px; }
.product__price { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size { min-width: 48px; padding: 9px 12px; text-align: center; border: 1px solid var(--ink); font-size: 13px; font-weight: 500; }
.hint { font-size: 12.5px; color: var(--muted); margin: 10px 0 0; line-height: 1.5; }
.product__sizes { margin-bottom: 28px; }
.product__cta { margin-bottom: 28px; }
.product__meta { border: 1px solid var(--line); padding: 6px 18px; margin-bottom: 28px; background: var(--paper-2); }
.meta-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; font-size: 14px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.meta-row:last-child { border: 0; }
.meta-row b { font-weight: 600; color: var(--ink); }
.meta-row--total { color: var(--ink); font-weight: 600; }
.product__desc { color: var(--ink-2); font-size: 15px; margin-bottom: 20px; }
.acc { border-top: 1px solid var(--line); }
.acc:last-of-type { border-bottom: 1px solid var(--line); }
.acc summary { cursor: pointer; list-style: none; padding: 16px 0; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: '+'; font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--muted); }
.acc[open] summary::after { content: '−'; }
.acc__body { padding: 0 0 18px; color: var(--ink-2); font-size: 14px; }
.acc__body p { margin: 0; }

.related { padding: 64px 0 80px; border-top: 1px solid var(--line); }
.related .section-title { margin-bottom: 36px; font-size: clamp(26px, 3vw, 36px); }

/* ---------- Static pages ---------- */
.page { padding: 72px 0 96px; }
.page__narrow { max-width: 780px; }
.page__title { font-family: var(--serif); font-size: clamp(40px, 6vw, 72px); line-height: 1; margin-bottom: 32px; }
.prose { font-size: 16px; color: var(--ink-2); line-height: 1.7; }
.prose p { margin-bottom: 1.2em; }
.page .section-title { margin: 56px 0 20px; font-size: clamp(28px, 3.5vw, 40px); }
.cta-box { margin-top: 64px; padding: 40px; background: var(--paper-2); border: 1px solid var(--line); text-align: center; }
.cta-box h3 { font-family: var(--serif); font-size: 32px; margin-bottom: 8px; }
.cta-box p { color: var(--ink-2); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.logo--footer { font-size: 36px; }
.footer-slogan { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-2); margin-top: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links strong { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 900px; border-top: 1px solid var(--line); padding-top: 24px; }
.copy { font-size: 12px; color: var(--muted); margin: 0; }
