/* ===================================
   Les Entreprises PL et Co
   Inspired by insperation.html
   Palette: Green #97ca66 + Gold #C99630
   =================================== */

:root {
  --ink:        #0a0a0a;
  --ink-2:      #111a0d;
  --ink-3:      #1a2614;
  --paper:      #f5f9f1;
  --paper-2:    #eaf3e2;
  --paper-deep: #ddebd0;
  --green:      #97ca66;
  --green-soft: #b0d98a;
  --green-deep: #6a9e3e;
  --green-bg:   #e4f1da;
  --gold:       #C99630;
  --gold-soft:  #d4a94d;
  --gold-deep:  #a67b22;
  --muted-dark: #5a6852;
  --muted-light:#6b7a62;
  --text-dark:  #1a1a1a;
  --red:        #b8412b;
}

html, body {
  margin: 0; padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--paper);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

.serif { font-family: "Cormorant Garamond", serif; font-weight: 500; letter-spacing: -0.005em; }
.script { font-family: "Italianno", cursive; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===================================
   Top bar / Navigation
   =================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  background: rgba(245, 249, 241, 0.78);
  border-bottom: 1px solid rgba(10,10,10,0.08); 
}

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 1; min-width: 0; white-space: nowrap;
}

.brand .dot { color: var(--gold); margin: 0 8px; }

.nav-links {
  display: flex; gap: 28px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  flex-shrink: 0; list-style: none;
}

.nav-links a {
  position: relative; padding: 4px 0; color: #1a1a1a; opacity: .8;
  transition: opacity .2s; white-space: nowrap;
}

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

.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .35s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold); color: var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  transition: transform .25s ease, background .25s;
  flex-shrink: 0; white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-soft); ; transform: translateY(-1px); }

/* Index-only dark hero nav — mirrors .products-hero */
.nav--hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav--hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(151,202,102,.12), transparent 50%);
  pointer-events: none;
}
.nav--hero .nav-inner { position: relative; z-index: 1; }
.nav--hero .brand       { color: var(--paper); }
.nav--hero .nav-links a { color: var(--paper); opacity: .85; }
.nav--hero .nav-links a:hover { opacity: 1; }
.nav--hero .burger       { border-color: rgba(245,249,241,.3); }
.nav--hero .burger .bar  { background: var(--paper); }
.nav--hero .burger:hover { background: var(--paper); border-color: var(--paper); }
.nav--hero .burger:hover .bar { background: var(--ink); }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(10,10,10,.18);
  background: transparent;
  border-radius: 999px;
  cursor: pointer; padding: 0; position: relative; flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .25s;
}

.burger:hover { background: var(--ink); border-color: var(--ink); }
.burger:hover .bar { background: var(--paper); }

.burger .bar {
  position: absolute; left: 12px;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.7,.0,.3,1), opacity .25s;
  transform-origin: center;
}

.burger .bar.b1 { top: 16px; }
.burger .bar.b2 { top: 21px; }
.burger .bar.b3 { top: 26px; }

body.menu-open .burger { background: var(--ink); border-color: var(--ink); }
body.menu-open .burger .bar { background: var(--paper); }
body.menu-open .burger .b1 { top: 21px; transform: rotate(45deg); }
body.menu-open .burger .b2 { opacity: 0; }
body.menu-open .burger .b3 { top: 21px; transform: rotate(-45deg); }

