/* ════════════════════════════════════════════
   KRSNA FOREVER — shared stylesheet
   ════════════════════════════════════════════ */

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

:root {
  --gold:      #BE9146;
  --gold-lt:   #E8C870;
  --deep:      #2C2018;
  --cream:     #FDFAF6;
  --blush:     #F5DDD8;
  --muted:     #8C7250;
  --sage:      #7A9B7A;
  --text:      #2C2018;
  --border:    rgba(190,145,70,0.22);
  --nav-h:     60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── UTILITY ── */
.cinzel   { font-family: 'Cinzel', serif; }
.fell     { font-family: 'IM Fell English', Georgia, serif; font-style: italic; }
.gold     { color: var(--gold); }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ── TOP NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  border-bottom: 1px solid rgba(190,145,70,0.15);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  white-space: nowrap;
}
.nav-logo span {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,230,200,0.6);
  letter-spacing: 0.06em;
  margin-left: 6px;
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.6);
  padding: 0 1.1rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-search {
  background: none;
  border: 0.5px solid rgba(190,145,70,0.35);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nav-search:hover { border-color: var(--gold); }
.nav-search svg { width: 14px; height: 14px; stroke: rgba(245,230,200,0.5); }
.nav-search span {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.5);
}

/* cart button in nav */
.nav-cart {
  background: none;
  border: 0.5px solid rgba(190,145,70,0.35);
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.nav-cart:hover { border-color: var(--gold); }
.nav-cart svg { width: 15px; height: 15px; stroke: var(--gold-lt); fill: none; }
.nav-cart-count {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  color: var(--gold-lt);
  min-width: 14px;
  text-align: center;
}

/* ── PAGE HEADER (interior pages) ── */
.page-hero {
  background: var(--deep);
  padding: 4.5rem 4rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(190,145,70,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #FDEDC8;
  line-height: 1.18;
  position: relative;
}
.page-hero-sub {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,230,200,0.65);
  margin-top: 1rem;
  position: relative;
}
.page-hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.25rem;
  position: relative;
}
.page-hero-rule::before, .page-hero-rule::after {
  content: '';
  width: 60px;
  height: 0.5px;
  background: rgba(190,145,70,0.5);
}
.page-hero-rule span { color: var(--gold); }

/* ── MAIN CONTENT ── */
.main { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
.section { padding: 4rem 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.5rem 0 0;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary, .btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: var(--deep);
  color: var(--gold);
  border: 1px solid var(--deep);
}
.btn-primary:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(190,145,70,0.35);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.read-link {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.read-link:hover { gap: 10px; }
.read-link::after { content: '→'; }

/* ── VERSE BANNER ── */
.verse-banner {
  background: var(--deep);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verse-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(190,145,70,0.1) 0%, transparent 70%);
}
.verse-banner-om {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.25rem;
  position: relative;
}
.verse-banner-quote {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #FDEDC8;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 0.75rem;
  position: relative;
}
.verse-banner-source {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  position: relative;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  padding: 3rem 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
}
.footer-brand .name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-brand .tagline {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  text-align: right;
  font-size: 0.78rem;
  color: #BBA888;
  font-style: italic;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }

/* ════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-art {
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--blush);
}
.about-text h2 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.value-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--deep);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════════════════
   STORY / BLOG LISTING (Pastimes, Did You Know)
   ════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(44,32,24,0.10); }
.blog-card-art { height: 190px; background: var(--blush); overflow: hidden; }
.blog-card-art svg { width: 100%; height: 100%; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.blog-card-excerpt {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: #BBA888;
  font-style: italic;
  margin-bottom: 1rem;
}

/* ── ARTICLE (single story) ── */
.article { max-width: 760px; margin: 0 auto; }
.article-meta {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.article h1 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.article-hero-art {
  border-radius: 14px;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  border: 0.5px solid var(--border);
}
.article p {
  font-size: 1.1rem;
  color: #4A3B2A;
  line-height: 1.95;
  margin-bottom: 1.4rem;
}
.article h2 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--deep);
  margin: 2.2rem 0 1rem;
}
.article blockquote {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.8rem 0;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   FUN ACTIVITIES (downloads)
   ════════════════════════════════════════════ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.download-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.download-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(44,32,24,0.10); }
