/* ════════════════════════════════════════════════
   BLING BY HARSINDH — Logo-matched Theme
   ─────────────────────────────────────────────
   Logo palette (sampled directly):
     Powder Blue bg : #B8CDD9  /  #C9DEEA  /  #E0EEF5
     Steel Blue star: #5B9EC9
     Deep navy      : #0D1B2A  /  #1A3349
     Gold main      : #C9A84C  /  #B8924A
     Gold light     : #E8C97A  /  #F5E4B0
     Gold dark text : #8B6218  /  #6B4A12
     Cream          : #FDF8F2  /  #F5EDD8
   ════════════════════════════════════════════════ */

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

:root {
  /* ── BLUES (from logo background & star) ── */
  --blue-pale:   #E0EEF5;
  --blue-light:  #C9DEEA;
  --blue-mid:    #B8CDD9;   /* logo background */
  --blue:        #8BAFC4;
  --blue-star:   #5B9EC9;   /* logo sparkle star */
  --blue-deep:   #2C5F7A;
  --blue-navy:   #1A3349;
  --blue-dark:   #0D1B2A;   /* darkest navy */

  /* ── GOLDS (from logo ring & letters) ── */
  --gold-pale:   #F5E4B0;
  --gold-light:  #E8C97A;
  --gold:        #C9A84C;   /* main gold */
  --gold-warm:   #B8924A;   /* deeper ring gold */
  --gold-text:   #8B6218;   /* "BLING BY" text color */
  --gold-dark:   #6B4A12;

  /* ── CREAM / NEUTRAL ── */
  --cream:       #FDF8F2;
  --cream-mid:   #F5EDD8;
  --cream-deep:  #EDE0C4;

  /* ── TYPOGRAPHY ── */
  --font-serif:  'Cormorant Garamond', serif;
  --font-caps:   'Cinzel', serif;
  --font-body:   'Jost', sans-serif;

  /* ── EFFECTS ── */
  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold:   0 8px 40px rgba(201,168,76,0.28);
  --shadow-blue:   0 8px 40px rgba(91,158,201,0.2);
  --shadow-card:   0 20px 60px rgba(13,27,42,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--blue-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════ */
#cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
#cursor-follower {
  width: 38px; height: 38px;
  border: 1.5px solid var(--blue-star);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.65;
}

/* ════════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0;
  background: var(--blue-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-ring {
  width: 68px; height: 68px;
  border: 3px solid rgba(201,168,76,0.18);
  border-top-color: var(--gold);
  border-right-color: var(--blue-star);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
.loader-text {
  font-family: var(--font-caps);
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  margin-top: 1.5rem;
  opacity: 0.85;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--blue-star));
  border-radius: 3px;
}

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 27, 42, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.65rem 0;
  box-shadow: 0 2px 30px rgba(13,27,42,0.4);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: nowrap;
}

/* ── Centered-logo nav layout (used by index.html) ──
   Logo sits in the middle, menu links split into left & right groups.
   Each side flexes equally so the logo is always perfectly centered
   and never overlaps menu items. */
.nav-inner.centered {
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-inner.centered .nav-side {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1 1 0;
  margin: 0;            /* override old margin-left: auto on .nav-links */
  padding: 0;
  list-style: none;
  min-width: 0;
}
.nav-inner.centered .nav-side li { white-space: nowrap; }
.nav-inner.centered .nav-side.left  { justify-content: flex-end; }
.nav-inner.centered .nav-side.right { justify-content: flex-start; }
.nav-inner.centered .nav-logo {
  flex-shrink: 0;
  margin: 0 0.5rem;
}
/* Right-side "Shop Now" gets gold-button treatment without breaking the list layout */
.nav-cta-link {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-warm));
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.nav-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}
.nav-cta-link::after { display: none; }    /* kill the ::after underline inherited from .nav-links a */

.nav-logo img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.35), 0 4px 20px rgba(13,27,42,0.4);
  transition: box-shadow var(--transition), transform var(--transition);
}
.nav-logo:hover img {
  box-shadow: 0 0 0 3px var(--gold), 0 6px 28px rgba(201,168,76,0.4);
  transform: scale(1.06);
}

