/* ============================================================
   SHANTILAL JAMNADAS JEWELLERS — Since 1920
   Heritage Luxury aesthetic · Ivory cream + Purple + Burnished gold
   ============================================================ */

:root {
  /* Brand */
  --purple: #6B2C91;
  --purple-deep: #4a1e66;
  --purple-light: #8b4bb0;

  /* Gold / Accent (tuned for light backgrounds) */
  --gold: #a07c3f;
  --gold-bright: #d4af6a;
  --gold-deep: #75561f;

  /* Neutrals (ivory heritage palette) */
  --bg: #faf6ee;
  --bg-2: #f3ede0;
  --bg-3: #ede5d2;
  --surface: #ffffff;
  --line: rgba(74, 30, 102, 0.12);
  --line-strong: rgba(160, 124, 63, 0.45);

  /* Text */
  --text: #2a1f33;
  --text-soft: #5a4c5f;
  --text-muted: #8d8293;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 2px;
  --radius-lg: 6px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- Reset -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* -------- Typography utility -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

em { font-style: italic; color: var(--gold); font-weight: 400; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 238, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.nav--scrolled {
  background: rgba(250, 246, 238, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(74, 30, 102, 0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo img {
  height: 54px;
  width: auto;
  transition: transform .3s var(--ease);
}
.nav__logo:hover img { transform: scale(1.05); }
.nav__links {
  display: flex;
  gap: 38px;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav__links a {
  position: relative;
  color: var(--text-soft);
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 90px 32px 40px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(107, 44, 145, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(160, 124, 63, 0.1), transparent 70%),
    linear-gradient(180deg, #faf6ee 0%, #f3ede0 100%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(160, 124, 63, 0.35), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(107, 44, 145, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 45% 85%, rgba(160, 124, 63, 0.3), transparent),
    radial-gradient(1px 1px at 85% 25%, rgba(107, 44, 145, 0.28), transparent);
  background-size: 400px 400px;
  opacity: 0.7;
  pointer-events: none;
}

.hero__ornament {
  position: absolute;
  width: 220px; height: 220px;
  border: 1px solid var(--line-strong);
  pointer-events: none;
}
.hero__ornament--tl {
  top: 110px; left: 40px;
  border-right: none; border-bottom: none;
}
.hero__ornament--tl::before,
.hero__ornament--tl::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.hero__ornament--tl::before { top: -1px; left: -1px; width: 40px; height: 1px; }
.hero__ornament--tl::after { top: -1px; left: -1px; width: 1px; height: 40px; }

.hero__ornament--br {
  bottom: 40px; right: 40px;
  border-left: none; border-top: none;
}
.hero__ornament--br::before,
.hero__ornament--br::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.hero__ornament--br::before { bottom: -1px; right: -1px; width: 40px; height: 1px; }
.hero__ornament--br::after { bottom: -1px; right: -1px; width: 1px; height: 40px; }

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 920px;
  animation: heroFade 1.4s var(--ease) both;
}

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

.hero__established {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.hero__established .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__title span { display: block; }
.hero__title-serif { color: var(--text); }
.hero__title-accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-size: 1.15em;
  position: relative;
  display: inline-block !important;
  padding: 0 0.15em;
}

.hero__tagline {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 300;
}

.hero__cta-group {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease);
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(107, 44, 145, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(107, 44, 145, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--bg);
}

.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease);
}
.stat.in { opacity: 1; transform: translateY(0); }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num span {
  font-size: 0.55em;
  color: var(--purple-light);
  margin-left: 2px;
}
.stat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 8px;
}
.stat__divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .9s var(--ease);
}
.section-head.in { opacity: 1; transform: translateY(0); }
.section-head--center { text-align: center; }
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

.section-head__eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  padding-left: 48px;
}
.section-head__eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 36px; height: 1px;
  background: var(--gold);
}
.section-head--center .section-head__eyebrow { padding: 0 60px; }
.section-head--center .section-head__eyebrow::before { left: 0; }
.section-head--center .section-head__eyebrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 36px; height: 1px;
  background: var(--gold);
}

