/* ============================================================
   GRAND VISTA — Dark Luxury Theme
   Dark navbar · Cream hero · Dark showcase · Gold accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:wght@400;500;600;700;800;900&family=Jost:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ---- Dark canvas (primary) ---- */
  --gv-ink:         #14110c;
  --gv-ink-2:       #1b150f;
  --gv-ink-3:       #2a2218;
  --gv-ink-soft:    #2c261b;
  --gv-charcoal:    #1a1a17;

  /* ---- Cream / paper (hero & light sections) ---- */
  --gv-ivory:       #f9f5ef;
  --gv-ivory-2:     #efe8d8;
  --gv-cream:       #faf6ec;
  --gv-white:       #ffffff;
  --gv-paper:       #fbf8f0;

  /* ---- Brown / wood tones (craftsmanship) ---- */
  --gv-brown:       #62402b;
  --gv-brown-light: #8a5c3e;
  --gv-brown-dark:  #4a2f1f;

  /* ---- Gold family ---- */
  --gv-gold:        #d4af37;
  --gv-gold-deep:   #b8932f;
  --gv-gold-light:  #e8c563;
  --gv-gold-shimmer:#f0d378;
  --gv-gold-pale:   #e6d4a8;
  --gv-gold-tint:   rgba(212,175,55,0.10);

  /* ---- Neutrals ---- */
  --gv-gray:        #9a8f7a;
  --gv-gray-light:  #b8b0a0;
  --gv-gray-dark:   #6a6353;
  --gv-gray-dim:    rgba(249,245,239,0.55);

  /* ---- Semantic ---- */
  --gv-success:     #4a9d5f;
  --gv-danger:      #c0392b;
  --gv-warning:     #d68910;

  /* ---- Borders & shadows ---- */
  --gv-border:      rgba(212,175,55,0.15);
  --gv-border-light: rgba(249,245,239,0.10);
  --gv-border-gold: rgba(212,175,55,0.35);
  --gv-shadow-sm:   0 1px 2px rgba(0,0,0,0.10);
  --gv-shadow:      0 8px 30px rgba(0,0,0,0.25);
  --gv-shadow-lg:   0 20px 60px rgba(0,0,0,0.35);
  --gv-shadow-gold: 0 12px 40px rgba(212,175,55,0.22);

  /* ---- Typography ---- */
  --gv-font-serif:  'Playfair Display', Georgia, serif;
  --gv-font-script: 'Cormorant Garamond', Georgia, serif;
  --gv-font-body:   'Jost', 'Inter', 'Segoe UI', sans-serif;

  /* ---- Gradients ---- */
  --gv-grad-gold:   linear-gradient(135deg, #b8932f 0%, #d4af37 30%, #f0d378 55%, #d4af37 80%, #b8932f 100%);
  --gv-grad-ink:    linear-gradient(160deg, #2a2218 0%, #1b150f 50%, #14110c 100%);
  --gv-grad-paper:  linear-gradient(180deg, #faf6ec 0%, #f9f5ef 100%);
  --gv-grad-brown:  linear-gradient(160deg, #8a5c3e 0%, #62402b 50%, #4a2f1f 100%);

  /* ---- Layout ---- */
  --gv-radius:      4px;
  --gv-radius-lg:   6px;
  --gv-maxw:        1280px;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--gv-font-body);
  background: var(--gv-ink);
  color: var(--gv-ivory);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

/* Grain texture overlay for premium feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gv-gold); color: var(--gv-ink); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gv-gold-light); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gv-gold-shimmer); }

h1,h2,h3,h4,h5,h6 { font-family: var(--gv-font-serif); font-weight: 700; color: var(--gv-ivory); line-height: 1.15; }

/* ---------- Helper classes ---------- */
.font-serif { font-family: var(--gv-font-serif) !important; }
.font-script { font-family: var(--gv-font-script) !important; font-style: italic; }
.text-gold { color: var(--gv-gold) !important; }
.text-gold-deep { color: var(--gv-gold-deep) !important; }
.text-gold-light { color: var(--gv-gold-light) !important; }
.text-cream { color: var(--gv-ivory) !important; }
.text-ink { color: var(--gv-ivory) !important; }
.text-gray { color: white !important; }
.text-gray-dark { color: white !important; }
.text-dim { color: var(--gv-gray-dim) !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-300 { font-weight: 300 !important; }

.gold-text {
  background: var(--gv-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gv-gold);
}

.script-text {
  font-family: var(--gv-font-script);
  font-style: italic;
  color: var(--gv-gold-light);
}

/* ---------- Ornament divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.2rem 0;
}
.ornament .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gv-gold), transparent);
}
.ornament .diamond {
  width: 8px; height: 8px;
  background: var(--gv-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.ornament.justify-content-start { justify-content: flex-start; }
.ornament.justify-content-start .line:first-child { display: none; }

.eyebrow {
  display: inline-block;
  font-family: var(--gv-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gv-gold-light);
  margin-bottom: 0.6rem;
}

/* ============================================================
   NAVBAR — Dark luxury bar
   ============================================================ */
.gv-navbar {
  background: rgba(20,17,12,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gv-border-gold);
  padding: 1rem 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.gv-navbar.scrolled {
  background: rgba(20,17,12,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  padding: 0.65rem 0;
}
.gv-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.gv-brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--gv-border-gold), 0 4px 12px rgba(212,175,55,0.20);
}
.gv-brand-text { display: flex; flex-direction: column; line-height: 1; }
.gv-brand-text .brand-name {
  font-family: var(--gv-font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--gv-gold-light);
}
.gv-brand-text .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 4px;
  color: var(--gv-gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}
.gv-nav-link {
  font-family: var(--gv-font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-ivory) !important;
  padding: 0.5rem 1.1rem !important;
  position: relative;
  transition: color .25s;
}
.gv-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gv-gold);
  transition: all .3s;
  transform: translateX(-50%);
}
.gv-nav-link:hover::after,
.gv-nav-link.active::after { width: 18px; }
.gv-nav-link:hover,
.gv-nav-link.active { color: var(--gv-gold-light) !important; }

.gv-cart-badge {
  position: absolute;
  top: -4px; right: -8px;
  background: var(--gv-gold);
  color: var(--gv-ink);
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

.navbar-toggler { border: 0 !important; padding: 0.3rem 0.5rem !important; }
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler i { color: var(--gv-gold-light) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { border-radius: var(--gv-radius); font-family: var(--gv-font-body); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; font-size: 0.76rem; transition: all .3s cubic-bezier(.4,0,.2,1); }
.btn-lg { font-size: 0.82rem; padding: 0.9rem 2rem; }

.btn-gv-gold {
  background: var(--gv-grad-gold);
  color: var(--gv-ink) !important;
  border: 1px solid var(--gv-gold-deep);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}
.btn-gv-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gv-gold-shimmer), var(--gv-gold-light));
  opacity: 0;
  transition: opacity .35s;
}
.btn-gv-gold span, .btn-gv-gold i { position: relative; z-index: 1; }
.btn-gv-gold:hover {
  color: var(--gv-ink) !important;
  transform: translateY(-2px);
  box-shadow: var(--gv-shadow-gold);
}
.btn-gv-gold:hover::before { opacity: 1; }
.btn-gv-gold:hover span, .btn-gv-gold:hover i { color: var(--gv-ink); }

.btn-gv-outline {
  background: transparent;
  color: var(--gv-gold-light) !important;
  border: 1px solid var(--gv-gold);
}
.btn-gv-outline:hover {
  background: var(--gv-gold);
  color: var(--gv-ink) !important;
  transform: translateY(-2px);
}

.btn-gv-ghost {
  background: transparent;
  color: var(--gv-ivory) !important;
  border: 1px solid var(--gv-border-gold);
}
.btn-gv-ghost:hover {
  border-color: var(--gv-gold);
  background: rgba(212,175,55,0.08);
  color: var(--gv-gold-light) !important;
}

.btn-gv-gold.btn-sm, .btn-gv-ghost.btn-sm { font-size: 0.68rem; padding: 0.5rem 1.1rem; }

/* Magnetic button wrapper */
.gv-magnetic { display: inline-block; }

/* ============================================================
   HERO — Dark luxury with cream album showcase
   ============================================================ */
.gv-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gv-grad-ink);
  padding: 7rem 0 4rem;
}
.gv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.14), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(138,92,62,0.12), transparent 50%);
  pointer-events: none;
}
.gv-hero-content { position: relative; z-index: 2; max-width: 640px; }
.gv-hero-ornament {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 1.5rem;
}
.gv-hero-ornament .line { width: 50px; height: 1px; background: var(--gv-gold); }
.gv-hero-ornament .diamond { width: 6px; height: 6px; background: var(--gv-gold); transform: rotate(45deg); }
.gv-hero-ornament .script-text { font-size: 1rem !important; color: var(--gv-gold-light); }

