/* ============================================================
   Steff Goods — Premium Landing
   Palette: bg #171210 · panel #1f1813 · footer #120e0b
   text #ede4d3 · muted #a99a86 · dim #6f6353
   gold #c8a24a · gold-hi #e2c06a
   ============================================================ */

:root {
  --bg: #171210;
  --panel: #1f1813;
  --panel-alt: #241c15;
  --footer: #120e0b;
  --text: #ede4d3;
  --muted: #a99a86;
  --dim: #6f6353;
  --gold: #c8a24a;
  --gold-hi: #e2c06a;
  --gold-hover: #d8b866;
  --gold-line: rgba(200, 162, 74, 0.18);
  --gold-line-soft: rgba(200, 162, 74, 0.14);
  --gold-line-strong: rgba(200, 162, 74, 0.4);
  --light-line: rgba(237, 228, 211, 0.35);
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* unified corner radii */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 100px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
::selection { background: rgba(200, 162, 74, 0.35); }

/* subtle vignette on the whole page for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(130% 100% at 50% -10%, transparent 60%, rgba(0,0,0,0.28) 100%);
}

/* -------- Scroll progress -------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  box-shadow: 0 0 12px rgba(226,192,106,0.6);
  transition: width .1s linear;
}

/* -------- Type helpers -------- */
.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
  transform-origin: left;
}
.eyebrow--center { justify-content: center; }

.section__title {
  margin: 0;
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
  text-wrap: balance;
}
.muted { margin: 0; color: var(--muted); }
.small { font-size: 15px; }

.section {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 112px 48px;
}

/* -------- Buttons -------- */
.btn-gold, .btn-outline-gold, .btn-outline-light {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  white-space: nowrap;
  overflow: hidden;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn-gold {
  background: var(--gold);
  color: #171210;
  font-weight: 700;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 24px rgba(200,162,74,0.18);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(200,162,74,0.32); }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); font-weight: 600; }
