/* ============================================
   Aurelia & Co. — Fine Jewelry
   ============================================ */

:root {
  --ivory: #faf7f2;
  --cream: #f3ede3;
  --charcoal: #1c1a17;
  --ink: #2b2822;
  --gold: #c6a15b;
  --gold-dark: #a98842;
  --gold-light: #e8d5ae;
  --rose: #b76e79;
  --muted: #7d766b;
  --line: #e4dcce;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(28, 26, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 26, 23, 0.16);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { width: min(1200px, 92%); margin: 0 auto; }

section { padding: 80px 0; }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }

.section-intro { color: var(--muted); max-width: 560px; margin-bottom: 40px; }

.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  line-height: 1.5;
}
.announce-short { display: none; }
@media (max-width: 700px) {
  .announce { font-size: 0.68rem; letter-spacing: 0.08em; padding: 8px 10px; }
  .announce-full { display: none; }
  .announce-short { display: inline; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .logo-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 5px;
}

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-dark); border-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
}
.cart-btn:hover { color: var(--gold-dark); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline { background: transparent; color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }

.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-small { padding: 10px 22px; font-size: 0.72rem; }

.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(198, 161, 91, 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(183, 110, 121, 0.10), transparent 50%),
    linear-gradient(160deg, #211e19 0%, #2e2a23 55%, #241f18 100%);
  color: var(--ivory);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  min-height: 620px;
  padding: 60px 0;
}

.hero-text .section-label { color: var(--gold-light); }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  color: rgba(250, 247, 242, 0.78);
  max-width: 460px;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(250, 247, 242, 0.5); color: var(--ivory); }
.hero .btn-outline:hover { background: var(--ivory); color: var(--charcoal); }
.hero .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--charcoal); }

.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: min(430px, 100%); height: auto; filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45)); }