.gv-hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gv-gold-light);
  font-weight: 600;
  margin-bottom: 1rem;
}
.gv-hero-title {
  font-family: var(--gv-font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--gv-ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.gv-hero-subtitle {
  font-size: 1.05rem;
  color: var(--gv-gray-dim);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

/* Hero visual — floating album card */
.gv-hero-visual {
  position: relative;
  z-index: 2;
}
.gv-hero-frame {
  position: relative;
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  box-shadow: var(--gv-shadow-lg), 0 0 0 1px var(--gv-border-gold);
  transform: rotate(2deg);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gv-hero-frame:hover { transform: rotate(0deg) scale(1.01); }
.gv-hero-frame img { width: 100%; height: 580px; object-fit: cover; }
.gv-hero-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,17,12,0.45));
}
.gv-hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 3;
  color: var(--gv-ivory);
}
.gv-hero-badge .num {
  font-family: var(--gv-font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gv-gold-light);
}
.gv-hero-badge .lbl {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Floating gold ring decoration */
.gv-hero-ring {
  position: absolute;
  width: 220px; height: 220px;
  border: 1px solid var(--gv-border-gold);
  border-radius: 50%;
  top: -40px; right: -40px;
  z-index: 1;
  animation: gv-spin 30s linear infinite;
}
.gv-hero-ring::before {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gv-gold);
  border-radius: 50%;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gv-gold);
}
@keyframes gv-spin { to { transform: rotate(360deg); } }