/* ===================================
   Mobile side menu
   =================================== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10,10,10,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}

body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }

.menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: min(86vw, 380px);
  background: var(--ink); color: var(--paper);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.7,.0,.2,1);
  display: flex; flex-direction: column;
  padding: 96px 36px 36px;
  overflow-y: auto;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.5);
}

body.menu-open .menu-panel { transform: translateX(0); }

.menu-panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(10,10,10,.96) 70%, transparent 100%);
  pointer-events: none;
}

.menu-back {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px;
  font-size: 28px; line-height: 1;
  background: none; border: none; color: var(--gold-deep);
  cursor: pointer; padding: 0;
  opacity: .7; transition: opacity .2s, color .2s;
  z-index: 1;
}
.menu-back:hover { opacity: 1; color: var(--gold); }

.menu-eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}

.menu-eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--gold-deep); }

.menu-links {
  display: flex; flex-direction: column; gap: 4px;
}

.menu-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px; line-height: 1.15;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,164,94,.15);
  color: var(--paper);
  transition: color .25s, padding-left .25s;
  display: flex; align-items: center; justify-content: space-between;
}

.menu-links a:hover { color: var(--gold); padding-left: 8px; }

.menu-links a .arr {
  font-size: 22px; color: var(--gold-deep);
  transition: transform .25s, color .25s;
}

.menu-links a:hover .arr { color: var(--gold); transform: translateX(4px); }
.menu-links a .it { font-style: italic; color: var(--gold); }

.menu-foot {
  margin-top: auto; padding-top: 36px;
  border-top: 1px solid rgba(201,164,94,.15);
}

.menu-foot .label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.menu-foot a { display: block; color: #cabba0; font-size: 14px; padding: 4px 0; }
.menu-foot a:hover { color: var(--gold); }

body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 26px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: transform .25s ease, background .25s, color .25s, box-shadow .3s;
  cursor: pointer; border: none; font-family: inherit;
  text-decoration: none;
}

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(166,123,34,.55); }

.btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(10,10,10,.25); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }

.btn-green { background: var(--green); color: var(--ink); }
.btn-green:hover { background: var(--green-deep); color: var(--paper); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(106,158,62,.55); }

.btn .arr { display: inline-block; transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }

/* ===================================
   Section primitives
   =================================== */
section { padding: 110px 32px; }

.container { max-width: 1320px; margin: 0 auto; }

.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 28px;
}

.section-label::before {
  content: counter(sec, decimal-leading-zero);
  counter-increment: sec;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 18px; color: var(--green-deep); letter-spacing: 0;
}

.section-label::after { content: ""; flex: 1; max-width: 80px; height: 1px; background: var(--gold); }

body { counter-reset: sec; }

h2.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 0 40px;
  text-wrap: balance;
}

h2.section-title .it { font-style: italic; color: var(--gold-deep); }

/* ===================================
   Hero Section (index.html)
   =================================== */
.hero {
  position: relative;
  padding: 64px 32px 40px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 28px;
}

.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }

h1.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(54px, 7.4vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  text-wrap: balance;
}

h1.hero-title .it { font-style: italic; font-weight: 500; color: var(--gold-deep); }

.lede {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.38;
  max-width: 540px;
  color: #2d3825;
  margin: 0 0 36px;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-light); margin-bottom: 40px;
}

.hero-meta .pip {
  width: 5px; height: 5px; background: var(--green); border-radius: 50%;
  display: inline-block; margin-right: 10px; vertical-align: middle;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero image area */
.hero-visual {
  position: relative; display: block; width: 100%; max-width: 520px; margin: 0 auto;
}

.hero-visual::before {
  content: ""; position: absolute; inset: -8% -10% -4% -10%;
  background: radial-gradient(ellipse at 60% 50%, rgba(151,202,102,.30), transparent 65%);
  filter: blur(20px); z-index: 0;
}

.hero-visual .hero-img {
  position: relative; z-index: 1;
  width: 100%; height: auto;
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.05);
  display: block;
  object-fit: cover;
}

.hero-visual .stamp {
  position: absolute; right: -8px; top: 32px; z-index: 3;
  background: var(--gold); color: var(--ink);
  padding: 8px 14px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 800;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.4);
  transform: rotate(2deg);
}

/* Decorative star */
.deco-star {
  position: absolute; width: 36px; height: 36px;
  color: var(--green); opacity: .6;
}

.deco-star.s1 { top: 90px; right: 8%; }
.deco-star.s2 { bottom: 20px; left: 6%; }

/* ===================================
   Marquee
   =================================== */
.marquee {
  background: var(--ink); color: var(--green);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  overflow: hidden; padding: 22px 0;
}

.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  align-items: center;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dia { color: var(--paper); font-size: 14px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================
   Featured Products (index)
   =================================== */
.featured-products {
  background: var(--paper-2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.product-card {
  background: var(--paper-2);
  border: 1px solid rgba(106,158,62,.15);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .35s ease, background .25s, border-color .25s, box-shadow .3s;
}


.product-image {
  width: 100%; height: 260px;
  background-color: #d6cfbf;
  overflow: hidden;
}

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

.product-info {
  padding: 28px 24px;
}

.product-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--green-deep);
}

.product-info p {
  font-size: 14.5px; line-height: 1.55;
  color: #3d4a35;
}

/* ===================================
   About Preview (index)
   =================================== */
.about-preview {
  background: var(--green-bg);
  position: relative; overflow: hidden;
}

.about-preview-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}