.download-preview {
  height: 260px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.download-preview img, .download-preview svg { width: 100%; height: 100%; object-fit: cover; }
.download-type {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(44,32,24,0.85);
  color: var(--gold-lt);
  padding: 5px 13px;
  border-radius: 999px;
}
.download-body { padding: 1.75rem; }
.download-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.download-body p { font-size: 0.97rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.download-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--deep);
  color: var(--gold);
  padding: 12px 24px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.download-btn:hover { background: var(--gold); color: var(--deep); }
.download-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ════════════════════════════════════════════
   SHOP
   ════════════════════════════════════════════ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(44,32,24,0.10); }
.product-art { height: 220px; background: var(--blush); overflow: hidden; }
.product-art svg { width: 100%; height: 100%; display: block; }
.product-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.product-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--deep);
}
.add-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--deep);
  color: var(--gold);
  padding: 10px 18px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.add-btn:hover { background: var(--gold); color: var(--deep); }
.add-btn.added { background: var(--sage); color: #fff; border-color: var(--sage); }

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(20,12,4,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(20,12,4,0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 1.5rem 1.75rem;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--deep);
}
.cart-close { background: none; border: none; font-size: 1.5rem; color: var(--muted); cursor: pointer; line-height: 1; }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.75rem; }
.cart-empty { text-align: center; color: var(--muted); font-style: italic; padding: 3rem 0; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--border);
  align-items: center;
}
.cart-item-art { width: 56px; height: 56px; border-radius: 8px; background: var(--blush); overflow: hidden; flex-shrink: 0; }
.cart-item-art svg { width: 100%; height: 100%; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 1rem; font-weight: 600; color: var(--deep); }
.cart-item-price { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--muted); }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.qty button {
  width: 22px; height: 22px;
  border: 0.5px solid var(--border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  color: var(--deep);
  font-size: 0.9rem;
  line-height: 1;
}
.qty button:hover { border-color: var(--gold); color: var(--gold); }
.qty span { font-size: 0.9rem; min-width: 18px; text-align: center; }
.cart-item-remove { background: none; border: none; color: #BBA888; cursor: pointer; font-size: 0.78rem; font-style: italic; }
.cart-item-remove:hover { color: #C0607A; }
.cart-foot { padding: 1.5rem 1.75rem; border-top: 0.5px solid var(--border); }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--deep);
  margin-bottom: 1.25rem;
}
.cart-foot .btn-primary { width: 100%; padding: 14px; }

/* Checkout modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,12,4,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--cream);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  border: 0.5px solid var(--border);
}
.modal h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
  text-align: center;
}
.modal-sub { text-align: center; color: var(--muted); font-style: italic; margin-bottom: 1.75rem; }
.modal-success-icon { font-size: 3rem; text-align: center; margin-bottom: 1rem; }

/* ════════════════════════════════════════════
   FORMS (Checkout + Contact)
   ════════════════════════════════════════════ */
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190,145,70,0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
}
.contact-info h2 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.contact-detail .ic { font-size: 1.4rem; }
.contact-detail .lbl {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact-detail .val { font-size: 1.05rem; color: var(--deep); }
.form-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 1rem;
  text-align: center;
}

/* ── Mobile hamburger toggle (hidden on desktop) ── */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0.5px solid rgba(190,145,70,0.35);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--gold-lt); fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-toggle .ic-close { display: none; }
.nav-toggle.open .ic-open { display: none; }
.nav-toggle.open .ic-close { display: block; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-nav { padding: 0 2rem; }
  .main { padding: 0 2rem; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .verse-banner { padding: 3rem 2rem; }
  .site-footer { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-copy { text-align: left; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--deep);
    border-bottom: 1px solid rgba(190,145,70,0.2);
    box-shadow: 0 14px 30px rgba(20,12,4,0.35);
    padding: 0.25rem 0 0.5rem;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a {
    height: auto;
    width: 100%;
    padding: 0.9rem 2rem;
    border-bottom: none;
    border-left: 2px solid transparent;
    font-size: 0.7rem;
  }
  .nav-links a:hover, .nav-links a.active {
    border-bottom-color: transparent;
    border-left-color: var(--gold);
    background: rgba(190,145,70,0.06);
  }
  .story-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 3rem 1.5rem; }
  .nav-search span { display: none; }
}
