:root {
  --forest: #31572c;
  --forest-dark: #1e3d12;
  --forest-pale: rgba(49,87,44,0.08);
  --forest-muted: rgba(49,87,44,0.15);
  --bg: #f8f9f7;
  --bg-alt: #f0f2ee;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #5a6358;
  --text-tertiary: #8a9488;
  --border: rgba(49,87,44,0.1);
  --border-strong: rgba(49,87,44,0.2);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--forest-pale);
  color: var(--forest-dark);
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}

nav.scrolled {
  background: rgba(248, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--forest);
  opacity: 1;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--forest-muted);
  border-radius: 4px;
  background: var(--forest-pale);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: rgba(49,87,44,0.15);
  border-color: rgba(49,87,44,0.4);
  color: var(--forest-dark);
  opacity: 1;
}

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

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}

#hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--forest-dark);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 0 80px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(49,87,44,0.25);
  opacity: 1;
}

.hero-cta-secondary {
  background: transparent;
  border: 1px solid var(--forest-muted);
  color: var(--forest);
}

.hero-cta-secondary:hover {
  background: var(--forest-pale);
  border-color: rgba(49,87,44,0.3);
  color: var(--forest-dark);
  box-shadow: none;
  opacity: 1;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-cue-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.scroll-chevron {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--text-tertiary);
  border-bottom: 1.5px solid var(--text-tertiary);
  transform: rotate(45deg);
  animation: chevronPulse 2.4s ease-in-out infinite;
}

@keyframes chevronPulse {
  0%, 100% { opacity: 0.45; transform: rotate(45deg) translateY(0); }
  50% { opacity: 0.8; transform: rotate(45deg) translateY(5px); }
}

#about {
  background: var(--bg-alt);
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.about-main p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.about-vision {
  background: var(--surface);
  padding: 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--forest);
}

.vision-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
  display: block;
}

.about-vision p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

#services {
  background: var(--bg);
  padding: 100px 0;
}

.services-title-inline {
  margin-bottom: 3rem;
  line-height: 1.35;
}

.services-title-inline h2 {
  display: inline;
  margin-bottom: 0;
}

.services-subtitle {
  display: inline;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-tertiary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.service-card {
  border-right: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease;
  background: transparent;
}

.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--forest-pale); }

.service-card-fig {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  padding: 22px 24px 0;
}

.service-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 28px;
  min-height: 180px;
}

.service-card-visual svg {
  width: 100%;
  max-width: 160px;
}

.service-card-body {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  flex: 1;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
}

#process {
  background: var(--bg-alt);
}

.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--forest-muted), var(--border));
}

.timeline-step {
  position: relative;
  padding-bottom: 48px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: -60px;
  top: 2px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest-muted);
  border-radius: 50%;
  background: var(--bg-alt);
}

.timeline-number svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-step h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.9rem;
  max-width: 480px;
}

#partners {
  background: var(--bg);
}

.partner-logo-container {
  margin-top: 3rem;
  padding: 3rem;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}

.partner-logo-container img {
  max-width: 200px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logo-container img:hover {
  opacity: 1;
}

#cta-box {
  background: var(--bg-alt);
  padding: 80px 0;
}

.cta-box {
  max-width: 580px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--forest), transparent);
}

.cta-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--forest-muted);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 1.5rem;
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}

.cta-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  padding: 16px 44px;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 2rem;
}

.cta-link:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(49,87,44,0.25);
  opacity: 1;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

#contact {
  background: var(--bg);
}

.contact-list {
  list-style: none;
  margin-top: 2.5rem;
  max-width: 480px;
}

.contact-list li {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-list strong {
  font-weight: 500;
  color: var(--text);
}

.contact-list a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest-muted);
  padding-bottom: 1px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-list a:hover {
  border-color: var(--forest);
  opacity: 1;
}

