:root {
  --foret: #2d5016;
  --rose: #e8d4d8;
  --rose-dark: #d4a5b0;
  --blanc: #fdfbf8;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
  --shadow-hover: 0 8px 24px rgba(45, 80, 22, 0.12);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--blanc);
}

html {
  scroll-behavior: smooth;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--foret);
  color: white;
  padding: 12px 0;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.topbar a:hover {
  opacity: 0.8;
}

/* ===== NAVIGATION ===== */
.nav {
  padding: 16px 0;
  border-bottom: 1px solid #f0e8e0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}

.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand .mark {
  width: 42px;
  height: 42px;
}

.brand .txt strong {
  display: block;
  font-weight: 700;
  color: var(--foret);
  font-size: 15px;
}

.brand .txt span {
  font-size: 11px;
  color: var(--text-light);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--foret);
  font-weight: 600;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foret);
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .burger {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1.15;
  margin: 20px 0;
  color: var(--foret);
  font-weight: 600;
}

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

.hero-lead {
  font-size: 17px;
  color: var(--text-light);
  margin: 24px 0;
  line-height: 1.8;
}

.eyebrow {
  display: flex;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--foret);
  margin-bottom: 12px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-main {
  background: var(--foret);
  color: white;
}

.btn-main:hover {
  background: #1f3a0f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-light {
  background: var(--rose);
  color: var(--foret);
  border: none;
}

.btn-light:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--foret);
  border: 2px solid var(--foret);
}

.btn-ghost:hover {
  background: var(--foret);
  color: white;
}

.hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-bot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #f0e8e0;
  text-align: center;
}

.hero-bot div b {
  display: block;
  font-size: 22px;
  color: var(--foret);
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-bot div span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.bg-amande {
  background: #f5f0e8;
}

.bg-creme2 {
  background: var(--rose);
}

.bg-foret {
  background: var(--foret);
  color: white;
}

.sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.sec-head.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sec-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  margin: 16px 0;
  color: var(--foret);
  font-weight: 600;
  line-height: 1.2;
}

.sec-head p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 12px;
}

.bg-foret .sec-head h2,
.bg-foret .sec-head p {
  color: white;
}

/* ===== PILLARS ===== */
.piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pilier {
  padding: 40px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.pilier:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pilier .num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--foret);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pilier h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  margin: 12px 0;
  color: var(--foret);
  font-weight: 600;
}

.pilier p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split.rev {
  direction: rtl;
}

.split.rev > * {
  direction: ltr;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tag {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  font-weight: 500;
}

.split-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  margin: 16px 0;
  color: var(--foret);
  font-weight: 600;
  line-height: 1.2;
}

.split-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 16px 0;
}

.split-text ul {
  margin: 24px 0;
  padding-left: 24px;
}

.split-text li {
  margin: 12px 0;
  color: var(--text-light);
  font-size: 16px;
}

.split-text li::marker {
  color: var(--foret);
  font-weight: 600;
}

/* ===== QUOTE ===== */
.quote {
  text-align: center;
}

.quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-style: italic;
  margin: 32px 0;
  line-height: 1.5;
  font-weight: 500;
}

.quote cite {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-weight: 500;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.card .ph {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0e8e0;
}

.card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .body {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.card .kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--foret);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin: 12px 0;
  color: var(--foret);
  font-weight: 600;
}

.card p {
  color: var(--text-light);
  font-size: 15px;
  flex-grow: 1;
  line-height: 1.7;
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  padding: 120px 0;
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-band img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-band .veil {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 80, 22, 0.65);
  z-index: 1;
}

.cta-band .inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  margin: 20px 0;
  font-weight: 600;
  line-height: 1.2;
}

.cta-band p {
  font-size: 17px;
  line-height: 1.7;
  margin: 16px 0;
  opacity: 0.95;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--foret) 0%, #1f3a0f 100%);
  color: white;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  margin: 16px 0;
  font-weight: 600;
  line-height: 1.2;
}

.page-hero p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
}

.page-hero .crumb {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.page-hero .crumb a {
  color: white;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.info-line {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.info-line .ic {
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}

.info-line strong {
  display: block;
  color: var(--foret);
  margin-bottom: 4px;
  font-weight: 600;
}

.hours {
  list-style: none;
  margin: 20px 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0e8e0;
  font-size: 14px;
}

.mapbox {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow);
}

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FORM ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-weight: 600;
  color: var(--foret);
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--foret);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.note {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
  background: #f5f0e8;
  padding: 60px 0 20px;
  border-top: 1px solid #e8dcd0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.foot-brand p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

footer h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--foret);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

footer a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--foret);
  font-weight: 600;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== TIMELINE ===== */
.tl {
  list-style: none;
}

.tl li {
  position: relative;
  padding: 32px 0 32px 40px;
  border-left: 2px solid var(--foret);
}

.tl li:last-child {
  border-left: 2px solid transparent;
}

.tl .yr {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--foret);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tl h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  margin: 8px 0;
  color: var(--foret);
  font-weight: 600;
}

.tl p {
  font-size: 14px;
  color: var(--text-light);
  margin: 8px 0;
}

.tl li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 32px;
  width: 14px;
  height: 14px;
  background: var(--foret);
  border-radius: 50%;
}

/* ===== FACTS ===== */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.fact {
  text-align: center;
}

.fact b {
  display: block;
  font-size: 32px;
  color: var(--foret);
  margin-bottom: 8px;
  font-weight: 600;
}

.fact span {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== SHOP ===== */
.shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.prod {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.prod:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.prod .ph {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0e8e0;
}

.prod .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod .body {
  padding: 28px;
}

.prod .kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--foret);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prod h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin: 10px 0;
  color: var(--foret);
  font-weight: 600;
}

.prod p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PROSE ===== */
.prose h2 {
  font-family: 'Fraunces', serif;
  color: var(--foret);
}

.prose ul {
  padding-left: 24px;
  margin: 20px 0;
}

.prose li {
  margin: 10px 0;
  color: var(--text-light);
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid,
  .split,
  .split.rev,
  .piliers,
  .cards,
  .shop,
  .foot-grid,
  .hero-bot,
  .facts,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .sec-head h2 {
    font-size: 32px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .cta-band {
    padding: 80px 0;
  }

  .cta-band h2 {
    font-size: 32px;
  }
}
