/* =========================================================
   YIWU DIKUN — stylesheet
   ========================================================= */

:root {
  --ink: #171310;
  --ink-2: #1f1a16;
  --ink-3: #2b241e;
  --walnut: #4a3526;
  --ivory: #faf6ef;
  --cream: #f3ece1;
  --sand: #e9dfcf;
  --stone: #d8ccb9;
  --gold: #b8914f;
  --gold-2: #d4b173;
  --gold-3: #8c6a35;
  --gold-grad: linear-gradient(135deg, #e2c58d 0%, #c49b5b 48%, #9a7440 100%);
  --text: #2a231d;
  --muted: #75695c;
  --muted-2: #a09385;
  --line: rgba(42, 35, 29, .12);
  --line-dark: rgba(250, 246, 239, .12);
  --danger: #a8492f;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --shadow: 0 30px 60px -30px rgba(23, 19, 16, .35);
  --shadow-lg: 0 50px 100px -40px rgba(23, 19, 16, .55);
  --header-h: 84px;
  --sbw: 0px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.is-locked { overflow: hidden; }
html.is-locked body, html.is-locked .header { padding-right: var(--sbw); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  font-variant-numeric: lining-nums;
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
button:disabled { cursor: not-allowed; }
input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -.005em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
address { font-style: normal; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
section[id] { scroll-margin-top: 72px; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--ivory);
  transform: translateY(-160%); transition: transform .3s;
}
.skip-link:focus { transform: none; }

/* grain overlay for dark sections */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow__line { width: 42px; height: 1px; background: currentColor; opacity: .8; }

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section-label {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-3);
}
.section-label span {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--serif); font-size: 1rem; font-weight: 600; letter-spacing: .04em; color: var(--gold);
}
.section-label span::after { content: ""; width: 38px; height: 1px; background: var(--gold); opacity: .7; }
.section-title {
  font-size: clamp(2rem, 3.7vw, 3.15rem); font-weight: 500; line-height: 1.15; color: var(--ink);
}
.section-title em { font-style: normal; color: var(--gold-3); }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
  gap: 1.6rem 4rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head > div { max-width: 40rem; }
.section-head__text { max-width: 25rem; color: var(--muted); font-weight: 300; font-size: 1.02rem; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .section-label { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1.05rem 1.9rem; border: 1px solid transparent;
  font-family: var(--sans); font-size: .74rem; font-weight: 500; line-height: 1;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  transition: color .35s, background-color .35s, border-color .35s, transform .35s, box-shadow .35s;
}
.btn .icon { width: 1.25em; height: 1.25em; }
.btn .icon--arrow { transition: transform .35s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn:disabled { opacity: .45; }
.btn--gold { background: var(--gold-grad); color: #1a140f; box-shadow: 0 14px 30px -14px rgba(184, 145, 79, .7); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .9s var(--ease);
}
.btn--gold:hover:not(:disabled)::after { transform: translateX(120%); }
.btn--gold:hover:not(:disabled) { box-shadow: 0 18px 36px -14px rgba(184, 145, 79, .85); }
.btn--ghost { border-color: rgba(250, 246, 239, .35); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--outline { border-color: currentColor; color: var(--text); }
.btn--outline:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.btn--outline-light { border-color: rgba(250, 246, 239, .3); color: var(--ivory); }
.btn--outline-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--dark { background: var(--ink); color: var(--ivory); }
.btn--dark:hover { background: var(--walnut); }
.btn--block { width: 100%; }
.btn--sm { padding: .8rem 1.25rem; font-size: .66rem; }

.link-btn {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .9rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid transparent; transition: color .3s, border-color .3s;
}
.link-btn:hover { color: var(--ink); border-color: var(--gold); }
.link-btn--back { margin: 0 0 1.2rem; }

.icon-btn {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; transition: border-color .3s, transform .5s var(--ease), background .3s;
}
.icon-btn:hover { border-color: var(--ink); transform: rotate(90deg); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50; color: var(--ivory);
  transition: background-color .45s, box-shadow .45s, color .45s;
}
.topbar {
  max-height: 40px; overflow: hidden; border-bottom: 1px solid var(--line-dark);
  font-size: .72rem; letter-spacing: .06em; color: rgba(250, 246, 239, .66);
  transition: max-height .45s var(--ease), opacity .35s, border-color .35s;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 40px; }
.topbar__item, .topbar__links a { display: inline-flex; align-items: center; gap: .5rem; }
.topbar__item .icon, .topbar__links .icon { color: var(--gold-2); width: 1.05em; height: 1.05em; }
.topbar__note { letter-spacing: .22em; text-transform: uppercase; font-size: .64rem; }
.topbar__links { display: flex; gap: 1.6rem; }
.topbar__links a:hover { color: var(--ivory); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: var(--header-h); transition: height .45s var(--ease); }

.brand { display: inline-flex; align-items: center; gap: .85rem; flex: none; }
.brand__mark { width: 44px; height: 44px; transition: width .45s, height .45s; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.brand__tag {
  margin-top: .38rem; font-size: .54rem; font-weight: 500; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold-2);
}

.nav__list { display: flex; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav__link {
  position: relative; padding: .5rem 0;
  font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  opacity: .85; transition: opacity .3s, color .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.nav__link:hover, .nav__link.is-active { opacity: 1; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__quote { color: var(--ivory); border-color: rgba(250, 246, 239, .35); }
.header__quote:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.cart-btn {
  position: relative; width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid rgba(250, 246, 239, .3); border-radius: 50%; transition: border-color .3s, background .3s, color .3s;
}
.cart-btn .icon { width: 20px; height: 20px; }
.cart-btn:hover { border-color: var(--gold-2); color: var(--gold-2); }
.cart-btn__count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 10px;
  background: var(--gold-grad); color: var(--ink); font-size: .66rem; font-weight: 600; line-height: 1;
  transition: transform .4s var(--ease);
}
.cart-btn__count.is-empty { transform: scale(0); }
.cart-btn__count.bump { animation: bump .6s var(--ease); }
@keyframes bump { 0% { transform: scale(1); } 35% { transform: scale(1.45); } 100% { transform: scale(1); } }

.menu-btn { display: none; width: 46px; height: 46px; position: relative; }
.menu-btn span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor;
  transition: transform .45s var(--ease), top .45s var(--ease);
}
.menu-btn span:nth-child(1) { top: 19px; }
.menu-btn span:nth-child(2) { top: 26px; right: 18px; }
.header.menu-open .menu-btn span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.header.menu-open .menu-btn span:nth-child(2) { top: 22px; right: 12px; transform: rotate(-45deg); }

/* scrolled state */
.header.is-scrolled {
  background: rgba(250, 246, 239, .92); color: var(--ink);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 10px 40px -20px rgba(23, 19, 16, .35);
}
.header.is-scrolled .topbar { max-height: 0; opacity: 0; border-color: transparent; }
.header.is-scrolled .header__inner { height: 70px; }
.header.is-scrolled .brand__mark { width: 40px; height: 40px; }
.header.is-scrolled .brand__tag { color: var(--gold-3); }
.header.is-scrolled .header__quote { color: var(--ink); border-color: rgba(23, 19, 16, .3); }
.header.is-scrolled .header__quote:hover { color: var(--ink); }
.header.is-scrolled .cart-btn { border-color: var(--line); }
.header.is-scrolled .cart-btn:hover { border-color: var(--gold); color: var(--gold-3); }
.header.menu-open { background: transparent; color: var(--ivory); box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.header.menu-open .topbar { max-height: 0; opacity: 0; }

/* =========================================================
   Mobile menu
   ========================================================= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45; display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2.4rem;
  background: var(--ink); color: var(--ivory);
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path .75s var(--ease), visibility 0s .75s;
}
.mobile-menu.is-open { clip-path: inset(0); visibility: visible; transition: clip-path .75s var(--ease), visibility 0s; }
.mobile-menu__list a {
  display: flex; align-items: baseline; gap: 1rem; padding: .35rem 0;
  font-family: var(--serif); font-size: clamp(1.9rem, 8vw, 2.7rem); line-height: 1.25;
  opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
.mobile-menu__list a span { font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; color: var(--gold); }
.mobile-menu__list a:hover { color: var(--gold-2); }
.mobile-menu.is-open .mobile-menu__list a { opacity: 1; transform: none; transition-delay: calc(.2s + var(--i) * .06s); }
.mobile-menu__foot { display: grid; gap: .8rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); font-size: .92rem; color: rgba(250, 246, 239, .7); }
.mobile-menu__foot a { display: inline-flex; align-items: center; gap: .7rem; }
.mobile-menu__foot .icon { color: var(--gold-2); }
.mobile-menu__foot p { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-2); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: 100vh; min-height: 100svh; padding: 170px 0 120px;
  background: radial-gradient(120% 90% at 85% 10%, #2a221b 0%, var(--ink) 55%, #110e0c 100%);
  color: var(--ivory);
}
.hero__glow {
  position: absolute; right: -240px; top: -260px; width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(201, 161, 91, .16), transparent 62%);
}
.hero__watermark {
  position: absolute; left: -1.5vw; bottom: -5.5vw; pointer-events: none; user-select: none;
  font-family: var(--serif); font-size: clamp(8rem, 22vw, 22rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1px rgba(201, 161, 91, .1);
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.hero__eyebrow { opacity: 0; animation: fadeUp 1s .1s var(--ease) forwards; }
.hero__title {
  margin: 1.6rem 0 1.8rem; font-size: clamp(2.5rem, 5.1vw, 4.7rem); font-weight: 500;
  line-height: 1.1; letter-spacing: -.01em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__title .line > span { display: inline-block; transform: translateY(108%); animation: lineUp 1.3s .2s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .36s; }
.hero__title em { font-style: normal; color: var(--gold-2); }
.hero__lead {
  max-width: 34rem; font-size: 1.06rem; font-weight: 300; color: rgba(250, 246, 239, .7);
  opacity: 0; animation: fadeUp 1s .6s var(--ease) forwards;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; opacity: 0; animation: fadeUp 1s .75s var(--ease) forwards; }
.hero__cats {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3.4rem; border-top: 1px solid var(--line-dark);
  opacity: 0; animation: fadeUp 1s .9s var(--ease) forwards;
}
.hero__cats a {
  position: relative; display: block; padding: 1.1rem 1rem 0 0;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(250, 246, 239, .66); transition: color .3s;
}
.hero__cats a::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .5s var(--ease);
}
.hero__cats a:hover { color: var(--ivory); }
.hero__cats a:hover::before { width: 70%; }
.hero__cats a span { display: block; margin-bottom: .25rem; font-family: var(--serif); font-size: .95rem; font-weight: 600; letter-spacing: .04em; color: var(--gold); }

.hero__visual {
  position: relative; justify-self: end; width: min(100%, 460px); aspect-ratio: 4 / 5.1;
  opacity: 0; animation: fadeIn 1.4s .3s var(--ease) forwards;
}
.hero__arch {
  position: absolute; inset: 0; overflow: hidden; border-radius: 999px 999px 0 0;
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .8);
}
.hero__arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); animation: kenburns 20s ease-in-out infinite alternate; }
.hero__arch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 19, 16, 0) 55%, rgba(23, 19, 16, .45)); }
.hero__arch-line {
  position: absolute; inset: 0; border: 1px solid rgba(201, 161, 91, .5); border-radius: 999px 999px 0 0;
  transform: translate(22px, -22px);
}
.hero__thumb {
  position: absolute; left: -72px; bottom: 56px; width: 180px; aspect-ratio: 1; overflow: hidden;
  border: 6px solid var(--ink); box-shadow: 0 30px 50px -20px rgba(0, 0, 0, .7);
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; }
.hero__badge {
  position: absolute; top: 36px; left: -56px; width: 126px; height: 126px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(23, 19, 16, .78); border: 1px solid rgba(201, 161, 91, .35);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero__badge-ring { position: absolute; inset: 5px; width: calc(100% - 10px); height: calc(100% - 10px); animation: spin 26s linear infinite; }
.hero__badge-ring text { font-family: var(--sans); font-size: 8.4px; font-weight: 500; fill: var(--gold-2); }
.hero__badge-mark { width: 40px; height: 40px; }
.hero__card {
  position: absolute; right: -26px; bottom: -28px; display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; background: var(--ivory); color: var(--ink); box-shadow: var(--shadow-lg);
}
.hero__card strong { font-family: var(--serif); font-size: 2.3rem; font-weight: 500; line-height: 1; color: var(--gold-3); }
.hero__card span { font-size: .64rem; line-height: 1.6; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(250, 246, 239, .55);
}
.scroll-cue i { position: relative; width: 1px; height: 46px; overflow: hidden; background: rgba(250, 246, 239, .18); }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -50%; width: 1px; height: 50%; background: var(--gold-2); animation: scrollLine 2.2s var(--ease) infinite; }

@keyframes lineUp { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
@keyframes kenburns { from { transform: scale(1.1) translate(0, 0); } to { transform: scale(1.2) translate(-2%, -2%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  overflow: hidden; padding: 1.3rem 0; background: var(--ink-2); color: var(--gold-2);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem; }
.marquee span { font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.4rem); letter-spacing: .02em; white-space: nowrap; }
.marquee i { width: 7px; height: 7px; flex: none; background: var(--gold); transform: rotate(45deg); opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   About
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1.02fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.about__media { position: relative; padding: 0 14% 16% 0; }
.about__frame { position: absolute; top: -22px; left: -22px; width: 62%; height: 62%; border: 1px solid var(--gold); opacity: .7; }
.about__img { overflow: hidden; }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.about__img:hover img { transform: scale(1.05); }
.about__img--main { position: relative; aspect-ratio: 4 / 4.8; box-shadow: var(--shadow); }
.about__img--sub { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border: 10px solid var(--ivory); box-shadow: var(--shadow-lg); background: #fff; }
.about__stamp {
  position: absolute; left: -26px; bottom: 26%; display: flex; flex-direction: column; gap: .35rem;
  padding: 1.2rem 1.5rem; background: var(--ink); color: var(--ivory); box-shadow: var(--shadow);
}
.about__stamp span { font-family: var(--serif); font-size: 1.7rem; line-height: 1; color: var(--gold-2); }
.about__stamp small { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(250, 246, 239, .7); }
.about__lead { margin-top: 1.8rem; font-size: 1.12rem; font-weight: 400; color: var(--text); }
.about__text { margin-top: 1rem; color: var(--muted); font-weight: 300; font-size: 1.02rem; }

.features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2.2rem;
  margin-top: 2.6rem; padding-top: 2.4rem; border-top: 1px solid var(--line);
}
.feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature__icon {
  width: 48px; height: 48px; flex: none; display: grid; place-items: center;
  border: 1px solid rgba(184, 145, 79, .5); border-radius: 50%; color: var(--gold-3);
  transition: background .4s, color .4s;
}
.feature:hover .feature__icon { background: var(--ink); color: var(--gold-2); }
.feature__icon .icon { width: 21px; height: 21px; stroke-width: 1.3; }
.feature h3 { margin-bottom: .3rem; font-size: 1.1rem; color: var(--ink); }
.feature p { font-size: .9rem; line-height: 1.6; color: var(--muted); font-weight: 300; }

/* =========================================================
   Collections
   ========================================================= */
.collections { background: var(--cream); }
.collections__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.collection {
  position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5.6;
  background: var(--ink-2); color: var(--ivory); box-shadow: 0 20px 40px -30px rgba(23, 19, 16, .5);
}
.collection__media { position: absolute; inset: 0; background: var(--ink-3); }
.collection__media--light { background: #fff; }
.collection__media--light > img { object-fit: contain; padding: 6% 12% 38%; }
.collection__media > img, .collection__media > .art {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease);
}
.collection:hover .collection__media > * { transform: scale(1.07); }
.collection::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(23, 19, 16, 0) 44%, rgba(23, 19, 16, .5) 70%, rgba(23, 19, 16, .9) 100%);
}
.collection::after {
  content: ""; position: absolute; inset: 14px; z-index: 1; pointer-events: none;
  border: 1px solid rgba(212, 177, 115, .0); transition: border-color .6s var(--ease), inset .6s var(--ease);
}
.collection:hover::after { border-color: rgba(212, 177, 115, .55); inset: 10px; }
.collection__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.7rem 1.6rem; }
.collection__num { font-family: var(--serif); font-size: 1rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-2); }
.collection__title { margin: .25rem 0 .6rem; font-size: clamp(1.45rem, 1.9vw, 1.75rem); }
.collection__text { max-height: 0; overflow: hidden; font-size: .86rem; line-height: 1.6; font-weight: 300; color: rgba(250, 246, 239, .78); opacity: 0; transition: max-height .7s var(--ease), opacity .6s var(--ease); }
.collection:hover .collection__text, .collection:focus-visible .collection__text { max-height: 7em; opacity: 1; }
.collection__meta {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1rem;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2);
}
.collection__meta .icon { transition: transform .4s var(--ease); }
.collection:hover .collection__meta .icon { transform: translateX(5px); }

/* =========================================================
   Products
   ========================================================= */
.filters {
  display: flex; flex-wrap: wrap; gap: .4rem 2.2rem; margin-bottom: 2.8rem;
  border-bottom: 1px solid var(--line);
}
.filter {
  position: relative; padding: .2rem 0 1.05rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  transition: color .3s;
}
.filter sup { margin-left: .35rem; font-size: .62rem; font-weight: 600; letter-spacing: 0; color: var(--gold); vertical-align: .6em; }
.filter::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.filter:hover, .filter.is-active { color: var(--ink); }
.filter.is-active::after { transform: scaleX(1); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.6rem 1.6rem; }
.card { display: flex; flex-direction: column; animation: cardIn .8s var(--ease) both; animation-delay: calc(var(--i, 0) * 55ms); }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.card__media {
  position: relative; overflow: hidden; aspect-ratio: 1 / 1.08; cursor: pointer;
  background: #efe8dc;
}
.card__media > img, .card__media > .art { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media > img, .card:hover .card__media > .art { transform: scale(1.06); }
.card__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(23, 19, 16, .06);
}
.card__tag {
  position: absolute; top: .9rem; left: .9rem; padding: .42rem .7rem;
  font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(250, 246, 239, .94); color: var(--ink);
}
.card__quick {
  position: absolute; top: .8rem; right: .8rem; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(250, 246, 239, .94); color: var(--ink);
  opacity: 0; transform: translateY(-6px); transition: opacity .35s, transform .35s var(--ease), background .3s, color .3s;
}
.card__quick:hover { background: var(--ink); color: var(--gold-2); }
.card:hover .card__quick, .card__quick:focus-visible { opacity: 1; transform: none; }
.card__body { display: flex; flex-direction: column; flex: 1; padding-top: 1.2rem; }
.card__cat { font-size: .64rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-3); }
.card__title { margin: .4rem 0 .5rem; font-size: 1.22rem; line-height: 1.3; color: var(--ink); }
.card__title button { text-align: left; transition: color .3s; }
.card__title button:hover { color: var(--gold-3); }
.card__text {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: .88rem; line-height: 1.6; font-weight: 300; color: var(--muted);
}
.card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  margin-top: auto; padding-top: 1.1rem;
}
.card__text + .card__foot { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.card__price { font-size: .74rem; font-weight: 500; letter-spacing: .04em; color: var(--muted); }
.add-btn {
  display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1rem;
  font-size: .64rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
  background: var(--ink); color: var(--ivory); transition: background .35s, color .35s;
}
.add-btn .icon { width: 15px; height: 15px; }
.add-btn:hover { background: var(--gold); color: var(--ink); }
.add-btn.is-added { background: var(--gold-grad); color: var(--ink); }
.noscript { padding: 2rem; text-align: center; color: var(--muted); border: 1px dashed var(--line); }

/* =========================================================
   Standard (dark)
   ========================================================= */
.standard { background: var(--ink); color: var(--ivory); overflow: hidden; }
.standard .section-title { color: var(--ivory); max-width: 44rem; }
.standard .section-title em { color: var(--gold-2); }
.standard .section-label { color: var(--gold-2); }
.standard__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1rem; border-top: 1px solid var(--line-dark); }
.standard__item { position: relative; padding: 2.8rem 2rem .6rem 0; }
.standard__item + .standard__item { padding-left: 2rem; border-left: 1px solid var(--line-dark); }
.standard__item::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .8s var(--ease);
}
.standard__item + .standard__item::before { left: 2rem; }
.standard__item:hover::before { width: 60%; }
.standard__num {
  display: block; margin-bottom: 1.4rem; font-family: var(--serif); font-size: 3.1rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(212, 177, 115, .6);
}
.standard__icon { width: 30px; height: 30px; margin-bottom: 1.2rem; color: var(--gold-2); stroke-width: 1.2; }
.standard__item h3 { margin-bottom: .7rem; font-size: 1.35rem; }
.standard__item p { font-size: .93rem; font-weight: 300; line-height: 1.7; color: rgba(250, 246, 239, .62); }

