/* Bijouelle — Elegant Jewellery Boutique */
/* Palette: Gold, Cream, Warm White, Charcoal */

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

:root {
  --gold: #b8952a;
  --gold-light: #d4af37;
  --gold-dark: #8a6d1b;
  --cream: #faf6ef;
  --warm-white: #fffdf8;
  --charcoal: #2c2c2c;
  --text: #3d3530;
  --text-light: #7a7068;
  --border: #e8e0d4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

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

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
}

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

/* ---- Header / Nav ---- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }


.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ---- Page Hero (inner pages) ---- */

.page-hero {
  padding: 4rem 0 3rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: var(--charcoal);
}

/* ---- Hero (homepage) ---- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: var(--cream);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Collections ---- */

.collections {
  padding: 6rem 0;
  background: var(--warm-white);
}

.collections.alt-bg {
  background: var(--cream);
}

.section-intro {
  max-width: 600px;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.collection-card {
  text-align: left;
}

.card-image {
  overflow: hidden;
  margin-bottom: 1.2rem;
  aspect-ratio: 5/6;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .card-image img {
  transform: scale(1.04);
}

.collection-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.collection-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.price-range {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 400;
}

/* ---- Featured Banner ---- */

.featured-banner {
  padding: 5rem 0;
  background: var(--charcoal);
  color: #fff;
}

.banner-content {
  max-width: 600px;
}

.banner-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.featured-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.featured-banner p {
  color: #c9c3bb;
  line-height: 1.8;
}

.featured-banner .btn-outline {
  margin-top: 1rem;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.featured-banner .btn-outline:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

/* ---- About ---- */

.about,
.about-preview,
.values-section {
  padding: 6rem 0;
  background: var(--cream);
}

.values-section {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.85;
}

.about-text .btn-outline {
  margin-top: 1rem;
}

/* ---- Process ---- */

.process {
  padding: 6rem 0;
  background: var(--warm-white);
}

.process h2 {
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.step {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Testimonials ---- */

.testimonials {
  padding: 5rem 0;
  background: var(--cream);
}

.testimonials h2 {
  margin-bottom: 2.5rem;
}

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

blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}

/* ---- Article / Care Guide ---- */

.article-content {
  padding: 4rem 0;
  background: var(--warm-white);
}

.article-container {
  max-width: 750px;
}

.article-body .article-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.article-image {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  display: block;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.article-body ol,
.article-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.85;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.article-cta h3 {
  margin-bottom: 0.5rem;
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* ---- Footer ---- */

footer {
  padding: 4rem 0 2rem;
  background: var(--charcoal);
  color: #a9a29a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: #fff;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #a9a29a;
}

.footer-links h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4cfc9;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: #a9a29a;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 2rem;
    order: 2;
  }

  .hero-image {
    order: 1;
    max-height: 50vh;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }

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

  .menu-toggle {
    display: flex;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .container {
    padding: 0 1.2rem;
  }
}