/* Hero scroll prompt */
.gv-hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--gv-gold-light);
}
.gv-hero-scroll .lbl {
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.gv-hero-scroll i { animation: gv-bounce 1.8s ease-in-out infinite; display:block; }
@keyframes gv-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============================================================
   SECTIONS
   ============================================================ */
.gv-section { padding: 6rem 0; position: relative; }
.gv-section-sm { padding: 4rem 0; }

.gv-section-title { text-align: center; margin-bottom: 3.5rem; }
.gv-section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
  color: var(--gv-ivory);
}
.gv-section-title.text-start h2 { margin-top: 0.3rem; }
.gv-section-title p { color: var(--gv-gray-dim); max-width: 600px; margin: 1rem auto 0; }

/* Section background variants */
.gv-section-cream { background: var(--gv-cream); color: var(--gv-ink); }
.gv-section-cream h1, .gv-section-cream h2, .gv-section-cream h3, .gv-section-cream h4 { color: var(--gv-ink); }
.gv-section-cream p { color: var(--gv-gray-dark); }
.gv-section-cream .eyebrow { color: var(--gv-gold-deep); }
.gv-section-cream .text-gray { color: var(--gv-gray-dark) !important; }
.gv-section-cream .text-gray-dark { color: var(--gv-gray-dark) !important; }
.gv-section-cream a { color: var(--gv-gold-deep); }

.gv-section-brown { background: var(--gv-grad-brown); color: var(--gv-ivory); }
.gv-section-brown .eyebrow { color: var(--gv-gold-light); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.gv-feature {
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border);
  padding: 2.2rem 1.8rem;
  height: 100%;
  border-radius: var(--gv-radius-lg);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.gv-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gv-grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.gv-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--gv-shadow);
  border-color: var(--gv-border-gold);
  background: var(--gv-ink-3);
}
.gv-feature:hover::before { transform: scaleX(1); }
.gv-feature-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gv-gold-tint);
  color: var(--gv-gold-light);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: all .4s;
  border: 1px solid var(--gv-border-gold);
}
.gv-feature:hover .gv-feature-icon {
  background: var(--gv-gold);
  color: var(--gv-ink);
  transform: rotate(-8deg) scale(1.05);
}
.gv-feature h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: var(--gv-ivory);
}
.gv-feature p { font-size: 0.9rem; color: var(--gv-gray-dim); margin: 0; }