.nav-links {
  list-style: none;
  display: flex; gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-caps);
  font-size: 0.71rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blue-star));
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-warm));
  text-decoration: none;
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.45); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); border-radius: 1px;
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 100%); height: 100vh;
  background: var(--blue-dark);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: right 0.5s cubic-bezier(0.77,0,0.175,1);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin: 1.6rem 0; text-align: center; }
.mobile-menu ul li a {
  font-family: var(--font-caps); font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   SHARED UTILITIES
   ════════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  color: var(--blue-star);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--blue-dark);
  line-height: 1.2;
}
h2 em { font-style: italic; color: var(--gold-warm); }

.divider-gold {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue-star), transparent);
  margin: 1.5rem auto 0;
}
.divider-gold.left { margin-left: 0; }

/* Primary CTA */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-caps);
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-warm));
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}
.btn-gold:hover::before { transform: translateX(110%); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.45); }
.btn-gold.full { width: 100%; justify-content: center; }

/* Ghost CTA */
.btn-ghost {
  display: inline-flex;
  font-family: var(--font-caps); font-size: 0.73rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--blue-star);
  color: var(--blue-star);
  background: rgba(91,158,201,0.08);
}
/* Kiki Challenge variant — pink accent */
.btn-ghost.btn-kiki { border-color: rgba(201,84,122,0.45); color: rgba(240,160,192,0.9); }
.btn-ghost.btn-kiki:hover { border-color: #C9547A; color: #F0A0C0; background: rgba(201,84,122,0.1); }

/* ════════════════════════════════════════════════
   HERO  —  Full-bleed video with parallax scroll
   ════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #0D1B2A; /* fallback while video loads */
}

/* ── index2.html: CSS gradient hero (no video) ── */
.hero-parallax {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 70% 60% at 25% 35%, rgba(184,205,217,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 75% 65%, rgba(91,158,201,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 55%),
    linear-gradient(160deg, #0D1B2A 0%, #122338 45%, #0A1520 100%);
  will-change: transform;
  z-index: 0;
}
.hero-parallax::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,205,217,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-parallax::before {
  content: 'HS';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 55vw; font-weight: 300; font-style: italic;
  color: rgba(184,205,217,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  line-height: 1; pointer-events: none; white-space: nowrap;
}

/* Video wrapper — oversized so parallax travel never shows a gap */
.hero-video-wrap {
  position: absolute;
  top: -25%; left: -5%;
  width: 110%; height: 150%;
  z-index: 0;
  will-change: transform;
}

#heroVideo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

/* Layered overlay: deep navy at bottom for text legibility,
   subtle blue-gold gradient at top */
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(13, 27, 42, 0.45)  0%,
      rgba(13, 27, 42, 0.20) 40%,
      rgba(13, 27, 42, 0.55) 75%,
      rgba(13, 27, 42, 0.80) 100%),
    radial-gradient(ellipse 70% 50% at 50% 100%,
      rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bokeh-wrap {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  z-index: 2;
}

/* ── Hero logo display ── */
.hero-logo-badge {
  display: inline-block;
  margin-bottom: 2rem;
}
.hero-logo-badge img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(201,168,76,0.4),
    0 0 0 6px rgba(201,168,76,0.08),
    0 0 50px rgba(201,168,76,0.2),
    0 0 80px rgba(91,158,201,0.12);
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(201,168,76,0.4), 0 0 0 6px rgba(201,168,76,0.08), 0 0 50px rgba(201,168,76,0.2), 0 0 80px rgba(91,158,201,0.12); }
  50%       { box-shadow: 0 0 0 3px rgba(201,168,76,0.7), 0 0 0 10px rgba(201,168,76,0.12), 0 0 70px rgba(201,168,76,0.35), 0 0 110px rgba(91,158,201,0.2); }
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 780px; padding: 2rem;
}

.hero-sub {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--blue-star);
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(13,27,42,0.5);
}
.hero-title em {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--blue-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(201,222,234,0.75);  /* powder blue text */
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex; gap: 1.2rem;
  justify-content: center; flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3;
}
.hero-scroll-hint span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--blue-star), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
.hero-scroll-hint p {
  font-family: var(--font-caps); font-size: 0.58rem;
  letter-spacing: 0.3em; color: rgba(184,205,217,0.55);
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0) translateY(-100%); }
  50%       { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* Floating orbs */
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 2; }
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,205,217,0.07) 0%, transparent 70%);
  top: -5%; left: -12%;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(91,158,201,0.1) 0%, transparent 70%);
  bottom: 10%; right: -5%;
  animation: orbFloat 10s ease-in-out 2.5s infinite;
}
.orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 40%; right: 22%;
  animation: orbFloat 7s ease-in-out 5s infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.06); }
}

