:root {
  --brand-accent: #A9CF97;
  --text-base: 1.1rem;
  --bg: rgb(234, 240, 236);
  --bg-soft: #E1EBE4;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: #ffffff;
  --surface-dark: #1E3F2E;
  --text: #192B21;
  --muted: #6C7267;
  --line: rgba(72, 84, 66, 0.1);
  --sage: #5A876B;
  --olive: #395E46;
  --earth: #5C7A65;
  --clay: #996D57;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(45, 48, 42, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #2b4534;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(129, 145, 121, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(168, 134, 110, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.main-logo-container {
  display: flex;
  justify-content: flex-start;
  padding: 1.75rem 0 0.5rem;
}

.main-logo {
  width: min(100%, 360px);
  height: auto;
}

.topbar { position: sticky; top: 0.5rem; z-index: 100; display: flex; align-items: center; justify-content: center; gap: 3rem; gap: 1.5rem; margin: 1rem auto 0; padding: 0.8rem 1.6rem; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); background: rgba(255,255,255,0.9); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }

.brand { display: none; }

.brand__logo { height: 50px; width: auto; object-fit: contain; mix-blend-mode: multiply; transition: opacity 0.2s ease; }
.brand:hover .brand__logo { opacity: 0.8; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a {
  position: relative;
  transition: color 0.2s;
}

.nav a:hover, .nav a:focus-visible {
  color: #1a3625;
}

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

.lang-switch {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.lang-switch__button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch__button.is-active {
  background: var(--surface-dark);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--brand-accent);
  color: #1a3625;
  border: 1px solid var(--brand-accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(169, 207, 151, 0.4);
  background: #95bd84;
  border-color: #95bd84;
}

.button--ghost {
  background: transparent;
  color: #1a3625;
  border-color: var(--brand-accent);
}
.button--ghost:hover {
  background: rgba(169, 207, 151, 0.2);
  border-color: var(--brand-accent);
}

.button--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0 3.5rem;
}

.eyebrow,
.section__eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero h1,
.section h2,
.hero-card h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #1a3625;
}

.hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.2rem);
  font-weight: 500;
  max-width: 12ch;
}

.hero__lead,
.section__heading p,
.section__copy-stack p,
.service-card p,
.feature-grid p,
.timeline p,
.faq-list p,
.contact-card p,
.footer p,
.hero-card p,
.trust-strip p {
  color: var(--muted);
  line-height: 1.6;
}

.hero__lead {
  max-width: 54ch;
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.hero__stats article strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1a3625;
}

.hero__stats article span {
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero__panel {
  position: relative;
  display: grid;
  gap: 1.2rem;
  height: 100%;
}

.hero-card {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow);
}

.hero-card__content {
  position: relative;
  z-index: 2;
}

.hero-card--main {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-card__label, .hero-card--main h2, .hero-card--main p {
  z-index: 2;
  position: relative;
}

.hero-card--main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(30,41,34,0.7) 100%);
  z-index: 1;
}

.hero-card__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-accent);
  color: #1a2a20;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-card--main h2,
.hero-card--main p {
  color: var(--white);
  z-index: 2;
}

.hero-card h2 {
  font-size: clamp(2.2rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-card--secondary {
  background: var(--surface-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.hero-card--secondary p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--sage);
  text-align: center;
  font-style: italic;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.trust-strip article {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.trust-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: #1a3625;
}

.section {
  padding: 4rem 0;
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.img-wrap:hover img {
  transform: scale(1.03);
}

.section__heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section__heading h2,
.section--split h2 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 500;
}
.section--split h2 { margin-bottom: 2rem; }

.section__copy-stack p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-strong);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 2.5rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.1);
}

.service-card__fig {
  margin: 0 0 1.5rem;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.service-card__fig::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.service-card__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__fig img {
  transform: scale(1.05);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 2rem;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: var(--brand-accent);
  color: #1a2a20;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: #1a3625;
}

.service-card__content > p {
  margin: 0;
}

.service-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.service-details p {
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.expand-btn {
  margin-top: 1.1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
}

.expand-btn:hover,
.expand-btn:focus-visible {
  color: #1a3625;
}

.service-card--featured {
  background: var(--bg-soft);
}

.feature-grid, .timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-grid article, .timeline article {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature-grid h3, .timeline h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: #1a3625;
}

.timeline strong {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--olive);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.faq-list details {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all 0.3s;
}

.faq-list details[open] {
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1a3625;
  display: flex;
  justify-content: center; gap: 3rem;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  color: var(--sage);
  font-size: 1.5rem;
  font-weight: 300;
}
.faq-list details[open] summary::after {
  content: '-';
}

.faq-list p {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: 3.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(242,239,232,0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-grid article {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.contact-grid h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--earth);
  margin: 0 0 0.5rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero, .section--split, .contact-card {
    grid-template-columns: 1fr;
  }
  
  .hero__panel {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .hero-card--main { min-height: 340px; }

  .service-grid, .feature-grid, .timeline, .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar { top: 0.5rem; padding: 0.6rem 1rem; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; display: flex; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
  .topbar__actions .button--sm {
    display: none;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 3.5rem);
  }
  .hero__stats, .hero__panel, .service-grid, .feature-grid, .timeline, .trust-strip, .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 2rem;
  }
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .main-logo {
    width: min(100%, 280px);
  }
}



.clean-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}
.clean-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #2b4534;
  font-weight: 500;
}
.clean-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* Fix for background image bleeding under glassmorphism */
body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(129, 145, 121, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(168, 134, 110, 0.05) 0%, transparent 40%);
}

.topbar {
  background: var(--surface-strong); /* solid background to prevent white box bleed from logo */
  backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.brand__logo {
  mix-blend-mode: normal; /* with solid bg, we just let it sit normally */
  height: 38px; 
}

.text-green-accent { color: var(--sage); }
