/* Handa Bangles — One Gram Gold Jewellery, Bareilly
   Design system: deep maroon + antique gold on warm ivory */

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

:root {
  --maroon-950: #350810;
  --maroon-900: #470c17;
  --maroon-800: #611524;
  --maroon-700: #7c1d30;
  --gold-600: #a9791f;
  --gold-500: #c39a35;
  --gold-400: #d8b95c;
  --gold-300: #e9d493;
  --gold-100: #f6ecd2;
  --cream-50: #fbf6ec;
  --cream-100: #f4e8d2;
  --cream-200: #ecdab7;
  --ink-900: #241a13;
  --ink-700: #4b3b2d;
  --ink-500: #7a6a58;
  --white: #fffdf8;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;

  --shadow-soft: 0 18px 44px -20px rgba(53, 8, 16, 0.35);
  --shadow-card: 0 10px 30px -14px rgba(53, 8, 16, 0.28);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--maroon-950);
  margin: 0 0 0.5em;
  line-height: 1.18;
  font-weight: 600;
}

p { line-height: 1.7; color: var(--ink-700); margin: 0 0 1em; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--maroon-950);
  box-shadow: 0 10px 26px -10px rgba(169, 121, 31, 0.6);
}
.btn-gold:hover { box-shadow: 0 14px 30px -10px rgba(169, 121, 31, 0.75); }

.btn-outline {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(251, 246, 236, 0.45);
}
.btn-outline:hover { background: rgba(251, 246, 236, 0.1); border-color: var(--cream-50); }

.btn-maroon {
  background: var(--maroon-900);
  color: var(--cream-50);
}
.btn-maroon:hover { background: var(--maroon-950); }

.btn-whatsapp {
  background: #25d366;
  color: #06371c;
  box-shadow: 0 10px 26px -10px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover { box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.7); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(53, 8, 16, 0.96);
  padding: 12px 0;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream-50);
}
.brand .mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon-950);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.brand .sub {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream-100);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--gold-300); }
.nav-links a.active { color: var(--gold-300); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(36,7,12,0.55), rgba(36,7,12,0.86)),
    url("https://images.unsplash.com/photo-1611598935678-c88dca238fce?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
  color: var(--cream-50);
  padding: 150px 0 90px;
}
.hero-inner { max-width: 640px; }
.hero .eyebrow { color: var(--gold-300); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero h1 {
  color: var(--cream-50);
  font-size: clamp(36px, 5.4vw, 58px);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
}
.hero p.lead {
  color: var(--cream-100);
  font-size: 17.5px;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(251, 246, 236, 0.08);
  border: 1px solid rgba(216, 185, 92, 0.4);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  backdrop-filter: blur(4px);
}
.rating-badge .g-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: #4285F4;
  flex-shrink: 0;
}
.rating-badge .stars { color: var(--gold-400); font-size: 14px; letter-spacing: 1px; }
.rating-badge strong { color: var(--cream-50); font-size: 15px; display: block; }
.rating-badge span.small { color: var(--gold-200, var(--gold-300)); font-size: 12.5px; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-cream { background: var(--cream-50); }
.section-tint { background: var(--cream-100); }
.section-dark {
  background: linear-gradient(160deg, var(--maroon-950), var(--maroon-800));
  color: var(--cream-100);
}
.section-dark h2, .section-dark h3 { color: var(--cream-50); }
.section-dark p { color: var(--cream-200); }
.section-dark .eyebrow { color: var(--gold-300); }

.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Why one-gram-gold ---------- */
.ogg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ogg-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.ogg-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ogg-photo:hover img { transform: scale(1.06); }

.ogg-points { display: grid; gap: 22px; margin-top: 28px; }
.ogg-point { display: flex; gap: 16px; }
.ogg-point .num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-600);
  border: 1px solid var(--gold-400);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ogg-point h4 { margin-bottom: 4px; font-size: 17px; }
.ogg-point p { margin: 0; font-size: 14.5px; }