/* =========================================================
   CTA
   ========================================================= */
.cta { position: relative; overflow: hidden; padding: clamp(6rem, 12vw, 10rem) 0; color: var(--ivory); text-align: center; }
.cta__bg { position: absolute; inset: -12% 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; transform: scale(1.12); will-change: transform; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(80% 120% at 50% 50%, rgba(23, 19, 16, .72), rgba(23, 19, 16, .92));
}
.cta__inner { position: relative; z-index: 2; max-width: 780px; }
.cta__title { margin: 1.4rem 0 1.2rem; font-size: clamp(2.1rem, 4.2vw, 3.6rem); font-weight: 500; line-height: 1.15; }
.cta__title em { font-style: normal; color: var(--gold-2); }
.cta__text { max-width: 34rem; margin: 0 auto; font-size: 1.05rem; font-weight: 300; color: rgba(250, 246, 239, .74); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.4rem; }

/* =========================================================
   Contact
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 6vw, 6rem); }
.contact__lead { max-width: 30rem; margin: 1.4rem 0 2.6rem; font-size: 1.04rem; font-weight: 300; color: var(--muted); }
.contact__list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 1rem; min-width: 0; }
.contact__list li > div { min-width: 0; }
.contact__icon {
  width: 50px; height: 50px; flex: none; display: grid; place-items: center;
  border: 1px solid rgba(184, 145, 79, .45); border-radius: 50%; color: var(--gold-3); transition: background .4s, color .4s;
}
.contact__list li:hover .contact__icon { background: var(--ink); color: var(--gold-2); }
.contact__icon .icon { width: 20px; height: 20px; }
.contact__list small { display: block; margin-bottom: .2rem; font-size: .64rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); }
.contact__list a { font-family: var(--serif); font-size: 1.12rem; line-height: 1.3; color: var(--ink); overflow-wrap: anywhere; transition: color .3s; }
.contact__list a:hover { color: var(--gold-3); }

.contact__card { overflow: hidden; background: var(--ink); color: var(--ivory); box-shadow: var(--shadow-lg); }
.contact__map { position: relative; aspect-ratio: 2 / 1; }
.contact__map svg { width: 100%; height: 100%; }
.contact__map::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(180deg, transparent, var(--ink)); }
.contact__card-body { padding: 1.4rem 2.4rem 2.6rem; }
.contact__card h3 { margin: .9rem 0 1rem; font-size: 1.8rem; }
.contact__card address { margin-bottom: 1.8rem; font-weight: 300; line-height: 1.9; color: rgba(250, 246, 239, .72); }

/* =========================================================
   Footer
   ========================================================= */
