/* ============================================================
   Bijouterie Mohan — style.css
   Dark burgundy #2d0a1a | Gold #c5a44e | Cream #faf5eb
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: #faf5eb;
  color: #2d0a1a;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #c5a44e; text-decoration: none; transition: color .25s; }
a:hover { color: #2d0a1a; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.25;
  color: #2d0a1a;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: #c5a44e; }
.text-center { text-align: center; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid #c5a44e;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.btn-gold {
  background: #c5a44e;
  color: #faf5eb;
}
.btn-gold:hover {
  background: transparent;
  color: #c5a44e;
}

.btn-outline {
  background: transparent;
  color: #c5a44e;
}
.btn-outline:hover {
  background: #c5a44e;
  color: #faf5eb;
}

.btn-dark {
  background: #2d0a1a;
  color: #c5a44e;
  border-color: #2d0a1a;
}
.btn-dark:hover {
  background: #c5a44e;
  color: #2d0a1a;
  border-color: #c5a44e;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: #c5a44e;
  margin: 1rem auto 1.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(45, 10, 26, .95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(197, 164, 78, .25);
  transition: box-shadow .3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img { height: 48px; width: auto; }

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

.nav-menu a {
  color: #faf5eb;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #c5a44e;
  border-bottom-color: #c5a44e;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #faf5eb;
  transition: transform .3s, opacity .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-bijouterie.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 10, 26, .88);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #faf5eb;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c5a44e;
  margin-bottom: 1rem;
}

.hero h1 { color: #faf5eb; margin-bottom: .75rem; }
.hero h1 span { color: #c5a44e; }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(250, 245, 235, .85);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Section Headings ---------- */
.section-title {
  text-align: center;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center;
  color: #6b4c3b;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(197, 164, 78, .2);
  border-top: 3px solid #c5a44e;
  padding: 2rem 1.75rem;
  border-radius: 2px;
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 10, 26, .12);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: #2d0a1a;
}

.service-card p {
  font-size: .95rem;
  color: #5a3e34;
  margin-bottom: 1.2rem;
}

/* ---------- Two-Column Sections ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 10, 26, .18);
}
.two-col-img img { width: 100%; height: 440px; object-fit: cover; }

.two-col-text { padding: 1rem 0; }
.two-col-text .eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c5a44e;
  margin-bottom: .75rem;
}

.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: #5a3e34; }

/* ---------- Banner Section ---------- */
.banner-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('/images/vue-var.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 10, 26, .87);
}