/* ════════════════════════════════════════════════
   MARQUEE  —  navy bg / powder-blue + gold text
   ════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--blue-navy);
  padding: 1rem 0;
  overflow: hidden;
  border-top:    1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(91,158,201,0.15);
}
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-caps);
  font-size: 0.7rem; letter-spacing: 0.25em;
  color: rgba(201,222,234,0.6);
}
.marquee-track .star { color: var(--gold); font-size: 0.7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   COLLECTIONS  —  cream bg, cards with navy shadows
   ════════════════════════════════════════════════ */
#collections {
  padding: 7rem 2.5rem;
  max-width: 1400px; margin: 0 auto;
}

.collections-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}

.collection-card {
  background: var(--cream);
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184,205,217,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(13,27,42,0.18);
}
.collection-card.featured {
  transform: translateY(-14px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-gold);
}
.collection-card.featured:hover { transform: translateY(-22px); }

.card-img-wrap {
  position: relative; height: 280px; overflow: hidden;
}
.card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.collection-card:hover .card-bg { transform: scale(1.09); }

/* Card backgrounds — local product photography (assets/images) */
.bg-bridal {
  background:
    linear-gradient(160deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.5) 100%),
    url("../images/red_bangles.png") center/cover no-repeat,
    linear-gradient(160deg, #122338 0%, #1A3349 50%, #0D1B2A 100%);
}

.bg-polki {
  background:
    linear-gradient(160deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.5) 100%),
    url('../images/red bangles.png') center/cover no-repeat,
    linear-gradient(160deg, #0D1B2A 0%, #1A3349 60%, #122338 100%);
}

.bg-meena {
  background:
    linear-gradient(160deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.5) 100%),
    url('../images/white bangles.png') center/cover no-repeat,
    linear-gradient(160deg, #0D1B2A 0%, #1A3349 100%);
}

.bg-daily {
  background:
    linear-gradient(160deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.5) 100%),
    url("../images/white_bangles_2.png") center/cover no-repeat,
    linear-gradient(160deg, #0A1520 0%, #122338 50%, #1A3349 100%);
}

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.75) 0%, transparent 55%);
}

.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-family: var(--font-caps); font-size: 0.58rem;
  letter-spacing: 0.15em; padding: 0.28rem 0.75rem;
  border-radius: 2px;
}

.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: var(--font-serif); font-size: 1.3rem;
  font-weight: 500; color: var(--blue-dark); margin-bottom: 0.5rem;
}
.card-body p {
  font-size: 0.88rem; color: var(--blue-deep);
  line-height: 1.7; margin-bottom: 1rem;
}
.card-link {
  font-family: var(--font-caps); font-size: 0.67rem;
  letter-spacing: 0.15em; color: var(--gold-warm);
  text-decoration: none;
  transition: letter-spacing var(--transition), color var(--transition);
}
.card-link:hover { letter-spacing: 0.28em; color: var(--blue-star); }

/* ════════════════════════════════════════════════
   PARALLAX QUOTE  —  navy with powder-blue texture
   ════════════════════════════════════════════════ */
.parallax-quote {
  position: relative; height: 430px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pq-bg {
  position: absolute; inset: -30%;
  background:
    linear-gradient(160deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.72) 50%, rgba(10,21,32,0.88) 100%),
    url("../images/green_white_bangles.png") center/cover no-repeat,
    linear-gradient(160deg, #0D1B2A 0%, #122338 60%, #0A1520 100%);
  will-change: transform;
}
/* powder-blue dot texture */
.pq-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,205,217,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.pq-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }

.pq-ornament {
  display: block; font-size: 1.5rem;
  color: var(--blue-star); margin-bottom: 1.5rem;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:0.55; } 50% { opacity:1; } }

.pq-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 300; color: rgba(255,255,255,0.92);
  line-height: 1.65; font-style: normal;
}
.pq-content blockquote em {
  font-style: italic; color: var(--gold-light);
}
.pq-content cite {
  display: block; margin-top: 1.5rem;
  font-family: var(--font-caps); font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(91,158,201,0.75); font-style: normal;
}