/* Feature cards on cream background */
.gv-section-cream .gv-feature {
  background: var(--gv-white);
  border-color: rgba(20,17,12,0.08);
}
.gv-section-cream .gv-feature h4 { color: var(--gv-ink); }
.gv-section-cream .gv-feature p { color: var(--gv-gray-dark); }
.gv-section-cream .gv-feature:hover { background: var(--gv-white); border-color: var(--gv-border-gold); }
.gv-section-cream .gv-feature-icon { color: var(--gv-gold-deep); }
.gv-section-cream .gv-feature:hover .gv-feature-icon { color: var(--gv-ink); }

/* ============================================================
   PRODUCT CARDS — Dark luxury with tilt
   ============================================================ */
.gv-product-card {
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.gv-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gv-shadow-lg);
  border-color: var(--gv-border-gold);
  background: var(--gv-ink-3);
}
.gv-product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gv-ink-3);
}
.gv-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.gv-product-card:hover .gv-product-img img { transform: scale(1.06); }
.gv-product-tier-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(20,17,12,0.88);
  backdrop-filter: blur(6px);
  color: var(--gv-gold-light);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.gv-product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,17,12,0.4));
  opacity: 0;
  transition: opacity .4s;
}
.gv-product-card:hover .gv-product-img::after { opacity: 1; }

.gv-product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gv-product-meta {
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-gold-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.gv-product-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gv-ivory);
}
.gv-product-desc {
  font-size: 0.85rem;
  color: var(--gv-gray-dim);
  margin-bottom: 1.2rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gv-product-price { margin-bottom: 1.2rem; }
.gv-product-price .from {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-gray);
}
.gv-product-price .amount {
  font-family: var(--gv-font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gv-gold-light);
}

/* ============================================================
   GLASS / PAPER CARDS
   ============================================================ */
.gv-card {
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 2rem;
  box-shadow: var(--gv-shadow-sm);
  color: var(--gv-ivory);
}
.gv-card h3, .gv-card h4, .gv-card h5 { color: var(--gv-ivory); }
.gv-card-glass {
  background: rgba(42,34,24,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 1.5rem;
  transition: all .3s;
  color: var(--gv-ivory);
}
.gv-card-glass:hover {
  background: var(--gv-ink-3);
  box-shadow: var(--gv-shadow);
  border-color: var(--gv-border-gold);
}

/* Cards on cream sections */
.gv-section-cream .gv-card { background: var(--gv-white); border-color: rgba(20,17,12,0.08); box-shadow: var(--gv-shadow-sm); }
.gv-section-cream .gv-card h3, .gv-section-cream .gv-card h4, .gv-section-cream .gv-card h5 { color: var(--gv-ink); }
.gv-section-cream .gv-card-glass { background: rgba(255,255,255,0.6); }
.gv-section-cream .gv-card-glass:hover { background: var(--gv-white); }

/* ============================================================
   FORMS
   ============================================================ */
.gv-form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-gray-dim);
  margin-bottom: 0.5rem;
}
.gv-form-control, .gv-form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--gv-ink);
  border: 1px solid var(--gv-border-gold);
  border-radius: var(--gv-radius);
  font-family: var(--gv-font-body);
  font-size: 0.92rem;
  color: var(--gv-ivory);
  transition: all .25s;
}
.gv-form-control:focus, .gv-form-select:focus {
  outline: none;
  border-color: var(--gv-gold);
  box-shadow: 0 0 0 3px var(--gv-gold-tint);
  background: var(--gv-ink-2);
}
.gv-form-control::placeholder { color: var(--gv-gray); }
textarea.gv-form-control { resize: vertical; min-height: 80px; }
select.gv-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Forms on cream sections (auth, checkout on dark body uses dark form by default) */
.gv-section-cream .gv-form-control, .gv-section-cream .gv-form-select {
  background: var(--gv-white);
  border-color: rgba(20,17,12,0.12);
  color: var(--gv-ink);
}
.gv-section-cream .gv-form-control:focus, .gv-section-cream .gv-form-select:focus { background: var(--gv-white); }
.gv-section-cream .gv-form-control::placeholder { color: var(--gv-gray-light); }
.gv-section-cream .gv-form-label { color: var(--gv-gray-dark); }

/* ============================================================
   BADGES
   ============================================================ */