.btn-outline-gold:hover { background: var(--gold); color: #171210; transform: translateY(-2px); }
.btn-outline-light { border: 1px solid var(--light-line); color: var(--text); font-weight: 600; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* shine sweep */
.btn-gold::after, .btn-outline-gold::after, .btn-outline-light::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
}
.btn-gold:hover::after, .btn-outline-gold:hover::after, .btn-outline-light:hover::after { left: 140%; }

/* -------- Image slot: real <img> photos with a warm loading backdrop -------- */
.image-slot {
  position: relative;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(200,162,74,0.06), transparent 60%),
    linear-gradient(135deg, #241c15 0%, #1b140f 100%);
  border: 1px solid var(--gold-line);
  overflow: hidden;
}
.image-slot img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-slot--rounded { border-radius: var(--r-md); }

/* -------- Reveal on scroll -------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 60;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(23, 18, 16, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), background .3s, border-color .3s;
}
.header.is-scrolled {
  padding: 11px clamp(20px, 4vw, 48px);
  background: rgba(23, 18, 16, 0.92);
  border-bottom-color: var(--gold-line);
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--text); }
.brand__name { font-family: 'Tenor Sans', sans-serif; font-size: 22px; letter-spacing: 0.14em; }
.brand__city { font-size: 10px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 10px clamp(14px, 2vw, 28px); font-size: 14px; }
.nav__link { position: relative; color: var(--muted); text-decoration: none; transition: color .25s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.header__cta { padding: 10px 20px; font-size: 13px; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; z-index: 2; }
.hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  object-fit: cover;
  transform: scale(1.12);
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23,18,16,0.55) 0%, rgba(23,18,16,0.15) 35%, rgba(23,18,16,0.95) 100%),
    linear-gradient(90deg, rgba(23,18,16,0.78) 0%, rgba(23,18,16,0.15) 55%, transparent 100%);
}
#embers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px 104px; display: flex; flex-direction: column; align-items: flex-start; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; margin-bottom: 26px;
  border: 1px solid var(--gold-line-strong); border-radius: 100px;
  background: rgba(23,18,16,0.5); backdrop-filter: blur(6px);
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  opacity: 0; animation: fadeUp .8s var(--ease) .2s forwards;
}
.hero__badge b { color: var(--gold-hi); font-weight: 600; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #57c78a; box-shadow: 0 0 8px #57c78a; }

.hero .eyebrow { opacity: 0; animation: fadeUp .8s var(--ease) .35s forwards; }
.hero__title {
  margin: 0 0 26px;
  font-family: 'Tenor Sans', sans-serif; font-weight: 400;
  font-size: clamp(44px, 6.2vw, 88px); line-height: 1.04; max-width: 17ch; text-wrap: balance;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); animation: lineUp 1s var(--ease) forwards; }
.hero__title .line:nth-child(1) > span { animation-delay: .45s; }
.hero__title .line:nth-child(2) > span { animation-delay: .58s; }
.hero__title .line:nth-child(3) > span { animation-delay: .71s; }
.hero__title em { font-style: normal; color: var(--gold-hi); }
@keyframes lineUp { to { transform: none; } }

.hero__lead { margin: 0 0 40px; max-width: 52ch; color: #cbbda6; font-size: 18px; opacity: 0; animation: fadeUp .8s var(--ease) .9s forwards; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s var(--ease) 1.05s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero__cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s ease 1.6s forwards;
}
.hero__cue .mouse { width: 22px; height: 34px; border: 1px solid var(--gold-line-strong); border-radius: 12px; position: relative; }
.hero__cue .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 2px; background: var(--gold); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ============ USP MARQUEE ============ */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
  background: var(--panel); overflow: hidden; padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__group span {
  display: inline-flex; align-items: center; gap: 22px; padding: 0 22px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee__group span::after { content: "◆"; color: var(--gold); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ VALUES (why us) ============ */
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value {
  padding: 34px 28px; border: 1px solid var(--gold-line); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--panel) 0%, rgba(31,24,19,0.4) 100%);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.value:hover { transform: translateY(-6px); border-color: var(--gold-line-strong); background: linear-gradient(160deg, var(--panel-alt) 0%, var(--panel) 100%); }
.value__icon { width: 44px; height: 44px; color: var(--gold); }
.value__icon svg { width: 100%; height: 100%; }
.value__title { margin: 0; font-family: 'Tenor Sans', sans-serif; font-weight: 400; font-size: 21px; }
.value__text { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ============ CATALOG ============ */
.catalog__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.catalog__note { margin: 0; max-width: 36ch; color: var(--muted); font-size: 15px; }
.scarcity {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 44px;
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--gold-line-strong);
  background: rgba(200,162,74,0.07); font-size: 13px; color: var(--gold-hi); letter-spacing: 0.02em;
}
.scarcity .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-hi); box-shadow: 0 0 0 0 rgba(226,192,106,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(226,192,106,0.5);} 70% { box-shadow: 0 0 0 10px rgba(226,192,106,0);} 100% { box-shadow: 0 0 0 0 rgba(226,192,106,0);} }