/* ════════════════════════════════════════════════
   ABOUT  —  powder-blue tinted cream background
   ════════════════════════════════════════════════ */
#about {
  padding: 7rem 2.5rem;
  background: linear-gradient(160deg, var(--blue-pale) 0%, var(--blue-light) 50%, var(--blue-mid) 100%);
  position: relative; overflow: hidden;
}
/* Big watermark HS in logo-blue */
#about::before {
  content: 'HS';
  position: absolute;
  font-family: var(--font-serif); font-style: italic;
  font-size: 30vw; font-weight: 300;
  color: rgba(91,158,201,0.05);
  top: 50%; right: -4%;
  transform: translateY(-50%);
  pointer-events: none; line-height: 1;
}

.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.25rem, 4vw, 5.5rem);
  align-items: center;
}

.about-visual {
  width: 100%;
  min-width: 0;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.about-img-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(13,27,42,0.25) 0%, rgba(13,27,42,0.45) 100%),
    url("../images/white_bangles_2.png") center/cover no-repeat,
    linear-gradient(160deg, #122338 0%, #1A3349 50%, #0D1B2A 100%);
  border-radius: 4px;
  overflow: hidden;
}

.about-img-frame {
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 2px solid rgba(91,158,201,0.35);
  border-radius: 4px; z-index: -1;
}

.about-stat {
  position: absolute;
  background: var(--cream);
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(13,27,42,0.18);
  text-align: center;
  border-bottom: 3px solid var(--gold);
  border-radius: 3px;
}
.about-stat strong {
  display: block;
  font-family: var(--font-serif); font-size: 2rem;
  font-weight: 600; color: var(--gold-warm); line-height: 1;
}
.about-stat span { font-size: 0.73rem; color: var(--blue-deep); letter-spacing: 0.05em; }
.stat-1 { bottom: 2rem; left: -2rem; }
.stat-2 { top: 2rem;    right: -2rem; }

.about-text h2 { margin: 0.5rem 0 1rem; color: var(--blue-dark); }
.about-text p {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--blue-deep); margin-bottom: 1.2rem;
}

.craft-pillars {
  margin: 2rem 0 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-icon { font-size: 0.8rem; color: var(--blue-star); margin-top: 4px; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.94rem; color: var(--blue-dark); }
.pillar span   { font-size: 0.8rem; color: var(--blue-deep); }

/* ════════════════════════════════════════════════
   CRAFT FEATURE  —  editorial 3-tile layout
   ════════════════════════════════════════════════ */
#process {
  padding: 7rem 2.5rem;
  background: var(--blue-dark);
}
#process .section-header .eyebrow { color: var(--gold-light); }
#process .section-header h2       { color: var(--blue-pale); }
#process .section-header h2 em    { color: var(--gold-light); }
#process .divider-gold {
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue-star), transparent);
}

.craft-tiles {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.craft-tile {
  padding: 3.5rem 3rem;
  border-top: 1px solid rgba(201,168,76,0.18);
  border-right: 1px solid rgba(201,168,76,0.18);
  position: relative;
  transition: background var(--transition);
}
.craft-tile:last-child { border-right: none; }
.craft-tile:hover { background: rgba(201,168,76,0.04); }

/* Centre tile gets a gold-tinted highlight */
.craft-tile.ct-center {
  background: rgba(201,168,76,0.05);
  border-top-color: rgba(201,168,76,0.45);
}
.craft-tile.ct-center:hover { background: rgba(201,168,76,0.09); }

.ct-num {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 1.4rem;
}

.ct-divider {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.6rem;
}

.ct-title {
  font-family: var(--font-caps);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.ct-desc {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.95;
  color: rgba(224,238,245,0.65);
  font-weight: 300;
}

/* ════════════════════════════════════════════════
   GALLERY  —  deep navy, hover in gold
   ════════════════════════════════════════════════ */
#gallery {
  padding: 7rem 2.5rem;
  background: var(--blue-dark);
}
#gallery .section-header h2 { color: var(--blue-pale); }
#gallery .section-header .eyebrow { color: var(--gold-light); }
#gallery .divider-gold {
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--blue-star), transparent);
}

