/* ============ Design tokens — Premium (black/gold) theme ============ */
:root{
  --bg: #0A0A0A;
  --surface: #131313;
  --surface-alt: #161412;
  --card: #151412;
  --ink: #F5F1E8;
  --ink-soft: #9C9488;
  --line: rgba(212,175,55,0.16);

  --gold: #D4AF37;
  --gold-dark: #B8912C;
  --gold-light: #F5D576;
  --grad: linear-gradient(135deg, #B8912C 0%, #F5D576 50%, #D4AF37 100%);

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-head: 'Sora', var(--font-body);

  --radius-lg: 6px;
  --radius-md: 4px;
  --radius-sm: 3px;

  --shadow-lg: 0 30px 70px -20px rgba(0,0,0,0.8);
  --shadow-md: 0 14px 34px -12px rgba(0,0,0,0.7);

  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4{
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--ink-soft); line-height: 1.65; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family: inherit; cursor:pointer; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.bg-glow{
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 900px;
  background:
    radial-gradient(600px 380px at 50% 0%, rgba(212,175,55,0.10), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ============ Buttons ============ */
.btn{
  display: inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 26px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg{ flex-shrink:0; transition: transform .15s ease; }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{ background: var(--grad); color: #0A0A0A; box-shadow: 0 10px 24px -8px rgba(212,175,55,0.4); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(212,175,55,0.5); }
.btn-ghost{ color: var(--ink); background: transparent; }
.btn-ghost:hover{ color: var(--gold); }
.btn-outline{ border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover{ background: rgba(212,175,55,0.08); transform: translateY(-2px); }
.btn-light{ background: #0A0A0A; color: var(--gold); border-color: var(--gold); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4); }
.btn-light:hover{ transform: translateY(-2px); background: rgba(0,0,0,0.6); }
.btn-lg{ padding: 16px 32px; font-size: 0.95rem; }
.btn-sm{ padding: 9px 18px; font-size: 0.78rem; }

/* ============ Header ============ */
.site-header{ position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,0.85); backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; height: 76px; gap: 24px; }
.logo{ display:flex; align-items:center; gap:11px; flex-shrink:0; }
.logo-mark{ display:flex; }
.logo-text{ font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em; }
.logo-text span{ color: var(--gold); }

.main-nav{ display:flex; align-items:center; gap: 32px; margin-left: 12px; flex: 1; }
.main-nav a{ font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; transition: color .15s ease; }
.main-nav a:hover{ color: var(--gold); }

.header-cta{ display:flex; align-items:center; gap: 10px; flex-shrink: 0; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding: 6px; z-index: 60; }
.nav-toggle span{ width: 22px; height: 2px; background: var(--gold); border-radius: 0; transition: all .2s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.site-header.scrolled{ box-shadow: 0 4px 24px -8px rgba(0,0,0,0.6); }

/* ============ Hero ============ */
.hero{ padding: 84px 0 40px; position: relative; }
.hero-inner{ display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.76rem; font-weight: 700; color: var(--gold);
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.3); padding: 7px 16px; border-radius: var(--radius-md);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px;
}
.eyebrow--center{}
.dot{ width:5px; height:5px; background: var(--gold); }
.hero-copy h1{ font-size: clamp(2.1rem, 4.1vw, 3.3rem); }
.text-gradient{ background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub{ font-size: 1.05rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions{ display:flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust{ display:flex; gap: 32px; flex-wrap: wrap; }
.trust-item{ display:flex; flex-direction:column; }
.trust-item strong{ font-family: var(--font-head); font-size: 1.1rem; color: var(--gold); }
.trust-item span{ font-size: 0.78rem; color: var(--ink-soft); }

/* ---- Card mockups ---- */
.hero-art{ position: relative; height: 440px; }
.card-stack{ position: relative; width: 100%; height: 100%; }
.v-card{ position: absolute; width: 340px; max-width: 88vw; aspect-ratio: 1.586/1; border-radius: 10px; padding: 24px; color: #fff; display:flex; flex-direction:column; justify-content:space-between; box-shadow: var(--shadow-lg); border: 1px solid rgba(212,175,55,0.3); }
.v-card--back{ top: 8%; left: 8%; background: linear-gradient(135deg, #1A1A1A, #0A0A0A); opacity: 0.9; transform: rotate(-8deg); }
.v-card--front{ top: 26%; left: 22%; background: linear-gradient(135deg, #1F1B12, #0A0A0A); transform: rotate(4deg); animation: floatCard 6s ease-in-out infinite; }
@keyframes floatCard{ 0%,100%{ transform: rotate(4deg) translateY(0); } 50%{ transform: rotate(4deg) translateY(-14px); } }
.v-card-top{ display:flex; align-items:center; justify-content:space-between; }
.v-card-chip{ width: 38px; height: 28px; border-radius: 4px; background: var(--grad); }
.v-card-brand{ font-family: var(--font-head); font-weight: 700; letter-spacing: 0.04em; font-size: 1rem; text-transform: uppercase; color: var(--gold); }
.v-card-number{ font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.08em; opacity: 0.95; color: #F5F1E8; }
.v-card-bottom{ display:flex; justify-content: space-between; }
.v-card-label{ display:block; font-size: 0.6rem; text-transform: uppercase; opacity: 0.7; letter-spacing: 0.08em; margin-bottom: 3px; color: var(--ink-soft);}
.v-card-value{ display:block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }

.float-chip{ position: absolute; background: var(--card); border: 1px solid var(--gold); padding: 10px 16px; border-radius: var(--radius-md); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; box-shadow: var(--shadow-md); animation: floatChip 5s ease-in-out infinite; color: var(--gold); }
.float-chip--1{ top: 4%; right: 2%; animation-delay: .3s; }
.float-chip--2{ bottom: 6%; left: -2%; animation-delay: 1s; }
@keyframes floatChip{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

/* ============ Accepted strip ============ */
.accepted{ padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.accepted-label{ text-align:center; font-size: 0.75rem; color: var(--ink-soft); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.accepted-row{ display:flex; flex-wrap: wrap; justify-content: center; gap: 32px; font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.03em; color: #4A463E; text-transform: uppercase; }

/* ============ Section heads ============ */
.section-head{ max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head--left{ margin: 0 0 20px; text-align:left; max-width: 420px; }
.section-head h2{ font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.section-sub{ font-size: 1rem; }

.features, .how, .cards, .reviews, .faq{ padding: 100px 0; }
.how{ background: var(--surface-alt); }
.faq{ background: var(--surface-alt); }

/* ============ Feature grid ============ */
.feature-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature-card{ background: var(--card); padding: 34px 30px; transition: background .2s ease; }
.feature-card:hover{ background: #1A1712; }
.feature-icon{ width: 44px; height: 44px; display:flex; align-items:center; justify-content:center; border: 1px solid var(--gold); font-size: 1.2rem; margin-bottom: 20px; color: var(--gold); }
.feature-icon--purple{ }
.feature-icon--teal{ }
.feature-card h3{ font-size: 1.05rem; }
.feature-card p{ font-size: 0.92rem; margin-bottom: 0; }

/* ============ How it works ============ */
.steps{ display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 12px; }
.step{ text-align:center; padding: 0 12px; }
.step-num{ width: 50px; height: 50px; margin: 0 auto 18px; border: 1px solid var(--gold); color: var(--gold); display:flex; align-items:center; justify-content:center; font-family: var(--font-head); font-weight: 700; }
.step h3{ font-size: 1.05rem; }
.step p{ font-size: 0.9rem; }
.step-connector{ align-self: center; width: 100%; min-width: 40px; height: 1px; margin-top: 25px; background: var(--line); }
.how-cta{ text-align:center; margin-top: 52px; }

/* ============ Gift card products ============ */
.product-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.product-card:hover{ transform: translateY(-3px); border-color: var(--gold); }
.product-swatch{ height: 108px; display:flex; align-items:flex-end; padding: 14px 18px; position: relative; }
.product-swatch::after{ content:""; position:absolute; top:14px; right:16px; width: 30px; height: 22px; border-radius: 3px; background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.35)); }
.product-brand{ font-family: var(--font-head); font-weight: 700; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; font-size: 1rem; }
.product-brand--dark{ color: rgba(20,20,30,0.82); }

.product-swatch--violet{ background: linear-gradient(135deg, #8B5CF6, #6D3FE0); }
.product-swatch--yellow{ background: linear-gradient(135deg, #FFD84D, #F5C518); }
.product-swatch--brown{ background: linear-gradient(135deg, #8A5A34, #6B4423); }
.product-swatch--orange{ background: linear-gradient(135deg, #FB923C, #EA6A16); }
.product-swatch--maroon{ background: linear-gradient(135deg, #9C3355, #7A1F3D); }
.product-swatch--maroon-dark{ background: linear-gradient(135deg, #7A1F3D, #4E1128); }

.product-body{ padding: 22px; }
.product-body h3{ font-size: 0.98rem; margin-bottom: 4px; }
.product-body h3 span{ display:block; font-family: var(--font-body); font-weight: 500; font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }
.product-price{ font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--gold); margin-bottom: 18px; }

.qty-stepper{ display:flex; align-items:center; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow:hidden; width: fit-content; margin-bottom: 16px; }
.qty-btn{ width: 36px; height: 36px; display:flex; align-items:center; justify-content:center; background: var(--surface-alt); border: none; font-size: 1.05rem; font-weight: 600; color: var(--ink); transition: background .15s ease, color .15s ease; }
.qty-btn:hover{ background: var(--gold); color: #0A0A0A; }
.qty-input{ width: 44px; height: 36px; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--ink); background: var(--card); -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }

.product-subtotal{ font-size: 0.84rem; color: var(--ink-soft); }
.product-subtotal strong{ color: var(--gold); font-family: var(--font-head); }

.cart-summary{ margin-top: 36px; display:flex; align-items:center; justify-content:space-between; flex-wrap: wrap; gap: 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 30px; }
.cart-summary-info{ display:flex; flex-direction:column; gap: 2px; }
.cart-summary-label{ font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.cart-summary-total{ font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: var(--gold); }

/* ============ Reviews ============ */
.review-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; }
.stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p{ font-size: 0.92rem; color: var(--ink); font-style: italic; }
.review-author{ display:flex; align-items:center; gap: 12px; margin-top: 18px; }
.avatar{ width: 38px; height:38px; border: 1px solid var(--gold); color: var(--gold); display:flex; align-items:center; justify-content:center; font-family: var(--font-head); font-weight:700; font-size: 0.82rem; flex-shrink:0; }
.review-author strong{ display:block; font-size: 0.88rem; }
.review-author span{ font-size: 0.78rem; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq-inner{ display:grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-list{ display:flex; flex-direction:column; gap: 10px; }
.faq-item{ background: var(--card); border:1px solid var(--line); border-radius: var(--radius-sm); overflow:hidden; }
.faq-q{ width: 100%; display:flex; align-items:center; justify-content:space-between; gap: 16px; background:none; border:none; padding: 18px 22px; font-size: 0.94rem; font-weight: 600; color: var(--ink); text-align:left; }
.faq-icon{ font-size: 1.1rem; color: var(--gold); transition: transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-icon{ transform: rotate(45deg); }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 22px; }
.faq-a p{ font-size: 0.9rem; padding-bottom: 18px; margin: 0; }
.faq-item.open .faq-a{ max-height: 220px; }

/* ============ Final CTA ============ */
.final-cta{ background: linear-gradient(135deg, #131313, #0A0A0A); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 90px 0; text-align: center; }
.final-cta h2{ color:var(--ink); font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.final-cta h2 span{ color: var(--gold); }
.final-cta p{ color: var(--ink-soft); font-size: 1rem; margin-bottom: 30px; }
.final-cta-inner{ max-width: 620px; margin: 0 auto; }

/* ============ Footer ============ */
.site-footer{ background: #050505; color: #6E6A60; padding: 64px 0 0; border-top: 1px solid var(--line); }
.footer-inner{ display:grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand .logo-text{ color:#fff; }
.footer-brand p{ color: #6E6A60; font-size: 0.88rem; max-width: 280px; margin-top: 12px; }
.footer-links{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4{ color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a{ display:block; color: #8A8478; font-size: 0.9rem; padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 10px; padding: 22px 24px; font-size: 0.78rem; color: #4A463E; }
.footer-bottom p{ margin:0; color: inherit; }

/* ============ Responsive ============ */
@media (max-width: 980px){
  .main-nav{ position: fixed; top: 76px; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; background: #0A0A0A; border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .25s ease; margin-left: 0; }
  .main-nav.open{ max-height: 320px; }
  .main-nav a{ padding: 16px 24px; border-top: 1px solid var(--line); }
  .header-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-art{ height: 360px; order: -1; }
  .v-card{ width: 300px; }
  .feature-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .cart-summary{ flex-direction: column; align-items: stretch; text-align: center; }
  .cart-summary .btn{ width: 100%; }
  .review-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .step-connector{ width: 1px; height: 32px; margin: 0 auto; }
  .faq-inner{ grid-template-columns: 1fr; gap: 30px; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-links{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .feature-grid{ grid-template-columns: 1fr; }
  .footer-links{ grid-template-columns: 1fr; }
  .hero-trust{ gap: 22px; }
  .accepted-row{ gap: 20px; font-size: 0.86rem; }
}
