/* ============================================================
   TROY EXCHANGE — Fine Jewelry & Watch Atelier
   Modern · airy · light  (Mejuri / Vrai aesthetic)
   ============================================================ */

:root {
  --bg:        #ffffff;
  --cream:     #f7f3ec;   /* warm soft background */
  --cream-2:   #f1ebe0;
  --ink:       #1c1a17;   /* near-black text */
  --ink-soft:  #4a463f;
  --muted:     #8c8578;
  --line:      #e7e1d6;
  --gold:      #a9824f;    /* muted, refined gold — used sparingly */
  --gold-deep: #8a6a3d;
  --shadow:    0 18px 50px rgba(28,26,23,0.10);
  --shadow-sm: 0 8px 24px rgba(28,26,23,0.07);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: 0; color: var(--ink); }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
img { max-width: 100%; display: block; }

.wrap { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold); font-weight: 400;
  margin-bottom: 1.1rem; display: inline-block;
}

.section { padding: 7.5rem 0; position: relative; }
.section--tight { padding: 4.5rem 0; }
.section--cream { background: var(--cream); }

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 640px; font-weight: 300; }
.muted { color: var(--muted); }

.rule { display: flex; align-items: center; gap: 1rem; color: var(--gold); margin: 1.6rem 0; }
.rule::before, .rule::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.rule span { font-size: .7rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 400;
  padding: 1.05rem 2.3rem; border: 1px solid var(--ink);
  color: var(--ink); background: transparent; cursor: pointer;
  transition: all .35s var(--ease);
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--sm { padding: .72rem 1.5rem; font-size: .66rem; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.4rem 0; transition: all .4s var(--ease);
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 100%);
}
.header.scrolled, .header.solid {
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  padding: .8rem 0; border-bottom: 1px solid var(--line);
}
/* transparent state (over a banner) — light text */
.header:not(.scrolled):not(.solid) .nav__links a { color: rgba(255,255,255,.9); }
.header:not(.scrolled):not(.solid) .nav__links a:hover { color: #fff; }
.header:not(.scrolled):not(.solid) .cart-btn { color: #fff; }
.header:not(.scrolled):not(.solid) .burger span { background: #fff; }
.header:not(.scrolled):not(.solid) .socials a { border-color: rgba(255,255,255,.5); color: #fff; }
.header:not(.scrolled):not(.solid) .socials a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.header:not(.scrolled):not(.solid) .brand__name small { color: rgba(255,255,255,.78); }
.nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: .8rem; }
.brand__mark {
  width: 38px; height: 38px; border: 1px solid var(--gold);
  display: grid; place-items: center; font-family: var(--serif);
  font-size: 1.2rem; color: var(--gold); transform: rotate(45deg);
}
.brand__mark span { transform: rotate(-45deg); }
.brand__name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .22em; text-transform: uppercase; line-height: 1; color: var(--gold); }
.brand__name small { display: block; font-family: var(--sans); font-size: .5rem; letter-spacing: .34em; color: var(--gold-deep); margin-top: 4px; font-weight: 400; }
.footer .brand__name { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav__links a {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: .3rem 0; font-weight: 400;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.cart-btn { position: relative; background: none; border: none; color: var(--ink); cursor: pointer; padding: .3rem; }
.cart-btn:hover { color: var(--gold); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -6px; right: -8px; background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: .6rem; font-weight: 500; min-width: 17px; height: 17px;
  border-radius: 50%; display: grid; place-items: center; padding: 0 4px;
}
.cart-count[data-count="0"] { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }

/* ============================================================
   HERO SLIDER — 3 banners (brand / cash-for-gold / maintenance)
   ============================================================ */
.hero-slider { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease); }
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide .wrap { position: relative; z-index: 3; }
.hero__inner-w { max-width: 660px; }
.slide h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); margin: 1.2rem 0 1.4rem; font-weight: 500; line-height: 1.05; color: var(--ink); }
.slide h1 em { font-style: italic; color: var(--gold); }
.slide .eyebrow { color: var(--gold); }
.slide .hero__sub { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 2.2rem; max-width: 490px; }
.slide .hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* slide 1 — shiny glowing darker beige + sketch */
.slide--beige {
  background:
    radial-gradient(ellipse 55% 45% at 72% 32%, rgba(255,245,216,.7) 0%, rgba(255,245,216,0) 55%),
    linear-gradient(135deg, #e6d2a9 0%, #d8c193 44%, #e0cc9f 70%, #d0b886 100%);
}
.slide--beige::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 70% 32%, rgba(255,250,233,.6), transparent 42%); animation: beigeGlow 7s ease-in-out infinite; }
@keyframes beigeGlow { 0%, 100% { opacity: .4; } 50% { opacity: .95; } }
.hero__sketch { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 2; }
.hero__sketch svg { width: min(80vw, 880px); height: auto; opacity: .5; transform: translateX(14%); }
.hero__sketch [data-draw] { fill: none; stroke: var(--gold-deep); stroke-width: 1.1; stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: draw 3.4s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* photo slides — dynamic Ken Burns zoom */
.slide__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); will-change: transform; }
.slide.active .slide__bg { animation: kenburns 13s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.16); } }
.slide__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.slide__bg::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(14,11,7,.82) 0%, rgba(14,11,7,.55) 42%, rgba(14,11,7,.25) 100%); }
.slide--photo h1 { color: #fff; }
.slide--photo .eyebrow { color: #e6c483; }
.slide--photo h1 em { color: #e6c483; }
.slide--photo .hero__sub { color: #ece3d2; }

/* slider controls */
.slider-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .55rem; z-index: 6; }
.slider-dots button { width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--gold-deep); background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: all .3s var(--ease); }
.slider-dots button.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 6px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.75); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: all .3s var(--ease); }
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slider-arrow--prev { left: 1.2rem; } .slider-arrow--next { right: 1.2rem; }
.hero__media, .hero__bg, .hero__est { display: none; }
@media (max-width: 680px) { .slider-arrow { display: none; } .hero__sketch svg { transform: none; opacity: .32; } }
@media (prefers-reduced-motion: reduce) { .hero__sketch [data-draw], .craft-media [data-draw] { animation: none; stroke-dashoffset: 0; } .slide--beige::after { animation: none; } .slide { transition: none; } }

