:root {
  --bg: #0c0a09;
  --bg-soft: #161311;
  --text: #f9f3ea;
  --muted: #d8cfc3;
  --accent: #d2a85b;
  --accent-soft: #f0d6a7;
  --card: #1d1814;
  --border: rgba(210, 168, 91, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #2a1f15, var(--bg) 40%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.hero {
  min-height: 90vh;
  position: relative;
  background:
    linear-gradient(rgba(8, 6, 5, 0.72), rgba(8, 6, 5, 0.8)),
    url("../../necklaces/necklaces_10.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  text-decoration: none;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--accent-soft);
}

.hero-content {
  padding: 8rem 0 5rem;
  max-width: 700px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-soft);
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 0.8rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.hero-text {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  text-decoration: none;
  color: #211609;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
}

.section {
  padding: 4.5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.intro-grid p {
  color: var(--muted);
}

.intro-grid img {
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.section-head {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-head h2 {
  margin-bottom: 0;
}

.category {
  margin-bottom: 2.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), transparent);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
}

.category-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  gap: 1rem;
}

.category-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.story {
  background:
    linear-gradient(rgba(11, 9, 8, 0.8), rgba(11, 9, 8, 0.8)),
    url("../../earrings/earrings_2.jpg") center/cover fixed no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story p {
  max-width: 65ch;
  color: var(--muted);
}

.footer {
  padding: 4rem 0;
  text-align: center;
}

.footer h2 {
  margin-bottom: 0.2rem;
}

.note {
  color: var(--muted);
}

.copyright {
  margin-top: 2rem;
  font-size: 0.86rem;
  color: #b3a89b;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-content {
    padding-top: 4.5rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