.footer { padding-top: 5rem; background: #100d0b; color: rgba(250, 246, 239, .6); font-size: .92rem; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem;
  padding-bottom: 4rem; border-bottom: 1px solid var(--line-dark);
}
.brand--light { color: var(--ivory); }
.footer__brand p { max-width: 22rem; margin: 1.5rem 0 1.6rem; font-weight: 300; line-height: 1.8; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-dark); color: var(--ivory); transition: border-color .3s, color .3s;
}
.footer__social a:hover { border-color: var(--gold-2); color: var(--gold-2); }
.footer h4 { margin-bottom: 1.4rem; font-family: var(--sans); font-size: .7rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); }
.footer__col li + li { margin-top: .75rem; }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--ivory); }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact .icon { margin-top: .3rem; color: var(--gold-2); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem 2rem;
  padding: 1.6rem 0 1.8rem; font-size: .76rem; letter-spacing: .06em;
}
.footer__bottom p:last-child { letter-spacing: .3em; text-transform: uppercase; font-size: .64rem; color: var(--gold-2); }

/* =========================================================
   Overlay, drawer, modal
   ========================================================= */
.overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(16, 13, 11, .55);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; z-index: 100; display: flex; flex-direction: column;
  width: min(100%, 470px); height: 100%; height: 100dvh; background: var(--ivory);
  box-shadow: -30px 0 80px -30px rgba(0, 0, 0, .45);
  transform: translateX(100%); visibility: hidden; transition: transform .65s var(--ease), visibility 0s .65s;
}
.drawer.is-open { transform: none; visibility: visible; transition: transform .65s var(--ease), visibility 0s; }
.drawer__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.6rem 1.8rem 1.2rem; }
.drawer__eyebrow { font-size: .62rem; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-3); }
.drawer__title { margin-top: .25rem; font-size: 1.65rem; color: var(--ink); }
.drawer__title span { font-family: var(--sans); font-size: .9rem; font-weight: 300; color: var(--muted); }