.banner-section .container { position: relative; z-index: 1; }
.banner-section h2 { color: #faf5eb; margin-bottom: 1rem; }
.banner-section p { color: rgba(250,245,235,.82); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ---------- Why Us / Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.feature-item .feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: .75rem;
}

.feature-item h4 { margin-bottom: .4rem; color: #2d0a1a; }
.feature-item p { font-size: .93rem; color: #5a3e34; margin: 0; }

/* ---------- Regions (SEO) ---------- */
.regions-section { background: #2d0a1a; padding: 4rem 0; }
.regions-section h2 { color: #c5a44e; text-align: center; margin-bottom: .5rem; }
.regions-section .divider-gold { margin: .75rem auto 2rem; }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.region-card {
  background: rgba(197, 164, 78, .08);
  border: 1px solid rgba(197, 164, 78, .25);
  padding: 1.5rem 1.25rem;
  border-radius: 2px;
  text-align: center;
  transition: background .3s;
}

.region-card:hover { background: rgba(197, 164, 78, .16); }
.region-card h4 { color: #c5a44e; margin-bottom: .35rem; }
.region-card p { color: rgba(250,245,235,.75); font-size: .88rem; margin: 0; }

/* ---------- CTA Two-Col ---------- */
.cta-section {
  background: #fff8f0;
  padding: 5rem 0;
}

/* ---------- Blog / Éclat ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45,10,26,.08);
  transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(45,10,26,.15);
}

.blog-card-img { position: relative; overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c5a44e;
  margin-bottom: .5rem;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.blog-card-body h3 a { color: #2d0a1a; }
.blog-card-body h3 a:hover { color: #c5a44e; }
.blog-card-body p { font-size: .9rem; color: #5a3e34; margin-bottom: 1rem; }
.blog-card-meta { font-size: .8rem; color: #8a6a5a; }

/* ---------- Article / Blog Post ---------- */
.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 72px;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,10,26,.55);
}

.article-hero-text {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 1;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-hero-text .cat-label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c5a44e;
  display: block;
  margin-bottom: .5rem;
}

.article-hero-text h1 {
  color: #faf5eb;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  max-width: 820px;
}

.article-body {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: .85rem;
  color: #8a6a5a;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197,164,78,.3);
  flex-wrap: wrap;
}

.article-body h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 .75rem;
  color: #2d0a1a;
}

.article-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 .5rem;
  color: #2d0a1a;
}

.article-body p { color: #3d1a28; line-height: 1.8; }

.article-body a { color: #c5a44e; font-weight: 600; }
.article-body a:hover { color: #2d0a1a; }

.article-mid-img {
  margin: 2.5rem 0;
  border-radius: 2px;
  overflow: hidden;
}
.article-mid-img img { width: 100%; max-height: 420px; object-fit: cover; }

.article-body blockquote {
  border-left: 3px solid #c5a44e;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(197,164,78,.07);
  font-style: italic;
  color: #5a3e34;
}

.article-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body ul li { margin-bottom: .4rem; color: #3d1a28; }
.article-body ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body ol li { margin-bottom: .4rem; color: #3d1a28; }

.ranking-item {
  background: #fff;
  border: 1px solid rgba(197,164,78,.25);
  border-left: 4px solid #c5a44e;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.ranking-item .rank-num {
  font-size: 2rem;
  font-weight: 700;
  color: #c5a44e;
  line-height: 1;
  margin-bottom: .3rem;
}
.ranking-item h3 { margin: 0 0 .5rem; font-size: 1.25rem; }
.ranking-item p { margin: 0; font-size: .95rem; color: #5a3e34; }
.ranking-item.top { border-left-color: #c5a44e; background: rgba(197,164,78,.05); }

.article-tags {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197,164,78,.3);
}
.article-tags span {
  display: inline-block;
  background: rgba(197,164,78,.12);
  color: #2d0a1a;
  font-size: .8rem;
  padding: .3rem .8rem;
  border-radius: 2px;
  margin: .25rem .3rem .25rem 0;
}

.article-nav {
  max-width: 820px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-nav a {
  color: #c5a44e;
  font-size: .9rem;
  font-weight: 600;
}

/* ---------- Blog Index Page ---------- */
.blog-index-hero {
  height: 340px;
  background: #2d0a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.blog-index-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-bijouterie.jpg') center/cover;
  opacity: .2;
}

.blog-index-hero .container { position: relative; z-index: 1; text-align: center; }
.blog-index-hero h1 { color: #faf5eb; }
.blog-index-hero h1 span { color: #c5a44e; font-style: italic; }
.blog-index-hero p { color: rgba(250,245,235,.78); max-width: 540px; margin: .75rem auto 0; }

/* ---------- Contact Form ---------- */
.contact-section { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: #5a3e34; }
.contact-info .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info .info-icon { font-size: 1.4rem; margin-top: .1rem; }
.contact-info .info-text h4 { font-size: 1rem; margin-bottom: .2rem; }
.contact-info .info-text p { margin: 0; font-size: .92rem; color: #5a3e34; }

.contact-form { background: #fff; padding: 2.5rem; border: 1px solid rgba(197,164,78,.2); border-radius: 2px; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2d0a1a;
  margin-bottom: .5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(197,164,78,.35);
  border-radius: 2px;
  background: #faf5eb;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: #2d0a1a;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c5a44e;
  box-shadow: 0 0 0 3px rgba(197,164,78,.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  height: 320px;
  background: #2d0a1a;
  display: flex;
  align-items: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-bijouterie.jpg') center/cover;
  opacity: .15;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c5a44e;
  margin-bottom: .6rem;
}
.page-hero h1 { color: #faf5eb; }
.page-hero p { color: rgba(250,245,235,.76); max-width: 540px; margin-top: .6rem; }

/* ---------- Product / Service Detail ---------- */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.product-intro-img {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45,10,26,.18);
}
.product-intro-img img { width: 100%; height: 480px; object-fit: cover; }

.specs-list { margin: 1.5rem 0; }
.specs-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(197,164,78,.15);
  font-size: .95rem;
  color: #3d1a28;
}
.specs-list li::before {
  content: '◆';
  color: #c5a44e;
  font-size: .55rem;
  flex-shrink: 0;
}

/* ---------- Sitemap ---------- */
.sitemap-section { padding: 5rem 0; }
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.sitemap-col h3 { color: #c5a44e; margin-bottom: 1rem; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.sitemap-col ul li { margin-bottom: .5rem; }
.sitemap-col ul li a { color: #2d0a1a; font-size: .95rem; }
.sitemap-col ul li a:hover { color: #c5a44e; }

/* ---------- 404 ---------- */
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  margin-top: 72px;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: rgba(197,164,78,.25);
  line-height: 1;
  margin-bottom: .5rem;
}

.error-section h2 { margin-bottom: 1rem; }
.error-section p { color: #5a3e34; max-width: 480px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a0510;
  color: rgba(250,245,235,.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(197,164,78,.15);
}

.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 280px; }

.footer-col h4 {
  color: #c5a44e;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(250,245,235,.65); font-size: .9rem; transition: color .25s; }
.footer-col ul li a:hover { color: #c5a44e; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}

.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(250,245,235,.5); font-size: .82rem; }
.footer-legal a:hover { color: #c5a44e; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: rgba(45,10,26,.04);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(197,164,78,.12);
}
.breadcrumb nav { font-size: .84rem; color: #8a6a5a; }
.breadcrumb nav a { color: #8a6a5a; }
.breadcrumb nav a:hover { color: #c5a44e; }
.breadcrumb nav span { color: #c5a44e; margin: 0 .4rem; }

/* ---------- Scroll to Top ---------- */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: #c5a44e;
  color: #faf5eb;
  border: none;
  border-radius: 2px;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background .25s;
}
#scrollTop:hover { background: #2d0a1a; }
#scrollTop.visible { display: flex; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col,
  .product-intro,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; gap: 0; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(45,10,26,.98);
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(197,164,78,.2);
  }
  .nav-menu.open a {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(197,164,78,.1);
  }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .article-nav { flex-direction: column; }
  .product-intro-img img { height: 300px; }
  .two-col-img img { height: 300px; }
}

@media (max-width: 480px) {
  .hero { background-attachment: scroll; }
  .banner-section { background-attachment: scroll; }
  h1 { font-size: 2rem; }
}