/* ---------- Cards / product grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(53,8,16,0.32); }

.card-photo { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-photo img { transform: scale(1.08); }

.card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(53,8,16,0.82);
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.card-body { padding: 20px 22px 22px; }
.card-body h4 { font-size: 18px; margin-bottom: 6px; }
.card-body p { font-size: 13.5px; margin-bottom: 14px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-price { font-family: var(--serif); font-weight: 600; color: var(--maroon-800); font-size: 15px; }

/* Collection category preview cards (home) */
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover img { transform: scale(1.08); }
.collection-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,7,12,0) 40%, rgba(36,7,12,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
}
.collection-card h3 { color: var(--cream-50); font-size: 21px; margin-bottom: 4px; }
.collection-card span { color: var(--gold-300); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--cream-200);
  color: var(--ink-700);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--gold-400); color: var(--maroon-800); }
.filter-btn.active {
  background: var(--maroon-900);
  border-color: var(--maroon-900);
  color: var(--cream-50);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--maroon-800);
}
.trust-item span { font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-500); }

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold-400);
}
.review-stars { color: var(--gold-500); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p.quote { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-900); margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-950));
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; color: var(--ink-900); }
.reviewer span { font-size: 12px; color: var(--ink-500); }

.big-rating {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.big-rating .num { font-family: var(--serif); font-size: 64px; font-weight: 700; color: var(--gold-300); line-height: 1; }
.big-rating .stars-lg { color: var(--gold-400); font-size: 26px; letter-spacing: 4px; margin-bottom: 6px; }

.disclaimer-note {
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
  max-width: 560px;
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px dashed var(--cream-200);
}
.section-dark .disclaimer-note { border-top-color: rgba(233,212,147,0.25); color: var(--gold-100); opacity: 0.75; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.g-item { border-radius: 10px; overflow: hidden; position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.09); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(36,7,12,0.85));
  color: var(--cream-100);
  font-size: 12.5px;
  padding: 26px 14px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.g-item:hover .g-caption { opacity: 1; }

/* ---------- Image fallback ---------- */
.img-fallback {
  width: 100%; height: 100%;
  min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Visit / Contact ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px;
  margin-bottom: 20px;
}
.info-row { display: flex; gap: 16px; margin-bottom: 18px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.info-row h4 { font-size: 15.5px; margin-bottom: 4px; }
.info-row p { font-size: 14px; margin: 0; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--cream-100); color: var(--ink-700); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--maroon-800); }
.hours-table tr:last-child td { border-bottom: none; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: none;
  width: 100%;
  height: 340px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 34px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--cream-200);
  background: var(--cream-50);
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-900);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 90px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-950);
  color: var(--cream-200);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 46px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-grid p { font-size: 13.5px; color: var(--cream-200); opacity: 0.85; }
.footer-col h5 {
  font-family: var(--sans);
  color: var(--gold-300);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--cream-200); opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(251,246,236,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(244,232,210,0.55);
}
.footer-credit { font-size: 11.5px; color: rgba(216,185,92,0.45); letter-spacing: 0.02em; }
.footer-credit a { color: rgba(216,185,92,0.65); }
.footer-credit a:hover { color: var(--gold-300); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #06371c;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px -8px rgba(6, 55, 28, 0.55);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 150px 0 70px;
  background: linear-gradient(160deg, var(--maroon-950), var(--maroon-800));
  color: var(--cream-50);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; color: var(--gold-300); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero h1 { color: var(--cream-50); font-size: clamp(32px, 4.6vw, 48px); }
.page-hero p { color: var(--cream-200); max-width: 560px; margin: 14px auto 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  border-radius: 20px;
  padding: 56px 50px;
  text-align: center;
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(216,185,92,0.18), transparent 55%);
}
.cta-banner h2 { color: var(--cream-50); position: relative; }
.cta-banner p { color: var(--cream-200); position: relative; max-width: 480px; margin: 0 auto 30px; }
.cta-banner .hero-cta { justify-content: center; position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .ogg-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 76%; max-width: 320px;
    background: var(--maroon-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); box-shadow: -20px 0 50px rgba(0,0,0,0.35); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-gold { display: none; }
  section { padding: 68px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 130px 0 70px; min-height: unset; }
  .cta-banner { padding: 40px 24px; }
}

@media (max-width: 460px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