/* scroll reveal */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .1s; } .fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; } .fade-up.d4 { transition-delay: .4s; }

/* ============================================================
   IMAGE PLACEHOLDER (fallback only — real photos used now)
   ============================================================ */
.ph { position: relative; background: var(--cream-2); overflow: hidden; display: grid; place-items: center; color: var(--gold); }
.ph__label { position: relative; text-align: center; padding: 1rem; }
.ph__label svg { width: 42px; height: 42px; margin: 0 auto .6rem; opacity: .5; }
.ph__label span { font-family: var(--sans); font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 1.4rem; }
.about__img { aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold-deep);
  border-left: 2px solid var(--gold); padding-left: 1.6rem; margin-top: 2rem; line-height: 1.4;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 3rem 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat strong { font-family: var(--serif); font-size: 2.8rem; color: var(--ink); display: block; font-weight: 500; }
.stat span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   SECTION HEADERS + CARDS
   ============================================================ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { padding: 2.8rem 2.2rem; background: var(--bg); border: 1px solid var(--line); transition: all .4s var(--ease); }
.card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.card__icon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 1.4rem; stroke-width: 1; }
.card__tag { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.card h3 { font-size: 1.7rem; margin: .5rem 0 .8rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.section--cream .card { background: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.section--cream .card:hover { box-shadow: var(--shadow); }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.program { background: #fff; padding: 2.8rem 2.2rem; box-shadow: var(--shadow-sm); transition: all .4s var(--ease); }
.program:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.program__num { font-family: var(--serif); font-size: 3.2rem; color: var(--gold); opacity: .6; line-height: 1; }
.program h3 { font-size: 1.55rem; margin: .4rem 0 .9rem; }
.program p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.2rem; }
.program__ex { border-top: 1px solid var(--line); padding-top: 1rem; font-size: .85rem; color: var(--ink-soft); }
.program__ex b { color: var(--gold-deep); }

/* ============================================================
   WHY
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; }
.why__item { display: flex; gap: 1.2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.why__item .n { font-family: var(--serif); color: var(--gold); font-size: 1.4rem; min-width: 2rem; }
.why__item h4 { font-size: 1.3rem; margin-bottom: .3rem; }
.why__item p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   PRODUCTS / SHOP
   ============================================================ */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.8rem; }
.product { background: var(--bg); transition: transform .4s var(--ease); display: flex; flex-direction: column; }
.product__media { aspect-ratio: 1/1; position: relative; overflow: hidden; background: var(--cream-2); }
.product__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__media .ph { position: absolute; inset: 0; }
.product__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2; background: rgba(255,255,255,.92);
  color: var(--ink); font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; padding: .35rem .7rem;
}
.product__body { padding: 1.3rem .2rem 0; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.product h3 { font-size: 1.25rem; margin: .35rem 0 .15rem; font-weight: 500; }
.product__body .muted { font-size: .82rem; }
.product__price { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin: .5rem 0 1.1rem; font-weight: 500; }
.product .btn { margin-top: auto; width: 100%; }

.shop-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-bottom: 2.8rem; }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .6rem 1.2rem; border: 1px solid var(--line); background: none; color: var(--ink-soft); cursor: pointer;
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.shop-page { padding-top: 9rem; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(28,26,23,.4); opacity: 0; visibility: hidden; transition: .4s var(--ease); z-index: 300; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 90vw;
  background: #fff; z-index: 310; transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,.12);
}
.drawer.open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 1.6rem; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.5rem; }
.drawer__close { background: none; border: none; color: var(--ink); font-size: 1.7rem; cursor: pointer; line-height: 1; }
.drawer__close:hover { color: var(--gold); }
.drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.drawer__empty { text-align: center; color: var(--muted); padding: 4rem 1rem; }
.drawer__empty svg { width: 48px; height: 48px; opacity: .35; margin: 0 auto 1rem; }