.gallery-mosaic {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
}
.gallery-item.g-tall  { grid-row: span 2; }
.gallery-item.g-wide  { grid-column: span 2; }

.g-img {
  width: 100%; height: 100%; min-height: 240px;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.gallery-item:hover .g-img { transform: scale(1.08); }

/* Gallery — local product photography */
.gi-1 {
  background:
    linear-gradient(145deg, rgba(13,27,42,0.12), rgba(13,27,42,0.28)),
    url("../images/red_bangles.png") center/cover no-repeat,
    linear-gradient(145deg, #122338, #1A3349);
}
.gi-2 {
  background:
    linear-gradient(145deg, rgba(13,27,42,0.12), rgba(13,27,42,0.28)),
    url('../images/red bangles.png') center/cover no-repeat,
    linear-gradient(145deg, #0D1B2A, #1A3349);
}
.gi-3 {
  background:
    linear-gradient(145deg, rgba(13,27,42,0.12), rgba(13,27,42,0.28)),
    url('../images/white bangles.png') center/cover no-repeat,
    linear-gradient(145deg, #0A1520, #122338);
}
.gi-4 {
  background:
    linear-gradient(145deg, rgba(13,27,42,0.12), rgba(13,27,42,0.28)),
    url("../images/white_bangles_2.png") center/cover no-repeat,
    linear-gradient(145deg, #0D1B2A, #122338);
}
.gi-5 {
  background:
    linear-gradient(145deg, rgba(13,27,42,0.12), rgba(13,27,42,0.28)),
    url("../images/green_white_bangles.png") center/cover no-repeat,
    linear-gradient(145deg, #122338, #1A3349);
}
.gi-6 {
  background:
    linear-gradient(145deg, rgba(13,27,42,0.12), rgba(13,27,42,0.28)),
    url("../images/blue_bangles.png") center/cover no-repeat,
    linear-gradient(145deg, #0A1520, #1A3349);
}

.g-hover {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .g-hover { opacity: 1; }
.g-hover span {
  font-family: var(--font-caps); font-size: 0.88rem;
  letter-spacing: 0.25em; color: var(--blue-dark);
}

.gallery-cta { text-align: center; margin-top: 3rem; }

/* ════════════════════════════════════════════════
   PARALLAX BANNER  —  navy → blue-star glow
   ════════════════════════════════════════════════ */
.parallax-banner {
  position: relative; height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pb-bg {
  position: absolute; inset: -30%;
  background:
    linear-gradient(160deg, rgba(13,27,42,0.75) 0%, rgba(18,35,56,0.8) 100%),
    url("../images/blue_bangles.png") center/cover no-repeat,
    linear-gradient(160deg, #0D1B2A 0%, #122338 100%);
  will-change: transform;
}
.pb-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 22px,
    rgba(184,205,217,0.03) 22px, rgba(184,205,217,0.03) 23px
  );
}

.pb-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.pb-content h2 { color: var(--blue-pale); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.pb-content h2 em { color: var(--gold-light); }
.pb-content p {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: rgba(184,205,217,0.7); margin-bottom: 2.5rem;
}

.pb-sparkles { position: absolute; inset: 0; pointer-events: none; }

/* ════════════════════════════════════════════════
   TESTIMONIALS  —  powder-blue bg
   ════════════════════════════════════════════════ */
#testimonials {
  padding: 7rem 2.5rem;
  background: linear-gradient(160deg, var(--blue-pale) 0%, var(--blue-light) 50%, var(--blue-mid) 100%);
  overflow: hidden;
}
#testimonials .section-header h2  { color: var(--blue-dark); }
#testimonials .divider-gold {
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue-star), transparent);
}

.testimonial-track-wrap { max-width: 1200px; margin: 0 auto; overflow: hidden; }
.testimonial-track {
  display: flex; gap: 2rem;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.tcard {
  flex: 0 0 calc(33.33% - 1.35rem);
  background: var(--cream);
  padding: 2.5rem; border-radius: 6px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--blue-star);
  position: relative;
}
.tcard::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.5rem;
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: rgba(91,158,201,0.12);
}
.tcard-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.tcard p {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: var(--blue-dark); line-height: 1.8; margin-bottom: 1.5rem;
}
.tcard-author { display: flex; align-items: center; gap: 1rem; }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-star), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--cream); font-weight: 600; flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--blue-dark); }
.tcard-author span   { font-size: 0.73rem; color: var(--blue-deep); }