.gv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.gv-badge-gold { background: var(--gv-gold); color: var(--gv-ink); }
.gv-badge-completed { background: var(--gv-success); color: #fff; }
.gv-badge-pending { background: var(--gv-ink-3); color: var(--gv-gold-light); border: 1px solid var(--gv-border-gold); }
.gv-badge-verified { background: rgba(74,157,95,0.15); color: var(--gv-success); border: 1px solid rgba(74,157,95,0.4); }
.gv-badge-rejected { background: rgba(192,57,43,0.15); color: var(--gv-danger); border: 1px solid rgba(192,57,43,0.4); }

/* ============================================================
   ALERTS
   ============================================================ */
.gv-alert {
  padding: 1rem 1.3rem;
  border-radius: var(--gv-radius);
  border-left: 3px solid;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  background: var(--gv-ink-2);
  color: var(--gv-ivory);
  border-color: var(--gv-gold);
}
.gv-alert-success { border-color: var(--gv-success); background: rgba(74,157,95,0.12); color: #a8e6b8; }
.gv-alert-danger { border-color: var(--gv-danger); background: rgba(192,57,43,0.15); color: #f5b8b0; }
.gv-alert-warning { border-color: var(--gv-warning); background: rgba(214,137,16,0.12); color: #f5d18a; }
.gv-alert-info { border-color: var(--gv-gold); background: var(--gv-gold-tint); color: var(--gv-gold-light); }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.gv-auth-bg {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.10), transparent 60%),
    var(--gv-ink);
}
.gv-auth-card {
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border-gold);
  border-radius: var(--gv-radius-lg);
  padding: 2.8rem;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--gv-shadow-lg);
  position: relative;
  color: var(--gv-ivory);
}
.gv-auth-card h3 { color: var(--gv-ivory); }
.gv-auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gv-grad-gold);
  border-radius: var(--gv-radius-lg) var(--gv-radius-lg) 0 0;
}
/* Auth form fields should be dark */
.gv-auth-card .gv-form-control, .gv-auth-card .gv-form-select {
  background: var(--gv-ink);
  border-color: var(--gv-border-gold);
  color: var(--gv-ivory);
}
.gv-auth-card .gv-form-control:focus { background: var(--gv-ink-3); }
.gv-auth-card .gv-form-label { color: var(--gv-gray-dim); }

/* ============================================================
   CART ITEMS
   ============================================================ */
.gv-cart-item {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: all .3s;
}
.gv-cart-item:hover { box-shadow: var(--gv-shadow); border-color: var(--gv-border-gold); }
.gv-cart-item-img {
  width: 90px; height: 110px;
  object-fit: cover;
  border-radius: var(--gv-radius);
  flex-shrink: 0;
}
.gv-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gv-border-gold);
  border-radius: var(--gv-radius);
  overflow: hidden;
}
.gv-qty-control button {
  background: transparent;
  border: 0;
  width: 34px; height: 34px;
  font-size: 1.1rem;
  color: var(--gv-gold-light);
  cursor: pointer;
  transition: background .2s;
}
.gv-qty-control button:hover { background: var(--gv-gold-tint); color: var(--gv-gold-shimmer); }
.gv-qty-control input {
  border: 0;
  width: 44px;
  text-align: center;
  background: transparent;
  font-weight: 600;
  color: var(--gv-ivory);
}

.gv-summary-box {
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border-gold);
  border-radius: var(--gv-radius-lg);
  padding: 1.8rem;
  position: sticky;
  top: 100px;
}
.gv-summary-box h4 { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--gv-ivory); }
.gv-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--gv-border-light);
  font-size: 0.88rem;
}
.gv-summary-row:last-child { border-bottom: 0; }
.gv-summary-row.total {
  border-top: 2px solid var(--gv-gold);
  border-bottom: 0;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 700;
  color: var(--gv-ivory);
}
.gv-summary-row.total .amount {
  font-family: var(--gv-font-serif);
  font-size: 1.5rem;
  color: var(--gv-gold-light);
}

/* ============================================================
   PAYMENT STEPS
   ============================================================ */
.gv-payment-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--gv-border-light);
}
.gv-payment-step:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.gv-payment-step .step-num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--gv-gold);
  color: var(--gv-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.gv-payment-step h5 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--gv-ivory); }
.gv-payment-step p { font-size: 0.85rem; color: var(--gv-gray-dim); margin: 0; }

