/* === Nature et Beldi — Warm, earthy, editorial === */

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

:root {
  --cream:   #FAF6F0;
  --sand:    #E8D5B7;
  --terracotta: #B85C38;
  --sage:    #6B7C5C;
  --bark:    #3D2B1F;
  --warm-white: #FFFDF9;
  --muted:   #8A7A6A;
  --border:  #D9C9B0;
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--bark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bark);
  text-decoration: none;
}

.nav-logo span {
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-left: 0.3em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--bark);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

/* ── Hero ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 5rem 5rem;
  max-width: 580px;
}

.hero-eyebrow {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--bark);
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--bark);
  color: var(--warm-white);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--terracotta); }

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--bark);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--bark);
  color: var(--terracotta);
}

/* ── Hero visual: Moroccan color block ─────────── */
.hero-visual {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, #C4906A 0%, transparent 55%),
    radial-gradient(ellipse at 75% 75%, #A07850 0%, transparent 50%),
    linear-gradient(160deg, #E8D5B7 0%, #C9A882 40%, #8B6B45 100%);
  opacity: 0.75;
}

.hero-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem;
  text-align: center;
}

.hero-visual-label {
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(61, 43, 31, 0.5);
  margin-bottom: 1rem;
}

.hero-visual-main {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 2.5rem;
}

.hero-visual-tag {
  font-family: system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.35rem 1rem;
  display: inline-block;
}

/* ── Section shared ────────────────────────────── */
section { padding: 7rem 5rem; }
.section-eyebrow {
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ── Provenance (origin story) ──────────────────── */
.provenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--warm-white);
}
.provenance-visual {
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  min-height: 460px;
}
.provenance-visual-inner {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2.5rem 2rem;
  max-width: 300px;
  text-align: center;
}
.provenance-visual-inner .label {
  font-family: system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.provenance-visual-inner .value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.6;
}
.provenance-content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.provenance-content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

/* ── Product showcase ───────────────────────────── */
.product-showcase {
  background: var(--cream);
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.product-card-beldia {
  border-left: 3px solid var(--terracotta);
  position: relative;
}

.product-badge-provenance {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  background: rgba(184, 92, 56, 0.04);
}
.product-card {
  background: var(--warm-white);
  padding: 3rem 2rem;
  text-align: left;
  border: 1px solid var(--border);
}
.product-card-icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.product-card .price {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 600;
}

/* ── Values ────────────────────────────────────── */
.values-section { background: var(--warm-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
  border: 1px solid var(--border);
}
.value-item {
  background: var(--warm-white);
  padding: 2.75rem 2.5rem;
}
.value-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.value-item .tag {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.2rem 0.7rem;
  margin-bottom: 1rem;
}

/* ── Quote ─────────────────────────────────────── */
.quote-section {
  background: var(--bark);
  color: var(--sand);
  text-align: center;
}
.quote-section .section-eyebrow { color: rgba(232, 213, 183, 0.5); }
.quote-section .section-title { color: var(--warm-white); font-size: clamp(2rem, 4vw, 3.2rem); }
.quote-mark {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: block;
}
.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.quote-attr {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 213, 183, 0.5);
}

/* ── Newsletter ─────────────────────────────────── */
.newsletter {
  background: var(--sand);
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 2.5rem auto 0;
  border: 1px solid var(--bark);
}
.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: none;
  background: var(--warm-white);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  outline: none;
  color: var(--bark);
}
.newsletter-form button {
  padding: 0.9rem 1.5rem;
  background: var(--bark);
  color: var(--warm-white);
  border: none;
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--terracotta); }
.newsletter-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ── Footer ─────────────────────────────────────── */
footer {
  background: var(--bark);
  color: rgba(232, 213, 183, 0.45);
  padding: 3.5rem 5rem 2.5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
footer .footer-brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.01em;
}
footer .footer-brand span {
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 213, 183, 0.45);
  margin-left: 0.3em;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: rgba(232, 213, 183, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(232, 213, 183, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a {
  color: rgba(232, 213, 183, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--sand); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 7rem 1.5rem 4rem; max-width: 100%; }
  section { padding: 4rem 1.5rem; }
  .provenance { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}