.section-head__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  max-width: 700px;
}
.section-head--center .section-head__title { margin: 0 auto; }
.section-head__sub {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 580px;
  margin-top: 20px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   HERITAGE / ABOUT
   ============================================================ */
.heritage {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
}
.heritage::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.heritage__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.heritage__text > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease);
}
.heritage__text > *.in { opacity: 1; transform: translateY(0); }
.heritage__text > *:nth-child(2).in { transition-delay: .1s; }
.heritage__text > *:nth-child(3).in { transition-delay: .2s; }
.heritage__text > *:nth-child(4).in { transition-delay: .3s; }

.heritage__lead {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 24px;
}
.heritage__text p {
  color: var(--text-soft);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.heritage__values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.value:last-child { border-bottom: 1px solid var(--line); }

.value__icon {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
  min-width: 32px;
}
.value__text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.value__text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Heritage visual card */
.heritage__visual {
  display: flex; justify-content: center;
}
.heritage__card {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at top, rgba(107, 44, 145, 0.12), transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #f3ede0 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 50px rgba(74, 30, 102, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: all 1.2s var(--ease);
}
.heritage__card.in { opacity: 1; transform: translateY(0) scale(1); }
.heritage__card::before,
.heritage__card::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
}
.heritage__card::before { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.heritage__card::after { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.heritage__year {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.heritage__decor {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 24px;
  position: relative;
}
.heritage__decor::after {
  content: '◆';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: #ffffff;
  padding: 0 10px;
  font-size: 10px;
}
.heritage__card-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}
.heritage__signature {
  margin-top: 28px;
  color: var(--purple-light);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections {
  padding: 40px 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px);
  position: relative;
  box-shadow: 0 4px 18px rgba(74, 30, 102, 0.05);
  transition: all .6s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.collection-card.in { opacity: 1; transform: translateY(0); }
.collection-card:nth-child(2).in { transition-delay: .1s; }
.collection-card:nth-child(3).in { transition-delay: .2s; }
.collection-card:nth-child(4).in { transition-delay: .3s; }

.collection-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74, 30, 102, 0.15);
}

.collection-card__visual {
  aspect-ratio: 1 / 1.1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-3);
}

.collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42, 31, 51, 0.15));
  pointer-events: none;
  opacity: 0.6;
  transition: opacity .5s var(--ease);
}

.collection-card:hover .collection-card__img {
  transform: scale(1.08);
}

.collection-card:hover .collection-card__overlay {
  opacity: 0.3;
}