.gv-qr-box {
  background: var(--gv-white);
  padding: 1.2rem;
  border-radius: var(--gv-radius-lg);
  border: 1px solid var(--gv-border-gold);
  display: inline-block;
}
.gv-qr-box img, .gv-qr-box canvas { display: block; margin: 0 auto; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.gv-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gv-gray);
}
.gv-empty i { font-size: 3rem; color: var(--gv-gold); margin-bottom: 1rem; opacity: 0.5; }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.gv-marquee {
  background: var(--gv-ink);
  color: var(--gv-gold-light);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--gv-gold-deep);
  border-bottom: 1px solid var(--gv-gold-deep);
}
.gv-marquee-track {
  display: inline-block;
  animation: gv-marquee 30s linear infinite;
}
.gv-marquee-track span {
  font-family: var(--gv-font-serif);
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 2rem;
  letter-spacing: 1px;
}
.gv-marquee-track span::after {
  content: '✦';
  margin-left: 2rem;
  color: var(--gv-gold);
  font-style: normal;
}
@keyframes gv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   DARK FEATURE BAND (selective use of black)
   ============================================================ */
.gv-band-dark {
  background: var(--gv-grad-ink);
  color: var(--gv-ivory);
  position: relative;
  overflow: hidden;
}
.gv-band-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,147,47,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(184,147,47,0.06), transparent 50%);
}
.gv-band-dark .eyebrow { color: var(--gv-gold-light); }
.gv-band-dark h2, .gv-band-dark h3, .gv-band-dark h4 { color: var(--gv-ivory); }
.gv-band-dark .ornament .line { background: linear-gradient(90deg, transparent, var(--gv-gold-light), transparent); }
.gv-band-dark p { color: rgba(246,241,231,0.75); }

/* ============================================================
   FOOTER
   ============================================================ */
