/* Golden Jewellers — static interim site (matches Next classic-maroon theme) */
:root {
  --cream: #fbf6ec;
  --warm: #f2e6cf;
  --maroon: #4a1018;
  --maroon-deep: #2a0c10;
  --maroon-night: #260a0e;
  --ink: #3a1014;
  --cocoa: #6b5742;
  --stone: #9a856b;
  --gold: #e8c77e;
  --gold-deep: #c9a24a;
  --brass: #b08d3c;
  --cream-line: #e6d6bc;
  --on-brand: #f3e2bd;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Jost, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Top bar */
.topbar {
  background: var(--maroon);
  color: var(--gold);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 9px 0;
}

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

.topbar a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.topbar a:hover {
  opacity: 1;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #7fd17f;
  margin-right: 8px;
  vertical-align: middle;
}

/* Header */
.site-header {
  background: rgba(251, 246, 236, 0.92);
  border-bottom: 1px solid var(--cream-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink);
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold-deep);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--maroon);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 34px -16px rgba(232, 199, 126, 0.6);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
}

.btn-outline {
  border-color: rgba(232, 199, 126, 0.55);
  color: var(--on-brand);
  background: transparent;
}

.btn-outline-dark {
  border-color: rgba(74, 16, 24, 0.25);
  color: var(--maroon);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--maroon);
}

.btn-wa {
  background: #128c7e;
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--cream-line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--maroon);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--maroon-night);
  color: var(--cream);
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(31, 8, 11, 0.94) 0%,
    rgba(38, 10, 14, 0.86) 34%,
    rgba(42, 12, 16, 0.6) 62%,
    rgba(42, 12, 16, 0.4) 100%
  );
}

.hero-shine {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #7a5a1e, #e8c77e 45%, #b08d3c 70%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-deep);
}

.hero h1 {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
}

.hero p {
  margin: 26px 0 0;
  max-width: 480px;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(243, 226, 189, 0.88);
}

.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stats {
  margin-top: 3.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.stat {
  padding: 0 38px;
}

.stat:first-child {
  padding-left: 0;
  padding-right: 38px;
}

.stat + .stat {
  border-left: 1px solid rgba(232, 199, 126, 0.26);
}

.stat-big {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.stat-label {
  margin-top: 7px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(232, 199, 126, 0.7);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3.25rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  color: var(--brass);
}

.section-head h2 {
  margin: 0.85rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.15;
}

.section-head p {
  margin: 0.9rem 0 0;
  color: var(--cocoa);
  font-size: 1.02rem;
}

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

.card {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
}

.card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--maroon);
}

.card p {
  margin: 0.65rem 0 0;
  color: var(--cocoa);
  font-size: 0.98rem;
}

.band {
  background: var(--maroon-deep);
  color: var(--cream);
}

.band .section-head h2 {
  color: var(--cream);
}

.band .section-head p {
  color: rgba(243, 226, 189, 0.8);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.split-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--cream-line);
  min-height: 280px;
  background: var(--warm);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(160deg, var(--maroon-night), var(--maroon));
  color: var(--cream);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: rgba(243, 226, 189, 0.85);
}

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--cocoa);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose p + p {
  margin-top: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-line);
  color: var(--cocoa);
}

.contact-list strong {
  display: block;
  color: var(--maroon);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
}

.note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--warm);
  border-radius: 14px;
  color: var(--cocoa);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--maroon-night);
  color: var(--cream);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  margin: 0.85rem 0 0;
  color: rgba(231, 207, 160, 0.78);
  max-width: 22rem;
  line-height: 1.7;
}

.footer-col h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--cream);
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, #e8c77e, #7a5a1e 70%, transparent);
}

.footer-col ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: rgba(231, 207, 160, 0.88);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 199, 126, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(231, 207, 160, 0.65);
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .grid-3,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav,
  .header-actions .btn-wa,
  .topbar-inner > span:last-child {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav.is-open {
    display: block;
    border-top: 1px solid var(--cream-line);
    padding: 0.75rem 0 1rem;
  }

  .mobile-nav a {
    display: block;
    padding: 0.7rem 0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12.5px;
    color: var(--ink);
    border-bottom: 1px solid var(--cream-line);
  }

  .stat {
    flex: 1;
    padding: 0 0.5rem !important;
    text-align: center;
  }

  .stat-big {
    font-size: 26px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 3rem 0;
  }
}