.catalog__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.product {
  display: flex; flex-direction: column; background: var(--panel);
  border: 1px solid var(--gold-line-soft); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.product:hover { transform: translateY(-8px); border-color: rgba(200,162,74,0.5); box-shadow: 0 26px 50px rgba(0,0,0,0.5); }
.product__media { position: relative; width: 100%; height: 300px; overflow: hidden; }
.product__media .image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; transition: transform .7s var(--ease); }
.product:hover .product__media .image-slot { transform: scale(1.08); }
.product__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 100px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  background: rgba(23,18,16,0.82); color: var(--gold-hi); border: 1px solid var(--gold-line-strong); backdrop-filter: blur(4px);
}
.product__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 26px; }
.product__name { margin: 0; font-family: 'Tenor Sans', sans-serif; font-weight: 400; font-size: 24px; }
.product__desc { margin: 0; color: var(--muted); font-size: 14px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.product__price { color: var(--gold); font-weight: 600; font-size: 16px; letter-spacing: 0.02em; }
.product__price small { display: block; color: var(--dim); font-weight: 400; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.product__order { display: inline-flex; align-items: center; gap: 6px; color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 3px; white-space: nowrap; transition: color .25s, gap .25s; }
.product__order:hover { color: var(--gold); gap: 12px; }
.catalog__fine { margin: 32px 0 0; color: var(--dim); font-size: 13px; }

/* ============ ENGRAVING ============ */
.engraving { position: relative; z-index: 2; background: var(--panel); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); overflow: hidden; }
.engraving::before { content: ""; position: absolute; top: -30%; right: -10%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(200,162,74,0.10), transparent 70%); pointer-events: none; }
.engraving__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 112px 48px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.engraving__copy { display: flex; flex-direction: column; gap: 24px; }
.engraving__controls { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.engraving__input { width: 200px; padding: 14px 18px; background: var(--bg); border: 1px solid var(--gold-line-strong); border-radius: var(--r-md); color: var(--text); font-size: 22px; font-family: 'Tenor Sans', sans-serif; letter-spacing: 0.15em; outline: none; transition: border-color .25s, box-shadow .25s; }
.engraving__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,0.15); }
.control-group { display: flex; flex-direction: column; gap: 10px; }
.control-group__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
.btn-toggle-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-toggle { padding: 10px 20px; background: transparent; border: 1px solid rgba(237,228,211,0.25); border-radius: var(--r-pill); color: var(--muted); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: border-color .25s, color .25s, background .25s, transform .15s; }
.btn-toggle:hover { color: var(--text); transform: translateY(-1px); }
.btn-toggle.is-active { background: rgba(200,162,74,0.15); border-color: var(--gold); color: var(--gold); }
.engraving__cta { align-self: flex-start; margin-top: 12px; }

.engraving__preview-wrap { display: flex; justify-content: center; perspective: 1200px; }
.leather-card {
  position: relative; width: 100%; max-width: 520px; aspect-ratio: 3 / 2; border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, #7a4f2c 0%, #5f3c20 55%, #4e3019 100%);
  box-shadow: 0 40px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  transform: rotateX(6deg) rotateY(-8deg); transform-style: preserve-3d;
  animation: cardFloat 7s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
@keyframes cardFloat { 0%,100% { transform: rotateX(6deg) rotateY(-8deg) translateY(0);} 50% { transform: rotateX(4deg) rotateY(-5deg) translateY(-10px);} }
.leather-card::before { /* leather grain */
  content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), radial-gradient(rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px; background-position: 0 0, 3px 4px;
}
.leather-card__glint { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); pointer-events: none; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.16) 50%, transparent 60%); background-size: 250% 100%; animation: glint 6s ease-in-out infinite; }
@keyframes glint { 0%,100% { background-position: 200% 0;} 50% { background-position: -60% 0;} }
.leather-card__frame { position: absolute; inset: 16px; border: 1.5px dashed rgba(237,228,211,0.35); border-radius: var(--r-sm); pointer-events: none; }
.leather-card__text { position: relative; z-index: 2; font-size: 56px; user-select: none; transition: color .3s, text-shadow .3s; }
.leather-card__mark { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(0,0,0,0.4); font-weight: 600; z-index: 2; }

/* ============ STORY ============ */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story__media { position: relative; width: 100%; height: 560px; border-radius: var(--r-lg); }
.story__stamp {
  position: absolute; bottom: -26px; right: -26px; z-index: 3;
  width: 128px; height: 128px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-align: center;
  background: var(--gold); color: #171210; box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  font-family: 'Tenor Sans', sans-serif;
  animation: spinBadge 24s linear infinite;
}
@keyframes spinBadge { to { transform: rotate(360deg); } }
.story__stamp b { font-size: 26px; line-height: 1; }
.story__stamp span { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-family: 'Manrope',sans-serif; font-weight: 600; }
.story__copy { display: flex; flex-direction: column; gap: 24px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; border-top: 1px solid var(--gold-line); padding-top: 28px; }
.stat__num { font-family: 'Tenor Sans', sans-serif; font-size: 40px; color: var(--gold); }
.stat__label { font-size: 13px; color: var(--muted); }