.collection-card__body {
  padding: 28px 24px 30px;
}
.collection-card__body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.collection-card__body p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 300;
}
.collection-card__meta {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.collections__note {
  margin-top: 32px;
  text-align: center;
}
.collections__note p {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: 40px 0;
  background: var(--bg);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.visit__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px 25px;
  position: relative;
  transition: all .35s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.visit-card.in { opacity: 1; transform: translateY(0); }
.visit-card:nth-child(2).in { transition-delay: .1s; }
.visit-card:nth-child(3).in { transition-delay: .2s; }

.visit-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.visit-card__icon {
  font-size: 22px;
  margin-bottom: 12px;
  filter: grayscale(0.3);
}
.visit-card h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.visit-card p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.visit-card a { color: var(--text); border-bottom: 1px dotted var(--line-strong); }
.visit-card a:hover { color: var(--gold); }
.visit-card__closed { color: var(--text-muted) !important; font-size: 14px !important; }

.visit__map {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  background: var(--bg-2);
  position: relative;
}
.visit__map iframe {
  filter: grayscale(0.15) contrast(1.02);
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  padding: 40px 0 80px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107, 44, 145, 0.1), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 45px 40px 60px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(74, 30, 102, 0.08);
  position: relative;
}
.contact-cta__visual {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 25px rgba(74, 30, 102, 0.1);
}
.contact-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-cta__inner::before,
.contact-cta__inner::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.contact-cta__inner::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.contact-cta__inner::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.contact-cta__ornament {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-cta p {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 36px;
  font-weight: 300;
}
.contact-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER (Meta verification critical)
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  color: var(--text);
  padding: 90px 0 40px;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}
.footer__tagline {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__about {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* Business Details (dl) */
.footer__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.footer__details dt {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  font-weight: 500;
}
.footer__details dd {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}
.footer__gst {
  font-family: 'Courier New', monospace;
  color: var(--gold) !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(212, 175, 106, 0.08);
  border-left: 2px solid var(--gold);
  display: inline-block;
  margin-top: 2px;
}

/* Address */
.footer address {
  color: var(--text-soft);
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.8;
}

/* Contact list */
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__label {
  font-size: 10.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.footer__contact a, .footer__contact span:not(.footer__label) {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
  transition: color .2s;
}
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  color: var(--text-muted);
  font-size: 13px;
}
.footer__legal {
  font-family: 'Courier New', monospace;
  font-size: 12px !important;
  letter-spacing: 0.04em;
}
.footer__links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.footer__links a {
  color: var(--text-soft);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__links span { color: var(--text-muted); }

/* ============================================================
   LEGAL PAGES (Terms, Privacy)
   ============================================================ */
.legal-page {
  padding: 140px 0 100px;
  background: var(--bg);
  min-height: 100vh;
}
.legal-page__head {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.legal-page__eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.legal-page__updated {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text);
  font-weight: 500;
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
  letter-spacing: 0.01em;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 22px;
  padding: 0;
}
.legal-content li { margin-bottom: 8px; }
.legal-content a {
  color: var(--gold);
  border-bottom: 1px dotted var(--line-strong);
}
.legal-content a:hover { color: var(--gold-deep); }
.legal-content strong { color: var(--text); font-weight: 600; }

.legal-callout {
  margin: 28px 0;
  padding: 20px 24px;
  background: #ffffff;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(74, 30, 102, 0.05);
}
.legal-callout p { margin: 0; color: var(--text); font-size: 14.5px; }

@media (max-width: 768px) {
  .legal-page { padding: 110px 0 70px; }
  .legal-content { font-size: 15px; }
  .legal-content h2 { font-size: 1.45rem; margin-top: 34px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__links { justify-content: center; }
}

/* ============================================================
   REVEAL ANIMATION (generic)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .visit__grid { grid-template-columns: 1fr; gap: 32px; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__ornament { width: 140px; height: 140px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .nav__inner { padding: 12px 22px; gap: 16px; }
  .nav__links { display: none; }
  .nav__logo img { height: 42px; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  .hero { padding: 90px 22px 40px; min-height: 100vh; max-height: 100vh; }
  .hero__ornament { display: none; }
  .hero__established { margin-bottom: 18px; letter-spacing: 0.25em; font-size: 11px; }
  .hero__established .line { width: 30px; }
  .hero__title { margin-bottom: 16px; }
  .hero__tagline { font-size: 15px; margin-bottom: 24px; }
  .hero__cta-group { flex-direction: column; align-items: stretch; margin-bottom: 32px; }
  .btn { padding: 14px 22px; }
  .hero__stats { gap: 20px; }
  .stat__num { font-size: 1.9rem; }
  .stat__divider { display: none; }

  .collections, .visit { padding: 80px 0; }
  .contact-cta { padding: 70px 0; }
  .contact-cta__inner { padding: 48px 26px; }

  .section-head__title { font-size: 2rem; }

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

  .visit__map { height: 340px; }

  .footer { padding: 70px 0 30px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 2.4rem; }
  .hero__stats { flex-direction: column; gap: 20px; }
}