.contact-socials {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-socials span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.social-combined {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 40px;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.social-combined:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(10, 102, 194, 0.4);
  opacity: 0.9;
}

.social-combined svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.footer-linkedin {
  display: flex;
  align-items: center;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.footer-linkedin:hover {
  color: var(--text-secondary);
  opacity: 1;
}

.footer-linkedin svg {
  width: 18px;
  height: 18px;
}

.lang-toggle {
  position: relative;
  margin-left: 0.5rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1;
}

.lang-btn:hover {
  border-color: var(--forest-muted);
  background: var(--forest-pale);
  color: var(--forest);
}

.lang-chevron {
  width: 8px;
  height: 8px;
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-toggle.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  z-index: 200;
  min-width: 100px;
}

.lang-toggle.open .lang-menu {
  display: block;
}

.lang-menu .flag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}

.lang-menu .flag:last-child {
  border-bottom: none;
}

.lang-menu .flag:hover {
  background: var(--forest-pale);
}

.lang-menu .flag.active {
  color: var(--forest);
  font-weight: 500;
}

/* --- Nav dropdown (Ingredients) --- */

.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  cursor: default;
}

.nav-dropdown-trigger:hover {
  color: var(--forest);
  opacity: 1;
}

.dropdown-chevron {
  width: 8px;
  height: 8px;
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
}

.nav-dropdown-wrapper:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-panel a:last-child {
  border-bottom: none;
}

.nav-dropdown-panel a:hover {
  background: var(--forest-pale);
  color: var(--forest);
  opacity: 1;
}

/* --- End nav dropdown --- */

.contact-form {
  margin-top: 3rem;
  max-width: 560px;
}

.form-feedback {
  display: none;
  margin-top: 3rem;
  max-width: 560px;
}

.form-feedback p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.7;
  padding: 1.5rem 2rem;
  background: var(--forest-pale);
  border-left: 3px solid var(--forest);
  border-radius: 4px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 10px 14px;
  transition: border-color 0.3s ease;
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(49,87,44,0.4);
}

.form-submit {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 4px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(49,87,44,0.2);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links.mobile-active {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 1rem 24px;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--border);
  }

  .nav-cta.mobile-active {
    display: inline-block;
    text-align: center;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline-number {
    left: -50px;
    width: 34px;
    height: 34px;
  }

  .timeline-line {
    left: 16px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .cta-box {
    padding: 40px 28px;
  }

  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-list strong {
    display: block;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
  }

  .hero-cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  html {
    scroll-behavior: auto;
  }

  .scroll-chevron {
    animation: none;
    opacity: 0.4;
  }
}

/* =====================================================================
   HOMEPAGE REDESIGN — 3-column nav + blog-style hero
   ===================================================================== */

/* 3-column nav layout */
.home-nav-container {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 2.5rem;
  align-items: center;
  max-width: unset;
  padding: 0 40px !important;
}

.home-nav-left,
.home-nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.home-nav-left {
  justify-content: flex-end;
}

.home-nav-right {
  justify-content: flex-start;
}

.home-nav-left a,
.home-nav-right a:not(.nav-cta) {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.home-nav-left a:hover,
.home-nav-right a:not(.nav-cta):hover {
  color: var(--forest);
  opacity: 1;
}

/* Dark nav over hero */
nav.nav-dark {
  background: transparent;
}

/* Top-down scrim so nav items are always legible regardless of hero image content */
nav.nav-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), transparent);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.4s ease;
}

nav.nav-dark.scrolled::before {
  opacity: 0;
}

nav.nav-dark .home-nav-left a,
nav.nav-dark .home-nav-right a:not(.nav-cta),
nav.nav-dark .nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.72);
}

nav.nav-dark .home-nav-left a:hover,
nav.nav-dark .home-nav-right a:not(.nav-cta):hover,
nav.nav-dark .nav-dropdown-trigger:hover {
  color: #fff;
  opacity: 1;
}

/* Dropdown panel stays dark regardless of nav state */
nav.nav-dark .home-nav-right .nav-dropdown-panel a {
  color: var(--text);
}

nav.nav-dark .home-nav-right .nav-dropdown-panel a:hover {
  color: var(--forest);
  opacity: 1;
}

nav.nav-dark .nav-logo img {
  filter: brightness(0) invert(1);
}