.gv-footer {
  background: var(--gv-grad-ink);
  color: rgba(246,241,231,0.7);
  padding: 4.5rem 0 1.5rem;
  position: relative;
}
.gv-footer .footer-brand {
  font-family: var(--gv-font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: var(--gv-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}
.gv-footer h5 {
  color: var(--gv-gold-light);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.gv-footer p { font-size: 0.88rem; line-height: 1.8; color: rgba(246,241,231,0.6); }
.gv-footer ul li { margin-bottom: 0.6rem; }
.gv-footer ul li a {
  color: rgba(246,241,231,0.65);
  font-size: 0.88rem;
  transition: all .25s;
}
.gv-footer ul li a:hover { color: var(--gv-gold-light); padding-left: 4px; }
.gv-footer-bottom {
  border-top: 1px solid rgba(184,147,47,0.18);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(246,241,231,0.45);
  text-align: center;
  letter-spacing: 0.5px;
}
.gv-footer-bottom a { color: rgba(246,241,231,0.5); }
.gv-footer-bottom a:hover { color: var(--gv-gold-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: gv-fade-up .8s cubic-bezier(.4,0,.2,1) forwards; }
.fade-in-up.delay-1 { animation-delay: .15s; }
.fade-in-up.delay-2 { animation-delay: .3s; }
.fade-in-up.delay-3 { animation-delay: .45s; }
.fade-in-up.delay-4 { animation-delay: .6s; }
@keyframes gv-fade-up { to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.gv-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.gv-reveal.gv-in { opacity: 1; transform: translateY(0); }

/* Float animation */
.float { animation: gv-float 4s ease-in-out infinite; }
@keyframes gv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   PRICE TABLE (product detail)
   ============================================================ */
.gv-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.gv-price-table th {
  background: var(--gv-ink-3);
  color: var(--gv-gold-light);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gv-gold);
}
.gv-price-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--gv-border-light);
  color: var(--gv-ivory);
}
.gv-price-table tr:hover td { background: var(--gv-gold-tint); }
.gv-price-table .price { font-family: var(--gv-font-serif); font-weight: 700; color: var(--gv-gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .gv-hero { min-height: auto; padding: 6rem 0 3rem; }
  .gv-hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .gv-hero-frame img { height: 380px; }
  .gv-hero-ring { display: none; }
  .gv-section { padding: 4rem 0; }
  .gv-summary-box { position: static; }
  .navbar-collapse {
    background: var(--gv-ink-2);
    border-radius: var(--gv-radius-lg);
    padding: 1rem;
    margin-top: 0.8rem;
    box-shadow: var(--gv-shadow);
    border: 1px solid var(--gv-border-gold);
  }
  .gv-nav-link { padding: 0.7rem 1rem !important; }
  .gv-nav-link::after { display: none; }
  .gv-cart-item { flex-wrap: wrap; }
  .gv-cart-item-img { width: 70px; height: 90px; }
}
@media (max-width: 575px) {
  body { font-size: 15px; }
  .gv-hero { padding: 5rem 0 2.5rem; }
  .gv-hero-content { text-align: center; }
  .gv-hero-ornament { justify-content: center; }
  .gv-hero-subtitle { margin-left: auto; margin-right: auto; }
  .gv-section { padding: 3rem 0; }
  .gv-auth-card { padding: 1.8rem; }
  .gv-card { padding: 1.3rem; }
  .gv-product-body { padding: 1.2rem; }
  .gv-marquee-track span { font-size: 0.95rem; margin: 0 1.2rem; }
  .gv-cart-item { gap: 0.8rem; padding: 1rem; }
  .gv-qty-control button { width: 30px; height: 30px; }
  .btn { font-size: 0.72rem; padding: 0.7rem 1.3rem; }
  .btn-lg { font-size: 0.78rem; padding: 0.8rem 1.6rem; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.gv-admin-body { background: var(--gv-ivory); min-height: 100vh; }
.gv-admin-sidebar {
  background: var(--gv-grad-ink);
  color: var(--gv-ivory);
  min-height: 100vh;
  padding: 1.5rem 0;
  position: fixed;
  top: 0; left: 0;
  width: 250px;
  z-index: 100;
}
.gv-admin-sidebar .brand {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(184,147,47,0.2);
  margin-bottom: 1rem;
}
.gv-admin-sidebar .brand-name {
  font-family: var(--gv-font-serif);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  background: var(--gv-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gv-admin-sidebar .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gv-gold-light);
  text-transform: uppercase;
}
.gv-admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.5rem;
  color: rgba(246,241,231,0.7) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all .25s;
  border-left: 3px solid transparent;
}
.gv-admin-nav-link:hover {
  background: rgba(184,147,47,0.08);
  color: var(--gv-gold-light) !important;
  border-left-color: var(--gv-gold);
}
.gv-admin-nav-link.active {
  background: rgba(184,147,47,0.12);
  color: var(--gv-gold-light) !important;
  border-left-color: var(--gv-gold);
}
.gv-admin-nav-link i { font-size: 1rem; width: 20px; text-align: center; }
.gv-admin-content { margin-left: 250px; padding: 1.5rem 2rem; }
.gv-admin-topbar {
  background: var(--gv-white);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--gv-shadow-sm);
}
.gv-admin-topbar h1 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
  color:black;
}
.gv-stat-card {
  background: var(--gv-white);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 1.5rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.gv-stat-card:hover { box-shadow: var(--gv-shadow); transform: translateY(-3px); }
.gv-stat-card .stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.gv-stat-card .stat-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gv-gray);
  font-weight: 600;
}
.gv-stat-card .stat-value {
  font-family: var(--gv-font-serif);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gv-ink);
  margin-top: 0.2rem;
}
.gv-admin-table {
  background: var(--gv-white);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
}
.gv-admin-table table { margin: 0; }
.gv-admin-table thead th {
  background: var(--gv-ivory-2);
  border-bottom: 2px solid var(--gv-ink);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gv-gray-dark);
  padding: 0.9rem 1rem;
}
.gv-admin-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--gv-border);
  font-size: 0.86rem;
  color: var(--gv-ink);
  vertical-align: middle;
}
.gv-admin-table tbody tr:hover td { background: var(--gv-gold-tint); }

.gv-admin-toggle { display: none; }

@media (max-width: 991px) {
  .gv-admin-sidebar { transform: translateX(-100%); transition: transform .3s; }
  .gv-admin-sidebar.open { transform: translateX(0); }
  .gv-admin-content { margin-left: 0; padding: 1rem; }
  .gv-admin-toggle { display: inline-flex; }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--gv-ink-2); }
::-webkit-scrollbar-thumb { background: var(--gv-gold-deep); border-radius: 5px; border: 2px solid var(--gv-ink-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gv-gold); }

/* Bootstrap overrides for premium feel */
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--gv-gold-light); }
.breadcrumb-item.active { color: var(--gv-gray); }
.container { max-width: var(--gv-maxw); }

