:root {
  --bg: #ffffff;
  --surface: #fffaf1;
  --ink: #1d2b23;
  --muted: #55655a;
  --line: #d8cebc;
  --brand: #0f7a5b;
  --brand-dark: #0a5942;
  --accent: #e9774a;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(35, 51, 44, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 206, 188, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
}

.brand-dot {
  width: 11px;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(233, 119, 74, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  width: 44px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

.hero {
  padding: 6.5rem 0 4rem;
}

.hero-layout {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-visual {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
}

h1 {
  margin-top: 0.4rem;
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.hero-copy {
  margin: 1rem 0 1.8rem;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  background: var(--brand);
  color: #f7fff9;
  padding: 0.78rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 122, 91, 0.28);
}

.btn-small {
  padding: 0.56rem 1rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.hero-stats {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats article {
  padding: 1rem 1.2rem;
  background: linear-gradient(140deg, #fffaf2, #fbf4e8);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero-stats h3 {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.hero-stats p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.partners {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(216, 206, 188, 0.6);
  border-bottom: 1px solid rgba(216, 206, 188, 0.6);
  background: rgba(255, 255, 255, 0.4);
}

.partners p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.logo-row {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.logo-row span {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #3d4d41;
}

section {
  padding: 4.8rem 0;
}

.section-head {
  max-width: 64ch;
}

h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 3.4vw, 2.65rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

.showcase {
  padding-top: 1.2rem;
}

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

.image-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(35, 51, 44, 0.08);
}

.image-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.image-copy {
  padding: 0.95rem 1rem 1.1rem;
}

.image-copy h3 {
  font-size: 1.1rem;
}

.image-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.cards {
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.78);
  padding: 1.2rem;
  border-radius: var(--radius);
  transition: transform 150ms ease, box-shadow 180ms ease;
}

.card h3 {
  font-size: 1.25rem;
}

.card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

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

.feature-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  border-top: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.9), rgba(255, 255, 255, 0.78));
  border-radius: var(--radius);
  padding: 1.2rem;
}

.feature p {
  color: var(--muted);
}

.timeline {
  background: linear-gradient(180deg, rgba(15, 122, 91, 0.08), rgba(15, 122, 91, 0));
}

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

.process-banner {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  max-height: 300px;
  object-fit: cover;
}

.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand-dark);
  font-weight: 700;
}

.steps h3 {
  margin-top: 0.65rem;
}

.steps p {
  color: var(--muted);
}

.cta {
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, #fffaf2, #f7efdf);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.cta p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 0.56rem;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ccbfa7;
  font: inherit;
  padding: 0.75rem 0.82rem;
  background: rgba(255, 255, 255, 0.8);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(15, 122, 91, 0.3);
  border-color: var(--brand);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 2.2rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: #4e5b52;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms ease, transform 450ms ease;
}

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

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

  .hero-visual {
    min-height: 340px;
  }

  .image-grid,
  .cards,
  .feature-grid,
  .steps,
  .cta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-block;
  }

  nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #f6efdf;
    border-bottom: 1px solid var(--line);
  }

  nav a {
    padding: 0.9rem 1rem;
    border-top: 1px solid rgba(216, 206, 188, 0.65);
  }

  nav.show {
    display: flex;
  }

  h1 {
    max-width: 100%;
  }

  .hero-stats,
  .image-grid,
  .cards,
  .feature-grid,
  .steps,
  .cta {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.8rem 0;
  }
}