.about-preview-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px; line-height: 1.55;
  color: #3d4a35; margin-bottom: 20px;
}

.about-preview-image {
  position: relative;
}

.about-preview-image img {
  width: 450px;
  height: 842px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.35);
}

/* ===================================
   Features / Why Choose Us
   =================================== */
.features { background: var(--paper-2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-item {
  background: var(--paper-2);
  border: 1px solid rgba(106,158,62,.15);
  padding: 44px 32px 40px;
  position: relative;
  transition: transform .35s ease, background .25s, border-color .25s;
  min-height: 280px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.feature-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--ink); font-size: 1.5rem;
  transition: background .3s, color .3s;
}

.feature-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; font-size: 22px;
  line-height: 1.2; margin: 0;
}

.feature-item p {
  font-size: 14.5px; line-height: 1.55;
  color: #3d4a35; margin-top: 12px;
  transition: color .3s;
}

/* ===================================
   Products Page
   =================================== */
.products-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--paper);
  padding: 120px 32px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}

.products-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(151,202,102,.12), transparent 50%);
  pointer-events: none;
}

.products-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1; margin: 0;
  position: relative;
}

.products-hero h1 .it { font-style: italic; color: var(--green); }

/* Category navigation bar (sticky under main nav) */
.cat-nav {
  position: sticky; top: 75px; z-index: 40;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  padding: 18px 32px;
  background: var(--paper);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  background: rgba(245, 249, 241, 0.78);
  border-bottom: 1px solid rgba(106,158,62,.15);
}
.cat-nav a {
  display: inline-block;
  padding: 9px 20px;
  font-family: "Manrope", sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  background: transparent;
  border: 1px solid var(--green-deep);
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s;
}
.cat-nav a:hover {
  background: var(--green-deep);
  color: var(--paper);
}

@media (max-width: 1024px){ .cat-nav { top: 75px; } }
@media (max-width: 760px){
  .cat-nav {
    top: 72px; padding: 14px 18px; gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .cat-nav a { flex-shrink: 0; }
}
@media (max-width: 560px){ .cat-nav { padding: 12px 14px; } .cat-nav a { padding: 8px 14px; font-size: 12px; } }

.product-category {
  margin-bottom: 80px;
}

.category-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--green-deep);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.products-grid .product-card {
  transition: opacity .8s ease, transform .35s ease, box-shadow .3s ease, border-color .25s;
}
.products-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px -12px rgba(0,0,0,.28);
  border-color: rgba(106,158,62,.4);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
  padding: 100px 290px;
  margin: auto;
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
}

.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(151,202,102,.12), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(201,164,94,.08), transparent 45%);
  pointer-events: none;
}

.testimonials .section-label { color: var(--green-soft); }
.testimonials .section-label::before { color: var(--paper); }
.testimonials .section-label::after { background: var(--green-soft); }

.testimonial-group { margin-bottom: 48px; }
.testimonial-group:last-child { margin-bottom: 0; }

.testimonial-product {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px; color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(151,202,102,.3);
  display: inline-block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--ink-2);
  border: 1px solid rgba(201,164,94,.18);
  padding: 32px 28px;
  border-radius: 2px;
  transition: border-color .3s, transform .3s;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px; line-height: 1.5;
  color: #d8cfbe; margin-bottom: 16px;
  position: relative;
}

.testimonial-text::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  color: var(--green); font-size: 3em;
  line-height: 0; position: relative;
  top: 0.2em; margin-right: 4px;
}

.testimonial-author {
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft); text-align: right;
}

/* ===================================
   About Page
   =================================== */
.about-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--paper);
  padding: 120px 32px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}

.about-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(151,202,102,.12), transparent 50%);
  pointer-events: none;
}

.about-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1; margin: 0; position: relative;
}

.about-hero h1 .it { font-style: italic; color: var(--green); }

.about-section {
  padding: 100px 32px;
}