/* ============================================================
   CRAFTSMANSHIP SECTION (about/story)
   ============================================================ */
.gv-craft-main {
  position: relative;
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  box-shadow: var(--gv-shadow-lg);
}
.gv-craft-main img { width: 100%; height: 100%; object-fit: cover; }
.gv-craft-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: var(--gv-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gv-gold-deep);
  font-size: 1.5rem;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all .3s;
}
.gv-craft-play:hover { background: var(--gv-gold); color: var(--gv-ink); transform: translate(-50%,-50%) scale(1.08); }
.gv-craft-thumb {
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--gv-shadow);
  border: 1px solid var(--gv-border-gold);
}
.gv-craft-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gv-craft-thumb:hover img { transform: scale(1.05); }

.gv-craft-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.3rem;
}
.gv-craft-point .ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gv-gold-tint);
  border: 1px solid var(--gv-border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gv-gold-light);
  font-size: 1rem;
}
.gv-craft-point h6 { margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 700; }
.gv-craft-point p { margin: 0; font-size: 0.85rem; color: var(--gv-gray-dim); }

/* Craftsmanship on cream section */
.gv-section-cream .gv-craft-point h6 { color: var(--gv-ink); }
.gv-section-cream .gv-craft-point p { color: var(--gv-gray-dark); }
.gv-section-cream .gv-craft-point .ico { color: var(--gv-gold-deep); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.gv-process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}
.gv-process-step .num {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  background: var(--gv-grad-gold);
  color: var(--gv-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--gv-font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: var(--gv-shadow-gold);
  position: relative;
  z-index: 2;
}
.gv-process-step h5 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--gv-ivory); }
.gv-process-step p { font-size: 0.85rem; color: var(--gv-gray-dim); margin: 0; }
.gv-process-step::after {
  content: '';
  position: absolute;
  top: 30px; right: -50%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gv-gold), transparent);
  z-index: 1;
}
.gv-process-step:last-child::after { display: none; }

.gv-section-cream .gv-process-step h5 { color: var(--gv-ink); }
.gv-section-cream .gv-process-step p { color: var(--gv-gray-dark); }

@media (max-width: 991px) {
  .gv-process-step::after { display: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.gv-testimonial {
  background: var(--gv-ink-2);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all .3s;
  position: relative;
}
.gv-testimonial:hover { border-color: var(--gv-border-gold); box-shadow: var(--gv-shadow); transform: translateY(-4px); }
.gv-testimonial .quote-mark {
  font-family: var(--gv-font-serif);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gv-gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}
.gv-testimonial .stars { color: var(--gv-gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.gv-testimonial p { font-size: 0.92rem; color: var(--gv-gray-dim); font-style: italic; margin-bottom: 1.3rem; line-height: 1.8; }
.gv-testimonial-author { display: flex; align-items: center; gap: 12px; }
.gv-testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gv-gold);
}
.gv-testimonial-author .name { font-weight: 600; color: var(--gv-ivory); font-size: 0.92rem; }
.gv-testimonial-author .role { font-size: 0.75rem; color: var(--gv-gold-light); letter-spacing: 1px; text-transform: uppercase; }

.gv-section-cream .gv-testimonial { background: var(--gv-white); border-color: rgba(20,17,12,0.08); }
.gv-section-cream .gv-testimonial p { color: var(--gv-gray-dark); }
.gv-section-cream .gv-testimonial-author .name { color: var(--gv-ink); }

/* ============================================================
   SOCIAL PROOF / STATS BAND
   ============================================================ */
.gv-stat-band {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.gv-stat-band .stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.gv-stat-band .stat .num {
  font-family: var(--gv-font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gv-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.gv-stat-band .stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gv-gray-dim);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.gv-cta {
  background: var(--gv-grad-ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.gv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.14), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(138,92,62,0.10), transparent 50%);
}
.gv-cta .inner { position: relative; z-index: 2; }

/* ============================================================
   SOCIAL ICONS (footer)
   ============================================================ */
.gv-social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.10);
  border: 1px solid var(--gv-border-gold);
  color: var(--gv-gold-light) !important;
  font-size: 1rem;
  transition: all .3s;
}
.gv-social-icon:hover {
  background: var(--gv-gold);
  color: var(--gv-ink) !important;
  transform: translateY(-3px);
  box-shadow: var(--gv-shadow-gold);
}