.steps {
  display: flex; align-items: center; gap: .6rem; padding: .9rem 1.8rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2);
}
.steps li { display: flex; align-items: center; gap: .5rem; transition: color .4s; }
.steps li + li::before { content: ""; width: 20px; height: 1px; margin-right: .1rem; background: currentColor; opacity: .5; }
.steps b {
  width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid currentColor; font-size: .6rem; font-weight: 500; letter-spacing: 0; transition: background .4s, color .4s, border-color .4s;
}
.steps li.is-active { color: var(--ink); }
.steps li.is-active b { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.steps li.is-done { color: var(--gold-3); }
.steps li.is-done b { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.drawer__views { position: relative; flex: 1; min-height: 0; }
.drawer__view {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateX(28px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s .45s;
}
.drawer__view.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s; }
.drawer__view > form { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.drawer__body { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 1.3rem 1.8rem 1.6rem; }
.drawer__foot { padding: 1.3rem 1.8rem 1.6rem; border-top: 1px solid var(--line); background: var(--cream); text-align: center; }
.summary { display: flex; justify-content: space-between; margin-bottom: .55rem; font-size: .88rem; color: var(--muted); text-align: left; }
.summary strong { font-weight: 500; color: var(--ink); }
.drawer__foot .btn { margin-top: .6rem; }

.cart-item {
  display: grid; grid-template-columns: 78px 1fr auto; gap: 1rem; align-items: start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line); animation: cardIn .5s var(--ease) both;
}
.cart-item__media { width: 78px; aspect-ratio: 1 / 1.1; overflow: hidden; background: #efe8dc; }
.cart-item__media > img, .cart-item__media > .art { width: 100%; height: 100%; object-fit: cover; }
.cart-item__cat { font-size: .6rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-3); }
.cart-item__name { margin: .15rem 0 .65rem; font-family: var(--serif); font-size: 1.05rem; line-height: 1.3; color: var(--ink); }
.cart-item__remove { width: 34px; height: 34px; display: grid; place-items: center; color: var(--muted-2); border-radius: 50%; transition: color .3s, background .3s; }
.cart-item__remove:hover { color: var(--danger); background: rgba(168, 73, 47, .08); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); background: #fff; }
.qty button { width: 32px; height: 32px; display: grid; place-items: center; color: var(--text); transition: background .3s; }
.qty button:hover { background: var(--cream); }
.qty button .icon { width: 14px; height: 14px; }
.qty input {
  width: 40px; height: 32px; border: 0; background: transparent; text-align: center; font-size: .9rem;
  -moz-appearance: textfield; appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input:focus { outline: none; background: var(--cream); }
.qty--lg button, .qty--lg input { height: 52px; }
.qty--lg button { width: 46px; }
.qty--lg input { width: 52px; font-size: 1rem; }

.cart-empty { padding: 3rem 1rem 2rem; text-align: center; }
.cart-empty__icon {
  width: 84px; height: 84px; margin: 0 auto 1.4rem; display: grid; place-items: center;
  border: 1px solid rgba(184, 145, 79, .5); border-radius: 50%; color: var(--gold-3);
}
.cart-empty__icon .icon { width: 32px; height: 32px; stroke-width: 1.2; }
.cart-empty h3 { font-size: 1.5rem; color: var(--ink); }
.cart-empty p { max-width: 18rem; margin: .6rem auto 1.6rem; font-size: .92rem; font-weight: 300; color: var(--muted); }

.checkout__title { margin-bottom: 1.2rem; font-size: 1.35rem; color: var(--ink); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.field { display: block; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field span { display: block; margin-bottom: .4rem; font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: .78rem .9rem; border: 1px solid var(--line); border-radius: 0; background: #fff;
  font-size: .95rem; outline: none; transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 145, 79, .16); }
.field.is-invalid span { color: var(--danger); }
.field.is-invalid input { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(168, 73, 47, .1); }
.field.shake { animation: shake .45s; }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.notice {
  display: flex; gap: .8rem; align-items: flex-start; margin-top: 1.4rem; padding: 1rem 1.1rem;
  background: var(--cream); border-left: 2px solid var(--gold); font-size: .84rem; line-height: 1.6; color: var(--muted);
}
.notice .icon { margin-top: .15rem; color: var(--gold-3); }

.done { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 2.6rem; }
.done__check { width: 86px; height: 86px; margin-bottom: 1.6rem; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.done__check circle { stroke-dasharray: 227; stroke-dashoffset: 227; animation: draw 1s var(--ease) forwards; }
.done__check path { stroke-dasharray: 50; stroke-dashoffset: 50; animation: draw .6s .75s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done__title { margin-bottom: 1rem; font-size: 2rem; color: var(--ink); }
.done__text { max-width: 22rem; margin: 0 auto 1.8rem; font-size: .95rem; font-weight: 300; color: var(--muted); }
.done__actions { display: grid; gap: .7rem; width: 100%; }
.done__actions .btn { text-transform: none; letter-spacing: .06em; font-size: .82rem; }

.modal {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.2rem;
  visibility: hidden; pointer-events: none; transition: visibility 0s .5s;
}
.modal.is-open { visibility: visible; transition: visibility 0s; }
.modal__panel {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  width: min(100%, 1000px); max-height: calc(100dvh - 2.4rem); overflow: auto;
  background: var(--ivory); box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(26px) scale(.98); transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: auto;
}
.modal:not(.is-open) .modal__panel { pointer-events: none; }
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: var(--ivory); }
.modal__media { position: relative; min-height: 460px; background: #efe8dc; }
.modal__media { overflow: hidden; }
.modal__media > .art { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal__backdrop { position: absolute; inset: -30px; width: calc(100% + 60px); height: calc(100% + 60px); object-fit: cover; filter: blur(26px) saturate(1.1); opacity: .45; }
.modal__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 1.4rem; filter: drop-shadow(0 20px 30px rgba(23, 19, 16, .25)); }
.modal__body { padding: 3.2rem 2.8rem 2.8rem; }
.modal__cat { font-size: .66rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-3); }
.modal__title { margin: .6rem 0 1rem; font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.2; color: var(--ink); }
.modal__text { font-weight: 300; color: var(--muted); }
.modal__list { display: grid; gap: .55rem; margin: 1.4rem 0 1.6rem; }
.modal__list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .93rem; }
.modal__list .icon { margin-top: .22rem; color: var(--gold); }
.modal__price {
  margin-bottom: 1.4rem; padding: .95rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.15rem; color: var(--gold-3);
}
.modal__buy { display: flex; flex-wrap: wrap; gap: .8rem; }
.modal__buy .btn { flex: 1; min-width: 180px; }
.modal__ask {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.3rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid transparent; transition: color .3s, border-color .3s;
}
.modal__ask:hover { color: var(--ink); border-color: var(--gold); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.6rem; z-index: 120;
  display: flex; align-items: center; gap: .9rem; width: min(92vw, 380px); padding: .8rem 1rem .8rem .8rem;
  background: var(--ink); color: var(--ivory); box-shadow: var(--shadow-lg);
  transform: translate(-50%, 160%); transition: transform .6s var(--ease);
}
.toast.is-show { transform: translate(-50%, 0); }
.toast__icon { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gold-grad); color: var(--ink); }
.toast__text { min-width: 0; }
.toast__text strong { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2); }
.toast__text span { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-family: var(--serif); font-size: 1rem; }
.toast__link { margin-left: auto; flex: none; padding-bottom: 2px; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; border-bottom: 1px solid var(--gold); }
.toast__link:hover { color: var(--gold-2); }

/* ---------- Floating ---------- */
.float-wa {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--ink); color: var(--gold-2); border: 1px solid rgba(201, 161, 91, .5);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, .55); transition: transform .4s var(--ease), background .3s, color .3s;
}
.float-wa .icon { width: 25px; height: 25px; }
.float-wa::before { content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(201, 161, 91, .55); animation: ring 2.8s var(--ease) infinite; }
.float-wa:hover { transform: translateY(-3px); background: var(--gold); color: var(--ink); }
@keyframes ring { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.55); opacity: 0; } }
.to-top {
  position: fixed; right: 1.4rem; bottom: calc(1.4rem + 70px); z-index: 60; width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: 50%; background: var(--ivory); color: var(--ink);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .4s, visibility .4s, transform .4s var(--ease), background .3s;
}
.float-wa[hidden] + .to-top { bottom: 1.4rem; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink); color: var(--gold-2); }