.about-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-image {
  position: relative;
}

.about-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 2px;
  filter: saturate(.92);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.35);
}

.about-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05; margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.about-text h2 .it { font-style: italic; color: var(--gold-deep); }

.about-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; line-height: 1.55;
  color: #3d4a35; margin-bottom: 16px;
}

/* Values grid */
.values-grid {
  max-width: 1320px; margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--paper-2);
  border: 1px solid rgba(106,158,62,.15);
  padding: 36px 28px;
  transition: transform .35s ease, background .25s, border-color .25s;
  min-height: 200px;
  display: flex; flex-direction: column;
}

.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; font-size: 24px;
  line-height: 1.15; margin: 0 0 12px;
}

.value-card p {
  font-size: 14.5px; line-height: 1.55;
  color: #3d4a35; margin: 0;
  transition: color .3s;
}

/* Partners */
.partners-category { margin-bottom: 40px; }

.partners-category h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--gold-deep);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,164,94,.3);
  display: inline-block;
}

.partners-list-grid {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.partners-list-grid li {
  padding: 16px 20px;
  background: var(--paper-2);
  border: 1px solid rgba(106,158,62,.12);
  border-radius: 2px;
  font-size: 15px;
  color: #3d4a35;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}

/* Unified list */
.unified-list {
  background: var(--paper-2);
  padding: 32px;
  border: 1px solid rgba(106,158,62,.15);
  border-radius: 2px;
}

.unified-list ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.unified-list ul li {
  padding: 12px 0 12px 24px;
  color: #3d4a35;
  border-bottom: 1px solid rgba(106,158,62,.15);
  position: relative;
  font-size: 15px;
}

.unified-list ul li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}

.unified-list ul li:last-child { border-bottom: none; }

/* ===================================
   Contact Page
   =================================== */
.contact-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--paper);
  padding: 120px 32px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}

.contact-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 60%, rgba(201,164,94,.12), transparent 50%);
  pointer-events: none;
}

.contact-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1; margin: 0 0 12px; position: relative;
}

.contact-hero p {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px; color: #d8cfbe;
  position: relative; margin: 0;
}

.contact-info-grid {
  max-width: 1000px; margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}

.contact-info-card {
  background: var(--paper-2);
  border: 1px solid rgba(106,158,62,.15);
  padding: 36px 24px;
  transition: transform .35s, background .25s, color .25s, border-color .25s;
}

.contact-info-card h3 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}

.contact-info-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; line-height: 1.4;
  color: #3b362f; margin: 0;
  transition: color .3s;
}

/* FAQ */
.faq-section { background: var(--paper-deep); }

.faq-item {
  max-width: 800px; margin: 0 auto;
  padding: 32px 0;
  border-bottom: 1px solid rgba(10,10,10,.12);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600; font-size: 22px;
  line-height: 1.3; margin-bottom: 12px;
  color: var(--ink);
}

.faq-item p {
  font-size: 15px; line-height: 1.6;
  color: var(--muted-dark);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--paper);
}

.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1; margin: 0 0 16px;
}

.cta-section p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; color: var(--muted-light);
  margin: 0 0 32px;
}

/* ===================================
   Footer
   =================================== */
footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 32px 36px;
}

.foot-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

.foot-brand .serif { font-size: 36px; line-height: 1; margin-bottom: 12px; color: var(--green); }
.foot-brand p { color: #b5a684; font-size: 14px; line-height: 1.6; max-width: 320px; }

.foot-col h5 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px; font-weight: 700;
}

.foot-col a, .foot-col p {
  display: block; font-size: 14px; color: #cabba0; margin: 8px 0; line-height: 1.5;
}

.foot-col a:hover { color: var(--green); }

.foot-base {
  max-width: 1320px; margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201,164,94,.18);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: #8a7e63;
}

/* ===================================
   Animations
   =================================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* Selection */
::selection { background: var(--green); color: var(--ink); }

/* ===================================
   Responsive (breakpoints, descending)
   =================================== */

/* Large tablets / small desktops */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; font-size: 12px; }
}

/* Nav collapses to burger */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* Tablet */
@media (min-width: 761px) and (max-width: 1024px) {
  section { padding: 80px 28px; }
  .testimonials{ padding: 50px;}
  .hero-grid { gap: 40px; }
  h1.hero-title { font-size: clamp(56px, 9vw, 88px); }
  .nav-inner { padding: 16px 24px; }
}