.hero-strip {
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  background: rgba(0, 0, 0, 0.18);
}
.hero-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.hero-strip span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-strip svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.category-card .cat-art { width: 92px; height: 92px; margin: 0 auto 20px; }
.category-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.category-card p { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-media svg { width: 68%; height: 68%; transition: transform 0.45s ease; }
.product-card:hover .product-media svg { transform: scale(1.08) rotate(-2deg); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.badge.badge-new { background: var(--gold); color: var(--white); }
.badge.badge-limited { background: var(--rose); color: var(--white); }

.product-info { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.product-name { font-size: 1.25rem; font-weight: 600; }
.product-price { color: var(--gold-dark); font-weight: 500; font-size: 1.02rem; letter-spacing: 0.04em; }
.product-actions { margin-top: auto; padding-top: 14px; display: flex; gap: 10px; }
.product-actions .btn { flex: 1; text-align: center; padding: 11px 8px; font-size: 0.7rem; }

/* ---------- Shop toolbar ---------- */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-group { display: flex; gap: 10px; flex-wrap: wrap; }

.filter-chip {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-chip.active { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }

.sort-select {
  font-family: var(--sans);
  font-size: 0.8rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.results-count { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(198, 161, 91, 0.18), transparent 55%),
    linear-gradient(160deg, #211e19, #2c2820);
  color: var(--ivory);
  text-align: center;
  padding: 76px 0;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
.page-hero p { color: rgba(250, 247, 242, 0.75); max-width: 540px; margin: 14px auto 0; }

/* ---------- Values / trust ---------- */
.values-band { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value-item { text-align: center; padding: 10px; }
.value-item svg { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--gold-dark); }
.value-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-item p { font-size: 0.88rem; color: var(--muted); }

/* ---------- Story split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-art {
  background:
    radial-gradient(ellipse at 60% 35%, rgba(198, 161, 91, 0.3), transparent 60%),
    linear-gradient(150deg, #262219, #332d24);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.split-art svg { width: min(320px, 90%); height: auto; }
.split-text .btn { margin-top: 26px; }
.split-text p + p { margin-top: 16px; }
.split-text p { color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; font-size: 0.95rem; }
.testimonial blockquote { font-family: var(--serif); font-size: 1.18rem; font-style: italic; margin-bottom: 20px; }
.testimonial cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.testimonial h3 { font-size: 1.35rem; margin-bottom: 10px; }
.testimonial p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--charcoal); color: var(--ivory); text-align: center; }
.newsletter .section-title { color: var(--ivory); }
.newsletter p { color: rgba(250, 247, 242, 0.7); max-width: 480px; margin: 0 auto 30px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border: 1px solid rgba(250, 247, 242, 0.3);
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(250, 247, 242, 0.45); }
.newsletter-form .btn { border-left: none; }
.form-note { font-size: 0.78rem; margin-top: 14px; color: rgba(250, 247, 242, 0.5); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: #eef5ec;
  border: 1px solid #bcd8b4;
  color: #38623a;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }

.store-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  margin-bottom: 20px;
}
.store-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.store-card .store-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; display: block; }
.store-card p { font-size: 0.9rem; color: var(--muted); }
.store-card p + p { margin-top: 4px; }
.store-card a { color: var(--gold-dark); }
.store-card a:hover { text-decoration: underline; }

/* ---------- About page ---------- */
.stats-band { background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat h3 { font-size: 2.6rem; color: var(--gold-dark); font-weight: 500; }
.stat p { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.timeline { max-width: 720px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item .year { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-dark); font-weight: 600; }
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  height: 100dvh;
  background: var(--ivory);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.4rem; }
.cart-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--muted); line-height: 1; }
.cart-close:hover { color: var(--charcoal); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 26px; }

.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-empty svg { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--gold); }

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-art { width: 74px; height: 74px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cart-item-art svg { width: 74%; height: 74%; }
.cart-item-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.cart-item-price { font-size: 0.85rem; color: var(--gold-dark); margin-top: 2px; }

.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--ink);
}
.qty-controls button:hover { border-color: var(--gold); color: var(--gold-dark); }
.qty-controls span { font-size: 0.85rem; min-width: 18px; text-align: center; }

.cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-item-remove:hover { color: var(--rose); }

.cart-foot { border-top: 1px solid var(--line); padding: 22px 26px; background: var(--white); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.9rem; color: var(--muted); }
.cart-total-row.grand { font-size: 1.15rem; color: var(--ink); font-weight: 600; margin: 10px 0 18px; }
.cart-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--charcoal);
  color: var(--ivory);
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  z-index: 120;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .gold { color: var(--gold-light); }

/* ---------- Modal (quick view) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0.55);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--ivory);
  width: min(760px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.modal-art { display: flex; align-items: center; justify-content: center; padding: 40px; }
.modal-art svg { width: 85%; height: auto; }
.modal-body { padding: 44px 38px; }
.modal-body .product-cat { margin-bottom: 8px; display: block; }
.modal-body h2 { font-size: 2rem; margin-bottom: 10px; }
.modal-body .product-price { font-size: 1.3rem; margin-bottom: 18px; }
.modal-body p { color: var(--muted); font-size: 0.94rem; margin-bottom: 26px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  z-index: 2;
}
.modal-close:hover { color: var(--charcoal); }
.modal-meta { list-style: none; margin-bottom: 26px; }
.modal-meta li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.modal-meta li strong { color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(250, 247, 242, 0.72); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 50px;
}
.footer-grid h4 { color: var(--ivory); font-size: 1.05rem; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .logo-name { color: var(--ivory); }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: unset; }
  .hero-text .section-intro, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art svg { width: min(300px, 80%); }
  .category-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; }
  .modal-art { padding: 30px 30px 0; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    padding: 90px 8% 30px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 95;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .nav-toggle { display: block; position: relative; z-index: 96; }
}

@media (max-width: 560px) {
  .category-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .category-card { padding: 24px 12px 20px; }
  .category-card .cat-art { width: 64px; height: 64px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-info { padding: 14px; }
  .product-actions { flex-direction: column; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-strip .container { justify-content: center; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 16px; }
}

/* ============================================
   Glamour pack — animations & flourishes
   ============================================ */

::selection { background: var(--gold); color: #ffffff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 6px; }

@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes twinkle { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 0.15; transform: scale(0.55); } }
@keyframes shimmerText { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bump { 0% { transform: scale(1); } 35% { transform: scale(1.45); } 100% { transform: scale(1); } }

/* entrance animations */
.hero-text > * { opacity: 0; animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.22s; }
.hero-text > *:nth-child(3) { animation-delay: 0.36s; }
.hero-text > *:nth-child(4) { animation-delay: 0.5s; }
.hero-art { opacity: 0; animation: heroIn 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-art svg { animation: floaty 6s ease-in-out infinite; }
.page-hero .container > * { opacity: 0; animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.3s; }

/* golden shimmer on the hero highlight */
.hero-title em {
  background: linear-gradient(100deg, var(--gold-light) 20%, #fff8e1 40%, var(--gold) 60%, var(--gold-light) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 3.5s linear infinite;
}

/* floating sparkles in the hero */
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; }
.hero-sparkles span { position: absolute; color: var(--gold-light); animation: twinkle 3.2s ease-in-out infinite; }
.tw { animation: twinkle 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: none; }

/* section title ornament */
.center .section-title::after {
  content: "· ✦ ·";
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 12px;
}

/* button shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
}
.btn:hover::after { left: 130%; transition: left 0.6s ease; }

/* product & category card glamour */
.product-card:hover { border-color: var(--gold); box-shadow: 0 22px 55px rgba(198, 161, 91, 0.3); }
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
  transform: translateX(-110%);
}
.product-card:hover .product-media::after { transform: translateX(110%); transition: transform 0.75s ease; }
.category-card .cat-art svg { transition: transform 0.4s ease; }
.category-card:hover .cat-art svg { transform: scale(1.12) rotate(-5deg); }
.testimonial { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s; }
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }

/* gold marquee ribbon */
.marquee {
  background: var(--charcoal);
  color: var(--gold-light);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(232, 213, 174, 0.16);
  border-bottom: 1px solid rgba(232, 213, 174, 0.16);
}
.marquee-track { display: flex; width: max-content; animation: marqueeMove 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  flex: none;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--gold); padding: 0 22px; }

/* header shadow on scroll + cart bump */
.site-header { transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 12px 30px rgba(28, 26, 23, 0.1); }
.cart-count.bump { animation: bump 0.45s ease; }

/* accessibility: honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-text > *, .hero-art, .page-hero .container > * { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