.tcard-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.tcard-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(91,158,201,0.3); cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.tcard-dots .dot.active { background: var(--blue-star); transform: scale(1.3); }

/* ════════════════════════════════════════════════
   CONTACT  —  deep navy, forms with blue accents
   ════════════════════════════════════════════════ */
#contact {
  padding: 7rem 2.5rem;
  background: var(--blue-dark);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 50%,  rgba(91,158,201,0.1)  0%, transparent 40%),
    radial-gradient(circle at 92% 50%, rgba(201,168,76,0.07) 0%, transparent 40%);
  pointer-events: none;
}

.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center;
}

.contact-left .eyebrow { color: var(--blue-star); }
.contact-left h2       { color: var(--blue-pale); }
.contact-left h2 em    { color: var(--gold-light); }
.contact-left p        { color: rgba(184,205,217,0.65); font-size: 0.95rem; line-height: 1.85; margin: 1.5rem 0 2rem; }

.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-social {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-caps); font-size: 0.7rem; letter-spacing: 0.15em;
  color: rgba(184,205,217,0.75); text-decoration: none;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(91,158,201,0.22);
  border-radius: 3px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.contact-social svg { width: 18px; height: 18px; }
.contact-social:hover {
  border-color: var(--blue-star); color: var(--blue-star);
  background: rgba(91,158,201,0.08);
}
.contact-social.whatsapp:hover { border-color: #25D366; color: #25D366; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(184,205,217,0.05);
  border: 1px solid rgba(91,158,201,0.22);
  border-radius: 3px;
  padding: 1rem 1rem 0.75rem;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--blue-pale); outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--blue-navy); color: var(--blue-pale); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-star);
  background: rgba(91,158,201,0.07);
}
.form-group label {
  position: absolute; top: 50%; left: 1rem;
  transform: translateY(-50%);
  font-size: 0.85rem; color: rgba(184,205,217,0.45);
  pointer-events: none; transition: all 0.3s;
}
.form-group textarea ~ label { top: 1.2rem; transform: none; }
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.3rem; font-size: 0.68rem;
  color: var(--blue-star); transform: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }

/* ════════════════════════════════════════════════
   FOOTER  —  darkest navy, gold/blue links
   ════════════════════════════════════════════════ */
footer {
  background: #080F17;
  border-top: 1px solid rgba(91,158,201,0.12);
}
.footer-top {
  max-width: 1400px; margin: 0 auto;
  padding: 5rem 2.5rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}

.footer-logo {
  height: 65px; object-fit: contain; margin-bottom: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.25), 0 4px 20px rgba(201,168,76,0.15);
}
.footer-brand p {
  font-size: 0.85rem; color: rgba(184,205,217,0.45);
  line-height: 1.8; max-width: 280px;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(91,158,201,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(184,205,217,0.55);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.3);
}

.footer-links h5 {
  font-family: var(--font-caps); font-size: 0.68rem;
  letter-spacing: 0.22em; color: var(--blue-star); margin-bottom: 1.25rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a {
  font-size: 0.85rem; color: rgba(184,205,217,0.45);
  text-decoration: none; transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 2.5rem; text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem; color: rgba(184,205,217,0.25); letter-spacing: 0.06em;
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--blue-star));
  color: var(--blue-dark); border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(91,158,201,0.35);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.5); }

/* ════════════════════════════════════════════════
   AOS SCROLL REVEAL
   ════════════════════════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity 0.85s ease, transform 0.85s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-mosaic   { grid-template-columns: repeat(2,1fr); }
  .gallery-item.g-tall { grid-row: span 1; }
  .gallery-item.g-wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* Tighten centered-nav spacing on smaller laptops to keep logo well clear of menu */
  .nav-inner.centered { gap: 1rem; }
  .nav-inner.centered .nav-side { gap: 1.4rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.12em; }
  .nav-cta-link { padding: 0.55rem 1.1rem; font-size: 0.65rem; }
}