.cart-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.cart-item__img { width: 70px; height: 70px; flex: none; position: relative; overflow: hidden; background: var(--cream-2); }
.cart-item__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-item__img .ph { position: absolute; inset: 0; }
.cart-item__info { flex: 1; }
.cart-item__info h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.cart-item__info .p { color: var(--gold-deep); font-size: .9rem; }
.qty { display: inline-flex; align-items: center; gap: .7rem; margin-top: .5rem; border: 1px solid var(--line); }
.qty button { background: none; border: none; color: var(--ink); width: 28px; height: 28px; cursor: pointer; font-size: 1rem; }
.qty button:hover { color: var(--gold); }
.qty span { font-size: .85rem; min-width: 18px; text-align: center; }
.cart-item__remove { background: none; border: none; color: var(--muted); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; margin-top: .5rem; display: block; }
.cart-item__remove:hover { color: var(--gold); }

.cart-warn { background: #1c1a17; color: #e6c483; border: 1px solid var(--gold); padding: .9rem 1rem; font-size: .8rem; line-height: 1.45; text-align: center; margin-bottom: 1.1rem; }
.cart-warn b { color: #fff; display: block; font-size: .92rem; letter-spacing: .04em; margin-bottom: .25rem; }
.drawer__foot { border-top: 1px solid var(--line); padding: 1.6rem; }
.drawer__total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1rem; }
.drawer__total span:last-child { color: var(--ink); font-weight: 500; }
.drawer__foot .btn { width: 100%; }
.drawer__note { font-size: .68rem; color: var(--muted); text-align: center; margin-top: .9rem; line-height: 1.5; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta { text-align: center; background: var(--cream); }
.cta h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.cta p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 2.4rem; }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; }
.contact h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.4rem; }
.contact__line { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact__line svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; stroke-width: 1.3; }
.contact__line b { display: block; font-weight: 400; letter-spacing: .04em; }
.contact__line span { color: var(--muted); font-size: .92rem; }