/* ============ CORPORATE ============ */
.corporate { padding-top: 0; padding-bottom: 112px; }
.corporate__card { position: relative; border: 1px solid var(--gold-line-strong); border-radius: var(--r-lg); background: linear-gradient(160deg, var(--panel-alt) 0%, var(--panel) 100%); padding: 0; display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch; overflow: hidden; }
.corporate__copy { display: flex; flex-direction: column; gap: 20px; padding: 72px 56px; }
.corporate__title { font-size: clamp(30px, 3vw, 44px); line-height: 1.12; }
.corporate__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; color: var(--muted); font-size: 15px; }
.corporate__list li { display: flex; gap: 12px; }
.bullet { color: var(--gold); }
.corporate__cta { align-self: flex-start; margin-top: 12px; }
.corporate__media { position: relative; min-height: 420px; }

/* ============ REVIEWS ============ */
.reviews { position: relative; z-index: 2; background: var(--panel); border-top: 1px solid var(--gold-line); }
.reviews__inner { max-width: var(--maxw); margin: 0 auto; padding: 112px 48px; }
.reviews__title { text-align: center; margin: 0 auto 20px; max-width: 20ch; }
.reviews__proof { text-align: center; color: var(--muted); margin: 0 auto 56px; font-size: 15px; }
.reviews__proof b { color: var(--gold-hi); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { margin: 0; display: flex; flex-direction: column; gap: 16px; padding: 32px; background: var(--bg); border: 1px solid var(--gold-line-soft); border-radius: var(--r-lg); transition: transform .35s var(--ease), border-color .35s; }
.review:hover { transform: translateY(-6px); border-color: var(--gold-line-strong); }
.review__stars { color: var(--gold); letter-spacing: 0.3em; font-size: 15px; }
.review__text { margin: 0; color: var(--text); font-size: 15px; line-height: 1.7; }
.review__author { margin-top: auto; color: var(--muted); font-size: 13px; }

/* ============ DELIVERY ============ */
.delivery__title { margin-bottom: 56px; }
.delivery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.delivery__card { padding: 34px; border: 1px solid var(--gold-line); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 12px; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.delivery__card:hover { transform: translateY(-6px); border-color: var(--gold-line-strong); background: var(--panel); }
.delivery__num { font-family: 'Tenor Sans', sans-serif; font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.delivery__card-title { margin: 0; font-family: 'Tenor Sans', sans-serif; font-weight: 400; font-size: 26px; }

/* ============ GUARANTEE STRIP ============ */
.guarantee { position: relative; z-index: 2; background: var(--panel); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.guarantee__inner { max-width: var(--maxw); margin: 0 auto; padding: 40px 48px; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.guarantee__item { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 14.5px; }
.guarantee__item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }

/* ============ FINAL CTA + FOOTER ============ */
.footer { position: relative; z-index: 2; background: var(--footer); border-top: 1px solid rgba(200,162,74,0.25); overflow: hidden; }
.footer::before { content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 700px; height: 320px; background: radial-gradient(ellipse, rgba(200,162,74,0.12), transparent 70%); pointer-events: none; }
.footer__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 104px 48px 48px; text-align: center; }
.footer__title { margin: 0 auto 20px; font-family: 'Tenor Sans', sans-serif; font-weight: 400; font-size: clamp(36px, 4.4vw, 64px); line-height: 1.08; max-width: 18ch; text-wrap: balance; }
.footer__lead { margin: 0 auto 40px; color: var(--muted); max-width: 46ch; }
.footer__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }
.footer__actions .btn-gold, .footer__actions .btn-outline-light { padding: 18px 42px; }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--gold-line-soft); padding-top: 32px; font-size: 13px; color: var(--dim); }
.footer__brand { font-family: 'Tenor Sans', sans-serif; font-size: 17px; letter-spacing: 0.14em; color: var(--muted); }
.footer__link { color: var(--muted); text-decoration: none; transition: color .25s; }
.footer__link:hover { color: var(--gold); }

