/* ==========================================================================
   M. DHARMADHIKARI JEWELLERS — STYLESHEET
   Pure CSS3. No frameworks.

   Design tokens
   -------------
   Colour:  cream background, deep ink-brown text, antique gold primary,
            deeper gold for hover/emphasis, soft maroon used sparingly
            as a traditional jewellery accent.
   Type:    Cormorant Garamond (display headings), Marcellus (brand
            wordmark + eyebrows, wide-tracked small caps), Jost (body).
   Motif:   a recurring gold "gem + chain" divider and a light-sweep
            shimmer used on hover, echoing how a cut stone catches light.
   ========================================================================== */

:root {
  --cream:        #FBF6EA;
  --cream-alt:     #F3EAD3;
  --white:        #FFFFFF;
  --ink:          #2A2013;
  --ink-soft:     #55432B;
  --gold:         #C9A84C;
  --gold-deep:    #9C7A29;
  --gold-light:   #E9D9A6;
  --maroon:       #5E1A24;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-word:    'Marcellus', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow-soft: 0 12px 30px rgba(42, 32, 19, 0.08);
  --shadow-lift: 0 18px 40px rgba(42, 32, 19, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body, h1, h2, h3, p, figure, blockquote, ul, ol, form, address { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); line-height: 1.15; }

.eyebrow {
  font-family: var(--font-word);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.section-head { max-width: 640px; margin: 0 auto 3.2rem; text-align: center; padding: 0 1.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 0.9rem; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-word);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold-deep);
}
.btn-ghost:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); }
.btn-nav-cta {
  background: var(--ink);
  color: var(--gold-light);
  padding: 0.65rem 1.4rem;
  font-size: 0.74rem;
}
.btn-nav-cta:hover { background: var(--gold-deep); color: var(--white); }
.btn-cta-banner {
  background: var(--ink);
  color: var(--gold-light);
}
.btn-cta-banner:hover { background: var(--white); color: var(--gold-deep); transform: translateY(-2px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-light);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex: 1; min-width: 0; }
.brand-mark {
  height: 110px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-word { display: flex; flex-direction: column; line-height: 1.1; overflow: hidden; }
.brand-word-main { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; white-space: nowrap; }
.brand-word-sub { font-family: var(--font-word); font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold-deep); }

.site-nav ul { display: flex; gap: 2.1rem; }
.site-nav a {
  font-family: var(--font-word);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.25s ease;
}
.site-nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  flex-shrink: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('image/h2.png');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 9rem 1.5rem 10rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
   position: relative;
  z-index: 2;
}
.hero .eyebrow { color: var(--gold-light); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin: 0.6rem 0 1.3rem;
}
.hero-copy h1 span { color: var(--gold-light); font-style: italic; }
.hero-tagline { max-width: 46ch; color: #E9E2D0; font-size: 1.08rem; margin-bottom: 2.1rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--white); border-color: var(--gold-light); }
.hero .btn-ghost:hover { background: var(--gold-light); color: var(--ink); }

.hero-visual { display: none; }


.divider-line { stroke: var(--gold-light); stroke-width: 1; }
.divider-gem { fill: var(--gold); }
.divider-dot { fill: var(--gold-light); }
/* ==========================================================================
   ABOUT
   ========================================================================== */

.about { padding: 5rem 1.5rem; background: var(--cream-alt); }
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}
.about-visual { max-width: 420px; margin: 0 auto; }
.about-frame {
  width: 100%;
  aspect-ratio: 4 / 6;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gold-light);
}
.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1.2rem; }
.about-copy p
/* ==========================================================================
   JEWELLERY CATEGORIES
   ========================================================================== */
.jewellery { padding: 5.5rem 1.5rem; }
.jewellery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.jcard {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.jcard::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(201, 168, 76, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.jcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--gold-deep); }
.jcard:hover::before { left: 130%; }

.jcard-icon { display: inline-flex; margin-bottom: 1.2rem; }
.jcard-icon svg { width: 44px; height: 44px; }
.ji-a { fill: none; stroke: var(--gold); stroke-width: 2; }
.ji-b { fill: none; stroke: var(--gold-deep); stroke-width: 2; stroke-linecap: round; }
.ji-ring { fill: none; stroke: var(--gold); stroke-width: 4; }

.jcard h3 { font-size: 1.25rem; margin-bottom: 0.55rem; }
.jcard p { color: var(--ink-soft); font-size: 0.95rem; }


/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  padding: 4rem 1.5rem;
  margin-top: 3rem;
}
.cta-banner-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}
.cta-banner-inner h2 { color: var(--white); font-size: clamp(1.6rem, 3.6vw, 2.3rem); text-shadow: 0 1px 12px rgba(42,32,19,0.25); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: 5.5rem 1.5rem; }
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3, .contact-form h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info address { font-style: normal; color: var(--ink-soft); margin-bottom: 1rem; }
.contact-line { margin-bottom: 0.5rem; }
.contact-line a:hover { color: var(--gold-deep); }
.contact-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.6rem 0; }
.local-seo-note { color: var(--ink-soft); font-size: 0.9rem; border-top: 1px solid var(--gold-light); padding-top: 1.2rem; margin-top: 0.5rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-family: var(--font-word);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0.9rem 0 0.4rem;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}
.btn-form-submit { margin-top: 1.4rem; align-self: flex-start; }
.form-status { margin-top: 0.9rem; font-size: 0.88rem; min-height: 1.2em; }
.form-status.success { color: #3f6b3a; }
.form-status.error { color: var(--maroon); }

.contact-map {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--cream-alt); padding-top: 4rem; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand p { color: #C9BB9E; font-size: 0.92rem; margin-top: 1rem; max-width: 32ch; }
.brand-footer .brand-word-main { color: var(--cream); }
.footer-col h4 {
  font-family: var(--font-word);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: #C9BB9E; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; color: #C9BB9E; font-size: 0.92rem; margin-bottom: 0.6rem; }

.footer-bottom {
  border-top: 1px solid rgba(233, 217, 166, 0.15);
  padding: 1.4rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: #A6987C;
}

.footer-logo {
  height: 170px;
  width: auto;
  object-fit: contain;
}
/* ==========================================================================
   SCROLL REVEAL (progressive enhancement — see script.js)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 480px)  {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-actions { justify-content: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-visual { order: 0; max-width: 260px; margin: 0 auto; }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-frame { max-width: 280px; margin: 0 auto; }
  .about-copy p { margin-left: auto; margin-right: auto; }
  .about-stats { justify-content: center; }

  .jewellery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--gold-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .site-nav.is-open { max-height: 360px; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.5rem; }
  .site-nav li { border-bottom: 1px solid var(--cream-alt); }
  .site-nav a { display: block; padding: 0.9rem 0; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .about-stats { gap: 1.6rem; }
}

@media (max-width: 480px) {
  .jewellery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .header-inner { gap: 0.8rem; }
  .brand-word-main { font-size: 1rem; }
}