@media (max-width: 960px) {
  /* Collapse desktop menu earlier — switch to hamburger before logo+links overlap */
  .nav-links, .nav-cta, .nav-side { display: none !important; }
  .hamburger { display: flex; }
  /* Re-center the lone logo in the navbar at this breakpoint */
  .nav-inner.centered { justify-content: space-between; }
  .nav-inner.centered .nav-logo { margin-left: 0; }
}

@media (max-width: 900px) {
  /* Craft tiles stack vertically on tablet */
  .craft-tiles { grid-template-columns: 1fr; }
  .craft-tile  { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.18); padding: 2.5rem 2rem; }
  .craft-tile:last-child { border-bottom: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
  /* Full-width craft image on tablet — only page padding limits width */
  .about-visual {
    width: 100%;
    max-width: min(620px, calc(100vw - 3rem));
    margin: 0 auto;
  }
  .about-img-wrap {
    width: 100%;
    max-width: none;
    aspect-ratio: 4/5;
  }
  .process-steps { flex-direction: column; }
  .step-line {
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), var(--blue-star));
  }
  .form-row { grid-template-columns: 1fr; }
  .about-stat.stat-1 { left: 0.5rem; bottom: 1.25rem; }
  .about-stat.stat-2 { right: 0.5rem; top: 1.25rem; }
  /* About / Craft tightening at tablet breakpoint */
  #about { padding: clamp(4rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2rem); }
  .about-text { text-align: center; max-width: 38rem; margin-left: auto; margin-right: auto; }
  .about-text .divider-gold.left { margin-left: auto; margin-right: auto; }
  .craft-pillars { max-width: min(420px, 100%); margin-left: auto; margin-right: auto; }
  .pillar { text-align: left; }
}

@media (max-width: 640px) {
  .collections-grid { grid-template-columns: 1fr; }
  .gallery-mosaic   { grid-template-columns: 1fr; }
  .gallery-item.g-wide { grid-column: span 1; }
  .tcard { flex: 0 0 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hide-sm { display: none; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: default; }

  /* ── About / Craft mobile polish ── */
  #about {
    padding: clamp(3.25rem, 10vw, 4rem) clamp(1rem, 4vw, 1.35rem);
  }
  #about::before { font-size: 50vw; right: -10%; opacity: 0.6; }
  .about-grid { gap: 1.75rem; }
  /* Convert .about-visual into a 2-row grid: image on top, stats as a
     side-by-side row beneath. This avoids absolute-positioned stat
     cards escaping the image bounds and overlapping the heading. */
  .about-visual {
    width: 100%;
    max-width: min(520px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "img img"
      "s1  s2";
    gap: 0.65rem 0.75rem;
    margin: 0 auto;
  }
  .about-img-wrap {
    grid-area: img;
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: none;
  }
  .about-img-frame {
    inset: 0.45rem -0.45rem -0.45rem 0.45rem;
  }
  /* Stat cards now flow as in-grid pills, not absolute */
  .about-stat {
    position: static;
    inset: auto;
    top: auto; right: auto; bottom: auto; left: auto;
    padding: 0.6rem 0.8rem;
    border-bottom-width: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
  }
  .about-stat.stat-1 { grid-area: s1; }
  .about-stat.stat-2 { grid-area: s2; }
  .about-stat strong { font-size: 1.4rem; }
  .about-stat span   { font-size: 0.62rem; letter-spacing: 0.04em; }

  .about-text { max-width: none; padding: 0 0.15rem; }
  .about-text h2 { font-size: clamp(1.55rem, 6.5vw, 2rem); }
  .about-text p {
    font-size: clamp(0.88rem, 3.5vw, 0.95rem);
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .craft-pillars { margin: 1.5rem 0 2rem; gap: 0.85rem; max-width: none; }
  .pillar { gap: 0.75rem; }
  .pillar strong { font-size: 0.88rem; }
  .pillar span   { font-size: 0.75rem; line-height: 1.4; display: block; }
  .about-text .btn-gold {
    width: 100%; max-width: 320px;
    text-align: center;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 380px) {
  #about { padding: 3.25rem 0.85rem; }
  .about-visual { max-width: 100%; gap: 0.5rem; }
  .about-stat { padding: 0.5rem 0.55rem; }
  .about-stat strong { font-size: 1.15rem; }
  .about-stat span   { font-size: 0.56rem; }
  .craft-pillars { margin: 1.2rem 0 1.6rem; }
}