/* ============ ORDER MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 7, 5, 0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: modalFade .3s var(--ease);
}
.modal__panel {
  position: relative; width: 100%; max-width: 480px;
  padding: 40px 36px 32px;
  background: linear-gradient(165deg, var(--panel-alt) 0%, var(--panel) 100%);
  border: 1px solid var(--gold-line-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  animation: modalUp .4s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(26px) scale(0.97); } }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--gold-line);
  border-radius: 50%; color: var(--muted);
  font-size: 22px; line-height: 1; cursor: pointer;
  transition: color .25s, border-color .25s, transform .25s;
}
.modal__close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }
.modal__title { margin: 0 0 8px; font-family: 'Tenor Sans', sans-serif; font-weight: 400; font-size: 28px; }
.modal__sub { margin: 0 0 26px; color: var(--muted); font-size: 14.5px; }
.modal__options { display: flex; flex-direction: column; gap: 12px; }
.modal__opt {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  text-decoration: none; color: var(--text);
  transition: border-color .25s, transform .25s var(--ease), background .25s;
}
.modal__opt:hover { border-color: var(--gold); transform: translateX(4px); background: #1b1410; }
.modal__opt-icon {
  flex: none; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-line-strong); border-radius: 50%;
  color: var(--gold);
}
.modal__opt-icon svg { width: 22px; height: 22px; }
.modal__opt-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.modal__opt-txt b { font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
.modal__opt-txt small { color: var(--muted); font-size: 12.5px; }
.modal__opt-arrow { color: var(--gold); font-size: 18px; transition: transform .25s var(--ease); }
.modal__opt:hover .modal__opt-arrow { transform: translateX(4px); }
body.modal-open { overflow: hidden; }

/* whole product card is clickable */
.product { cursor: pointer; }

@media (max-width: 640px) {
  .modal { padding: 12px; align-items: flex-end; }
  .modal__panel { padding: 32px 22px 24px; border-radius: var(--r-lg) var(--r-lg) 0 0; max-width: none; }
}

/* ============ STICKY MOBILE CTA ============ */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(18,14,11,0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-line);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.mobilebar.show { transform: none; }
.mobilebar__txt { flex: 1; min-width: 0; }
.mobilebar__txt b { display: block; font-family: 'Tenor Sans', sans-serif; font-size: 15px; color: var(--text); }
.mobilebar__txt span { font-size: 12px; color: var(--muted); }
.mobilebar .btn-gold { padding: 13px 22px; font-size: 13px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section { padding: 80px 24px; }
  .engraving__inner, .story, .corporate__card, .reviews__inner { grid-template-columns: 1fr; }
  .engraving__inner { padding: 80px 24px; gap: 48px; }
  .reviews__inner { padding: 80px 24px; }
  .corporate__copy { padding: 48px 32px; }
  .corporate__media { min-height: 300px; }
  .corporate { padding-bottom: 80px; }
  .story__media { height: 400px; order: -1; }
  .story__stamp { width: 100px; height: 100px; right: 12px; bottom: -20px; }
  .reviews__grid, .delivery__grid { grid-template-columns: 1fr; }
  .hero__inner { padding: 0 24px 88px; }
  .footer__inner { padding: 80px 24px 40px; }
  .footer__bar { flex-direction: column; text-align: center; gap: 14px; }
  .guarantee__inner { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .header { justify-content: center; }
  .nav { display: none; }
  .header__cta { display: none; }
  .catalog__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .hero { min-height: 92vh; }
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
  .hero__cue { display: none; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media { transform: none; }
  .hero__title .line > span, .hero__badge, .hero .eyebrow, .hero__lead, .hero__actions, .hero__cue { opacity: 1 !important; transform: none !important; animation: none !important; }
}