form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  padding: .9rem 1rem; font-family: var(--sans); font-size: .95rem; font-weight: 300;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-msg { font-size: .85rem; color: var(--gold-deep); display: none; }
.form-msg.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #cfc7b8; padding: 4.5rem 0 2rem; }
.footer .brand__name { color: var(--gold); }
.footer .brand__name small { color: #9a9384; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.4rem; margin-bottom: 3rem; }
.footer h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer ul { list-style: none; display: grid; gap: .7rem; }
.footer a { color: #b3ab9c; font-size: .9rem; }
.footer a:hover { color: #fff; }
.footer__about p { color: #b3ab9c; font-size: .92rem; max-width: 280px; margin-top: 1rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: #8c8578; font-size: .78rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: #fff; padding: .9rem 1.8rem; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; z-index: 400; transition: transform .45s var(--ease); box-shadow: var(--shadow);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__inner { padding: 7rem 8% 3.5rem; }
  .hero__inner-w { margin: 0; }
  .hero__media { min-height: 50vh; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .cards, .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 680px) {
  .section { padding: 4.5rem 0; }
  .nav__links { display: none; }
  .burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--line);
  }
  .cards, .programs__grid, .form-row { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
}

/* ============================================================
   GOLD BUTTONS
   ============================================================ */
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn--outline-gold { border-color: var(--gold); color: var(--gold-deep); background: transparent; }
.btn--outline-gold:hover { background: var(--gold); color: #fff; }

/* ============================================================
   HEADER EXTRAS — socials + book button
   ============================================================ */
.socials { display: flex; gap: .45rem; align-items: center; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink-soft); border-radius: 50%; transition: all .3s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.socials svg { width: 16px; height: 16px; }
.nav__actions .cart-btn svg { width: 24px; height: 24px; }
.nav__actions .nav__book { white-space: nowrap; padding: .92rem 1.7rem; font-size: .72rem; letter-spacing: .16em; }
.nav__account { display: flex; align-items: center; gap: .7rem; }
.nav__login { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); cursor: pointer; white-space: nowrap; }
.nav__login:hover { color: var(--gold); }
.nav__hi { font-size: .74rem; letter-spacing: .06em; color: var(--ink-soft); white-space: nowrap; }
.header:not(.scrolled):not(.solid) .nav__login, .header:not(.scrolled):not(.solid) .nav__hi { color: rgba(255,255,255,.92); }
.auth-toggle { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.auth-toggle a { color: var(--gold-deep); cursor: pointer; text-decoration: underline; }
@media (max-width: 680px) { .nav__hi { display: none; } }
.nav__links-book { display: none; }
@media (max-width: 1080px) { .nav__actions .socials { display: none; } }
@media (max-width: 680px) {
  .nav__links-book { display: block; }
  .nav__actions .nav__book { display: none; } /* booking stays obvious via floating button */
}

/* ============================================================
   FEATURE BAND — "Sell your piece" (dark + gold drama)
   ============================================================ */
.feature-band { background: linear-gradient(135deg, #171510 0%, #221c12 55%, #191510 100%); color: #f3ead9; text-align: center; position: relative; overflow: hidden; }
.feature-band::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(ellipse at 50% 0%, rgba(198,163,90,.18), transparent 60%); }
.feature-band .wrap { position: relative; z-index: 2; }
.feature-band .eyebrow { color: var(--gold); }
.feature-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.feature-band h2 em { color: var(--gold); font-style: italic; }
.feature-band p { color: #c9c0ae; max-width: 580px; margin: 0 auto 2.2rem; }
.feature-band .btn { border-color: var(--gold); color: var(--gold); }
.feature-band .btn:hover { background: var(--gold); color: #1a1610; }
.feature-band .btn--gold { background: var(--gold); color: #1a1610; }
.feature-band .btn--gold:hover { background: #fff; border-color: #fff; color: #1a1610; }
.sell-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.4rem; margin-top: 2.6rem; }
.sell-points div { color: #c9c0ae; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: .5rem; }
.sell-points b { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }

/* ============================================================
   CRAFT — dynamic self-drawing animation
   ============================================================ */
.craft-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.craft-media { position: relative; aspect-ratio: 16/11; background: linear-gradient(135deg, #f4eddf, #e7dbc6); overflow: hidden; display: grid; place-items: center; }
.craft-media svg { width: 68%; height: auto; }
.craft-media [data-draw] { fill: none; stroke: var(--gold-deep); stroke-width: 1.3; stroke-dasharray: 2800; stroke-dashoffset: 2800; animation: drawLoop 7s linear infinite; }
@keyframes drawLoop { 0% { stroke-dashoffset: 2800; } 70% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
.craft-media__tag { position: absolute; bottom: 1rem; left: 1rem; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); background: rgba(255,255,255,.75); padding: .35rem .7rem; display: flex; align-items: center; gap: .4rem; }
.craft-media__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #d33; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.craft-feature h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
@media (max-width: 880px) { .craft-feature { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ============================================================
   FLOATING ACTIONS — WhatsApp + Book
   ============================================================ */
.fab { position: fixed; right: 1.3rem; bottom: 1.3rem; display: flex; flex-direction: column; gap: .8rem; z-index: 250; }
.fab a, .fab button {
  height: 54px; border-radius: 40px; display: flex; align-items: center; gap: .55rem; padding: 0 1.3rem;
  border: none; cursor: pointer; box-shadow: var(--shadow); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; font-family: var(--sans); font-weight: 400; transition: all .3s var(--ease);
}
.fab a:hover, .fab button:hover { transform: translateY(-3px); }
.fab__wa { background: #25D366; color: #fff; }
.fab__book { background: var(--ink); color: #fff; }
.fab svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 680px) { .fab__label { display: none; } .fab a, .fab button { padding: 0; width: 54px; justify-content: center; } }

/* ============================================================
   THE VAULT — timed luxury drop
   ============================================================ */
.drop { background: var(--cream); }
.drop__stage { max-width: 900px; margin: 2.4rem auto 0; }
.drop-card { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: linear-gradient(160deg, #1b1710, #241d12); border: 1px solid rgba(198,163,90,.25); box-shadow: var(--shadow); overflow: hidden; min-height: 380px; }
.drop-card__media { position: relative; background-size: cover; background-position: center; min-height: 320px; transition: filter .6s var(--ease); }
.drop-card__media.locked { filter: blur(18px) brightness(.55); transform: scale(1.12); }
.drop-card__lock { position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold); z-index: 2; }
.drop-card__lock svg { width: 58px; height: 58px; opacity: .9; }
.drop-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; background: var(--gold); color: #1a1610; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; padding: .35rem .7rem; }
.drop-card__seal { position: absolute; inset: 0; display: grid; place-items: center; z-index: 3; }
.drop-card__seal span { border: 3px solid #c0392b; color: #d4564a; font-family: var(--serif); font-size: 2.4rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem 1.7rem; transform: rotate(-12deg); background: rgba(0,0,0,.35); font-weight: 600; }
.drop-card__body { padding: 2.6rem; display: flex; flex-direction: column; justify-content: center; color: #f3ead9; }
.drop-card__phase { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.drop-card__phase .dot { width: 8px; height: 8px; border-radius: 50%; background: #e0483d; animation: pulse 1.4s infinite; }
.drop-card__title { font-family: var(--serif); font-size: 1.95rem; color: #fff; margin-bottom: .3rem; line-height: 1.1; }
.drop-card__desc { color: #c9bfa8; font-size: .9rem; margin-bottom: 1rem; }
.drop-card__price { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); margin-bottom: 1.1rem; }
.drop-clock { line-height: 1; }
.drop-clock .t { font-family: var(--serif); font-size: 2.7rem; color: #fff; letter-spacing: .04em; }
.drop-clock small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: #bdb09a; margin-top: .55rem; }
.melt { border: 1px solid rgba(198,163,90,.32); background: rgba(198,163,90,.07); padding: .9rem 1rem; margin: 0 0 1.1rem; }
.melt__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; color: #cdbfa0; padding: .16rem 0; }
.melt__val { color: var(--gold); font-family: var(--serif); font-size: 1.05rem; }
.melt__msg { font-size: .78rem; color: #e6d2a0; margin-top: .55rem; line-height: 1.45; font-style: italic; }
.vb { border: 1px solid rgba(198,163,90,.32); background: rgba(198,163,90,.07); padding: 1rem 1.1rem; margin: 0 0 1.1rem; }
.vb__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; color: #cdbfa0; padding: .26rem 0; border-bottom: 1px dashed rgba(198,163,90,.14); }
.vb__melt { color: var(--gold); font-family: var(--serif); font-size: 1.05rem; }
.vb__catch span:last-child { color: #fff; font-family: var(--serif); font-size: 1.2rem; }
.vb__save span { color: #5fd08a; }
.vb__save span:last-child { font-family: var(--serif); font-size: 1.15rem; }
.vb__msg { font-size: .8rem; color: #e6d2a0; margin-top: .7rem; line-height: 1.5; font-style: italic; border-top: 1px solid rgba(198,163,90,.2); padding-top: .6rem; }
.vb__msg b { color: var(--gold); font-style: normal; }
.drop-card__cta { margin-top: 1.4rem; align-self: flex-start; }
.drop-note { text-align: center; color: var(--muted); font-size: .78rem; margin-top: 1.2rem; }
@media (max-width: 680px) { .drop-card { grid-template-columns: 1fr; } .drop-card__media { min-height: 240px; } .drop-card__body { padding: 2rem; } }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(28,26,23,.55); backdrop-filter: blur(2px); }
.modal__card { position: relative; background: #fff; max-width: 540px; width: 100%; padding: 2.8rem; box-shadow: var(--shadow); max-height: 92vh; overflow: auto; }
.modal__close { position: absolute; top: .9rem; right: 1.2rem; background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--ink); }
.modal__close:hover { color: var(--gold); }
.modal__card .eyebrow { margin-bottom: .5rem; }
.modal__card h3 { font-size: 2rem; margin-bottom: .4rem; }
.modal__card > p.muted { margin-bottom: 1.6rem; }
.modal__card form .btn { width: 100%; }