/* ---------- Art (SVG illustrations) ---------- */
.art { display: block; width: 100%; height: 100%; }

/* ---------- Reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .topbar__note { display: none; }
}

@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .nav, .header__quote { display: none; }
  .menu-btn { display: block; }
  .hero { padding: 150px 0 110px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 680px; }
  .hero__visual { justify-self: center; width: min(100%, 420px); margin-top: 2rem; }
  .hero__thumb { left: -40px; width: 150px; }
  .hero__badge { left: -30px; }
  .hero__card { right: -14px; }
  .scroll-cue { display: none; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .standard__grid { grid-template-columns: repeat(2, 1fr); }
  .standard__item:nth-child(3) { padding-left: 0; border-left: 0; }
  .standard__item:nth-child(3)::before { left: 0; }
  .standard__item:nth-child(n + 3) { border-top: 1px solid var(--line-dark); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.2rem; }
  .modal__panel { grid-template-columns: 1fr; }
  .modal__media { min-height: 0; aspect-ratio: 1 / .82; }
  .modal__body { padding: 2rem 1.6rem 2rem; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .brand__name { font-size: 1.08rem; letter-spacing: .1em; }
  .brand__tag { font-size: .5rem; letter-spacing: .26em; }
  .brand__mark { width: 38px; height: 38px; }
  .header.is-scrolled .brand__mark { width: 36px; height: 36px; }
  .header__actions { gap: .4rem; }
  .hero { padding: 130px 0 90px; }
  .hero__title { font-size: clamp(2.2rem, 9.6vw, 3rem); }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__cats { grid-template-columns: repeat(2, 1fr); row-gap: .6rem; }
  .hero__visual { width: calc(100% - 40px); }
  .hero__thumb { left: -20px; bottom: 30px; width: 116px; border-width: 4px; }
  .hero__badge { left: -18px; top: 18px; width: 100px; height: 100px; }
  .hero__badge-mark { width: 32px; height: 32px; }
  .hero__card { right: -12px; bottom: -22px; padding: .9rem 1.1rem; }
  .hero__card strong { font-size: 2rem; }
  .hero__arch-line { transform: translate(14px, -14px); }
  .about__media { padding: 0 10% 18% 0; }
  .about__frame { top: -12px; left: -12px; }
  .about__stamp { left: -10px; padding: .9rem 1.1rem; }
  .about__stamp span { font-size: 1.4rem; }
  .features { grid-template-columns: 1fr; }
  .collections__grid { gap: 1rem; }
  .collection { aspect-ratio: 4 / 5.4; }
  .collection__body { padding: 1.1rem 1rem; }
  .collection__title { font-size: 1.2rem; }
  .collection__text { display: none; }
  .collection__meta { margin-top: .4rem; font-size: .58rem; letter-spacing: .16em; }
  .filters { flex-wrap: nowrap; overflow-x: auto; gap: 1.6rem; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: none; }
  .product-grid { gap: 2rem .9rem; }
  .card__tag { top: .55rem; left: .55rem; padding: .32rem .5rem; font-size: .52rem; letter-spacing: .14em; }
  .card__quick { display: none; }
  .card__title { font-size: 1.02rem; }
  .card__text { display: none; }
  .card__text + .card__foot { margin-top: auto; }
  .card__foot { flex-direction: column; align-items: stretch; gap: .6rem; padding-top: .8rem; }
  .card__price { font-size: .66rem; }
  .add-btn { justify-content: center; padding: .72rem .6rem; font-size: .6rem; letter-spacing: .12em; }
  .standard__grid { grid-template-columns: 1fr; }
  .standard__item, .standard__item + .standard__item { padding: 2.2rem 0 .4rem; border-left: 0; }
  .standard__item + .standard__item { border-top: 1px solid var(--line-dark); }
  .standard__item + .standard__item::before { left: 0; }
  .cta__actions .btn { flex: 1 1 100%; }
  .contact__list { grid-template-columns: 1fr; }
  .contact__card-body { padding: 1.2rem 1.5rem 2rem; }
  .contact__card .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 2.4rem; }
  .field-grid { grid-template-columns: 1fr; }
  .drawer__head, .drawer__body, .drawer__foot { padding-left: 1.3rem; padding-right: 1.3rem; }
  .steps { padding: .8rem 1.3rem; gap: .4rem; font-size: .56rem; letter-spacing: .12em; }
  .steps li + li::before { width: 12px; }
  .toast { bottom: auto; top: 86px; transform: translate(-50%, -220%); }
  .toast.is-show { transform: translate(-50%, 0); }
  .float-wa { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .to-top { right: 1.1rem; bottom: calc(1rem + 64px); width: 44px; height: 44px; }
}

@media (hover: none) {
  .collection__text { max-height: 7em; opacity: 1; }
  .card__quick { opacity: 1; transform: none; }
}

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