:root {
  --ink: #251b18;
  --muted: #6d5d54;
  --paper: #fffaf3;
  --ivory: #f6efe4;
  --gold: #b98a32;
  --gold-deep: #77551f;
  --emerald: #0f5d4f;
  --rose: #a84f57;
  --line: rgba(37, 27, 24, 0.14);
  --shadow: 0 24px 70px rgba(37, 27, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.utility-bar {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 9px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 0.82rem;
}

.utility-bar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--emerald);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(185, 138, 50, 0.12);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--emerald);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(610px, 86vh, 820px);
  display: grid;
  align-items: center;
  padding: clamp(32px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.95) 0%, rgba(255, 250, 243, 0.78) 36%, rgba(255, 250, 243, 0.22) 72%);
}

.hero-content {
  max-width: 660px;
}

.catalog-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.catalog-strip a {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.catalog-strip a:last-child {
  border-right: 0;
}

.catalog-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
}

.catalog-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 8.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-content > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.12rem;
}

.hero-actions,
.visit-actions,
.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--emerald);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.intro-band,
.showcase-band,
.visit-section,
.category-hero,
.category-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-band,
.category-story {
  background: var(--ivory);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-grid article,
.showcase-panel,
.category-note,
.detail-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(37, 27, 24, 0.07);
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--gold-deep);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-wrap {
  padding: clamp(52px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.collection-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(15, 93, 79, 0.92), rgba(37, 27, 24, 0.72)),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.34), transparent 20%),
    linear-gradient(135deg, var(--gold), var(--rose));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collection-card:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(119, 85, 31, 0.9), rgba(37, 27, 24, 0.74)),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.35), transparent 20%),
    linear-gradient(135deg, var(--rose), var(--emerald));
}

.collection-card span {
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.collection-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-rail article {
  min-height: 360px;
  padding: clamp(42px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.82)),
    url("assets/showroom-hero.png") center / cover;
}

.feature-rail article:nth-child(2) {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 93, 79, 0.92), rgba(37, 27, 24, 0.84)),
    url("assets/showroom-hero.png") right center / cover;
}

.feature-rail article:nth-child(2) p,
.feature-rail article:nth-child(2) .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-band {
  color: #fff;
  background: var(--emerald);
}

.showcase-band p,
.showcase-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-panel {
  color: var(--ink);
}

.showcase-panel p {
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-panel li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.visit-section {
  align-items: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.category-hero {
  align-items: center;
  min-height: 520px;
}

.category-visual {
  min-height: 380px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.8), transparent 8%),
    radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.42), transparent 12%),
    linear-gradient(145deg, rgba(15, 93, 79, 0.92), rgba(119, 85, 31, 0.82)),
    url("assets/showroom-hero.png") center / cover;
  box-shadow: var(--shadow);
}

.category-visual.rings,
.category-visual.bracelets,
.category-visual.coins {
  background-position: 72% 50%;
}

.category-visual.earrings,
.category-visual.pendants,
.category-visual.mangalsutras {
  background-position: 58% 50%;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.category-list a {
  padding: 13px 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
}

.category-list a.active {
  color: #fff;
  background: var(--emerald);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-card strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer.category-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .intro-band,
  .showcase-band,
  .visit-section,
  .category-hero,
  .category-story {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-strip,
  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .utility-bar {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 680px;
    padding-top: 92px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.86) 52%, rgba(255, 250, 243, 0.25) 100%);
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .collection-grid,
  .catalog-strip,
  .feature-rail,
  .category-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