/* Tablet / mobile */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .hero { padding: 40px 24px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid.reverse { direction: ltr; }
}

@media (max-width: 860px) {
  .about-preview-grid { gap: 36px; }
  .about-grid { gap: 36px; }
}

/* Mobile */
@media (max-width: 760px) {
  /* Nav */
  .nav-inner { padding: 14px 18px; }
  .brand { font-size: 13px; letter-spacing: 0.14em; }
  .brand .dot { margin: 0 5px; }
  .nav-cta { padding: 9px 14px; font-size: 10.5px; letter-spacing: 0.12em; }

  /* Hero */
  .hero { padding: 36px 20px 24px; }
  .hero-grid { gap: 36px; }
  h1.hero-title { font-size: clamp(46px, 13vw, 72px); line-height: 0.94; margin-bottom: 22px; }
  .eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 20px; }
  .eyebrow::before { width: 24px; }
  .lede { font-size: 17px; line-height: 1.42; margin-bottom: 28px; }
  .hero-meta { font-size: 10.5px; letter-spacing: 0.12em; gap: 10px 18px; margin-bottom: 28px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn { padding: 15px 22px; font-size: 12px; justify-content: center; }

  .hero-visual { max-width: 420px; }
  /* .hero-visual .stamp { display: none; } */
  .deco-star.s1, .deco-star.s2 { display: none; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee-track { font-size: 20px; gap: 36px; }
  .marquee-track span { gap: 36px; }

  /* Sections */
  section { padding: 64px 20px; }
  .section-label { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 18px; }
  h2.section-title { font-size: clamp(34px, 9vw, 48px); margin-bottom: 28px; line-height: 1.04; }

  /* Products */
  .products-hero { padding: 100px 20px 60px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .products-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 18px; }

  /* About */
  .about-section { padding: 64px 20px; }
  .about-hero { padding: 100px 20px 60px; }
  .about-text h2 { font-size: clamp(28px, 7vw, 38px); }
  .about-text p { font-size: 17px; line-height: 1.5; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .value-card { padding: 24px 20px; min-height: 0; }

  /* Contact */
  .contact-hero { padding: 100px 20px 60px; }
  .contact-info-grid { gap: 14px; }
  .contact-info-card { padding: 24px 18px; }
  .faq-item { padding: 24px 0; }
  .faq-item h3 { font-size: 19px; }

  /* Testimonials */
  .testimonials{ padding: 50px;}
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding: 56px 20px 28px; }
  .foot-brand .serif { font-size: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-base { font-size: 11px; flex-direction: column; gap: 6px; }

  /* Partners */
  .partners-list-grid { grid-template-columns: 1fr; }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .brand { font-size: 11px; }
  .brand .dot { margin: 0 3px; }
  .nav-cta { padding: 8px 10px; font-size: 10px; }
  h1.hero-title { font-size: 42px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ===================================
   Product Modal
   =================================== */
.product-card { cursor: pointer; }

.modal-overlay {
  position: fixed; inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  position: relative;
  width: 100%; max-width: 640px;
  max-height: 88vh; overflow-y: auto;
  background: var(--paper);
  border: 1px solid rgba(106,158,62,.25);
  border-radius: 3px;
  padding: 44px 40px 36px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.4);
  transform: translateY(12px) scale(.98);
  transition: transform .3s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 28px; line-height: 1;
  background: none; border: none;
  color: var(--muted-dark);
  cursor: pointer;
  transition: color .2s;
}
.modal-close:hover { color: var(--red); }

.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--green-deep);
  margin-bottom: 14px;
  padding-right: 36px;
}
.modal-intro {
  font-size: 15px; line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.modal-h {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold-deep);
  margin: 22px 0 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(201,150,48,.25);
}
.modal-list {
  list-style: none;
  margin: 0 0 4px;
}
.modal-list li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #3d4a35;
}
.modal-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.modal-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #3d4a35;
  margin: 0;
}

@media (max-width: 640px){
  .modal { 
    padding: 11px 22px 44px ;
    margin: 10px 1px 22px -14px;
  }
  .modal-title { font-size: 24px; }
}
