/* ========== Ganpati Jewellers — Luxury Dark / Gold ========== */
:root {
  --bg: #0c0a09;
  --bg-elevated: #141110;
  --bg-card: #1a1512;
  --bg-cream: #f3ebe0;
  --gold: #d4af37;
  --gold-bright: #e8c868;
  --gold-dim: #a8892d;
  --maroon: #3d0b0b;
  --maroon-soft: #5a1818;
  --text: #f5f0e8;
  --text-muted: #b8aea0;
  --border: rgba(212, 175, 55, 0.35);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --radius: 2px;
  --header-h: 7.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.section-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2,
.hero-title,
.hallmark-hero-content h2,
.lab-copy h2,
.about-copy h2,
.contact-info h2,
.split-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--gold-bright);
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 36ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-gold:hover {
  background: rgba(212, 175, 55, 0.12);
}

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
  color: #1a1208;
  border-color: var(--gold);
  font-weight: 600;
}

.btn-gold-solid:hover {
  filter: brightness(1.08);
}

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #1a1208;
}

.btn-full {
  width: 100%;
}

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

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: 0.65rem 0;
}

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.top-contact {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.top-phone {
  display: block;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.15rem;
}

.top-actions {
  display: flex;
  gap: 0.6rem;
}

.main-nav {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: 0.55rem 0;
}

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.75rem;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61, 11, 11, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212, 175, 55, 0.08), transparent),
    linear-gradient(160deg, #0c0a09 0%, #1a100c 45%, #0c0a09 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 40% 40% 0 0 / 60% 60% 0 0;
  pointer-events: none;
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero-brands {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}

.hero-brands .dot {
  color: var(--gold);
  margin: 0 0.4rem;
}

.hero-tags {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.45s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.55s forwards;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  pointer-events: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SPLIT INTRO ========== */
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.split-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
}

.split-card--alt {
  background: linear-gradient(180deg, #160e0e 0%, var(--bg-elevated) 100%);
  border-right: none;
}

.split-media {
  overflow: hidden;
  background: var(--bg-card);
}

.split-media img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.split-card:hover .split-media img {
  transform: scale(1.04);
}

.split-body {
  padding: 2rem 2.25rem 2.5rem;
}

.split-body h2 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.split-body p {
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

/* ========== HALLMARK HERO ========== */
.hallmark-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hallmark-hero-bg {
  position: absolute;
  inset: 0;
}

.hallmark-hero-bg img {
  width: 100%;
  height: 100%;
  filter: brightness(0.35) saturate(0.9);
}

.hallmark-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.55) 55%, rgba(61, 11, 11, 0.4) 100%);
}

.hallmark-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hallmark-hero-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

/* Features */
.features-row {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 2.5rem 0;
}

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

.feature-item {
  text-align: center;
  padding: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  color: var(--gold);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services */
.services-block {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse at top, rgba(61, 11, 11, 0.25), transparent 55%),
    var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem 1.1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Process timeline */
.process-overview {
  padding: 4rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.process-timeline li {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.process-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  background: var(--bg);
}

.process-timeline h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.process-timeline p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lab detail */
.lab-detail {
  padding: 4.5rem 0 0;
}

.lab-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.lab-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.lab-copy > p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.lab-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lab-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.lab-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.lab-media {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 320px;
  background: var(--bg-card);
}

.lab-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #2a1010, #1a0c0c 40%, #120a08);
  border-block: 1px solid var(--border);
}

.stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Detailed process */
.detailed-process {
  padding: 4.5rem 0;
  background: var(--bg);
}

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

.process-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: border-color 0.3s;
}

.process-card:hover {
  border-color: var(--gold);
}

.process-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

.process-photo img {
  width: 100%;
  height: 100%;
}

.process-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(12, 10, 9, 0.85);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  padding: 1rem 1.15rem 0.35rem;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0 1.15rem 1.25rem;
}

/* ========== CATALOG ========== */
.catalog {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, #120e0c 0%, #0c0a09 100%);
  border-block: 1px solid var(--border);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.filter-btn,
.g-filter-btn {
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.g-filter-btn:hover,
.filter-btn.active,
.g-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
}

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

.product-card {
  background: var(--bg-cream);
  border: 1px solid var(--gold-dim);
  color: #2a2218;
  text-align: center;
  padding: 1rem 1rem 1.25rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.product-card.is-hidden,
.gallery-item.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.product-img {
  aspect-ratio: 1;
  background: #e8dfd2;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(168, 137, 45, 0.35);
}

.product-img img {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #3d2e14;
  margin-bottom: 0.25rem;
}

.product-card .weight {
  font-size: 0.82rem;
  color: #7a6540;
}

/* ========== ABOUT ========== */
.about {
  padding: 4.5rem 0;
  background:
    linear-gradient(120deg, rgba(61, 11, 11, 0.35), transparent 50%),
    var(--bg-elevated);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}

.about-copy > p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.pillar {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-media {
  border: 1px solid var(--border);
  min-height: 360px;
  overflow: hidden;
  background: var(--bg-card);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* ========== LOCATIONS ========== */
.locations {
  padding: 4.5rem 0;
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.location-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
}

.location-photo {
  min-height: 220px;
  background: var(--bg-card);
}

.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.location-body {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.location-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.loc-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.loc-owner {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.loc-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.35rem 0;
}

.loc-phone {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.location-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 4.5rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--bg-card);
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ========== CONTACT ========== */
.contact {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(61, 11, 11, 0.4), transparent 45%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.75rem;
}

.contact-block {
  margin-bottom: 1.5rem;
}

.contact-block h3,
.social h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-block p,
.contact-block a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-block a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: background 0.25s, color 0.25s;
}

.social-links a:hover {
  background: var(--gold);
  color: #1a1208;
}

.contact-form-wrap {
  background: var(--bg-cream);
  border: 1px solid var(--gold-dim);
  padding: 2rem 1.75rem;
  color: #2a2218;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #3d2e14;
  margin-bottom: 1.35rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6540;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(168, 137, 45, 0.4);
  color: #2a2218;
  outline: none;
  transition: border-color 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dim);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-ganesha {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
}

.contact-ganesha img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #080706;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-inner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner a[href*="shreeganpatijewellers"] {
  color: var(--gold);
}

.footer-inner a[href*="shreeganpatijewellers"]:hover {
  text-decoration: underline;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-cream);
  color: #2a2218;
  border: 1px solid var(--gold);
  padding: 0.9rem 1.4rem;
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease);
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Image placeholders */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #1f1814 0%, #2a1f18 50%, #1a1410 100%);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  color: var(--gold-dim);
  text-align: center;
  padding: 1rem;
}

.img-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  word-break: break-all;
  max-width: 90%;
  opacity: 0.85;
}

.img-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner,
  .lab-detail-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-ganesha {
    display: none;
  }

  .location-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 4rem;
  }

  .top-contact {
    display: none;
  }

  .top-actions .btn-gold {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .split-intro {
    grid-template-columns: 1fr;
  }

  .split-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .features-grid,
  .process-timeline,
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline li:not(:last-child)::after {
    display: none;
  }

  .services-grid,
  .process-grid,
  .product-grid,
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .services-grid,
  .process-grid,
  .product-grid,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* Metal rates section */
.rates-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #1a0e0c 0%, #120a08 100%);
  border-block: 1px solid var(--border);
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 1.25rem;
  justify-content: center;
}
.rate-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.rate-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.rate-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gold-bright);
  line-height: 1.2;
}
.rate-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.rates-updated {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .rates-grid { grid-template-columns: 1fr; }
}