nav.nav-dark .nav-cta {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
}

nav.nav-dark .nav-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  opacity: 1;
}

nav.nav-dark .lang-btn {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  background: none;
}

nav.nav-dark .lang-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

nav.nav-dark .lang-chevron,
nav.nav-dark .dropdown-chevron {
  color: rgba(255, 255, 255, 0.5);
}

nav.nav-dark .mobile-toggle span {
  background: #fff;
}

/* Revert to light on scroll */
nav.nav-dark.scrolled .home-nav-left a,
nav.nav-dark.scrolled .home-nav-right a:not(.nav-cta),
nav.nav-dark.scrolled .nav-dropdown-trigger {
  color: var(--text);
}

nav.nav-dark.scrolled .home-nav-left a:hover,
nav.nav-dark.scrolled .home-nav-right a:not(.nav-cta):hover,
nav.nav-dark.scrolled .nav-dropdown-trigger:hover {
  color: var(--forest);
}

nav.nav-dark.scrolled .nav-logo img {
  filter: none;
}

nav.nav-dark.scrolled .nav-cta {
  color: var(--forest);
  border-color: var(--forest-muted);
  background: var(--forest-pale);
}

nav.nav-dark.scrolled .nav-cta:hover {
  background: rgba(49, 87, 44, 0.15);
  border-color: rgba(49, 87, 44, 0.4);
  color: var(--forest-dark);
  opacity: 1;
}

nav.nav-dark.scrolled .lang-btn {
  color: var(--text);
  border-color: var(--border);
  background: none;
}

nav.nav-dark.scrolled .lang-btn:hover {
  border-color: var(--forest-muted);
  background: var(--forest-pale);
  color: var(--forest);
}

nav.nav-dark.scrolled .lang-chevron,
nav.nav-dark.scrolled .dropdown-chevron {
  color: var(--text-tertiary);
}

nav.nav-dark.scrolled .mobile-toggle span {
  background: var(--text);
}

/* Mobile menu — full-screen frosted overlay */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  height: 100dvh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(10, 18, 10, 0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  overflow-y: auto;
}

#mobileMenu.active {
  display: flex;
}

#mobileMenu a {
  padding: 15px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  max-width: 320px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}

#mobileMenu a:last-of-type {
  border-bottom: none;
}

#mobileMenu a:hover {
  color: #fff;
  background: none;
  opacity: 1;
}

/* Language pills inside mobile menu */
.mobile-menu-lang {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
  width: 100%;
}

.mobile-lang-opt {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.42);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  user-select: none;
}

.mobile-lang-opt:hover {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-lang-opt.active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

/* Prevent page scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Burger → X animation */
.mobile-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =====================================================================
   HERO — Blog-style dark image hero
   ===================================================================== */

/* Subtle grid pattern — same as blog hero */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Bottom-to-top dark gradient for text legibility */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.home-hero-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.home-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2rem;
}

html[lang="fr"] .home-hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.home-hero-standfirst {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.home-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero-btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--forest-dark);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 12px 28px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s ease;
}

.home-hero-btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

.home-hero-btn-secondary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 12px 28px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  opacity: 1;
}

.home-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.home-hero-scroll .scroll-cue-label {
  color: rgba(255, 255, 255, 0.28);
}

.home-hero-scroll .scroll-chevron {
  border-right-color: rgba(255, 255, 255, 0.28);
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
  .home-nav-left {
    display: none;
  }

  .home-nav-right > a:not(.mobile-toggle),
  .home-nav-right .nav-dropdown-wrapper,
  .home-nav-right .lang-toggle,
  .home-nav-right .nav-cta {
    display: none;
  }

  .home-nav-right .mobile-toggle {
    display: flex;
  }

  .home-nav-container {
    padding: 0 20px !important;
    grid-template-columns: auto 1fr auto;
  }

  .home-hero-content {
    padding: 0 24px;
  }

  .home-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  #hero {
    justify-content: flex-start;
    padding-top: 22vh;
    padding-bottom: 0;
  }

  .home-nav-right {
    justify-content: flex-end;
  }
}