:root {
  --bg: #f5f8ef;
  --bg-alt: #e8f0d6;
  --surface: rgba(255, 255, 255, 0.74);
  --text: #1a2219;
  --muted: #4c5f4f;
  --accent: #f04e23;
  --accent-dark: #b93816;
  --stroke: rgba(26, 34, 25, 0.12);
  --shadow: 0 14px 30px rgba(26, 34, 25, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% 10%, #fdf6e9 0%, var(--bg) 42%, #edf5de 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/patterns/warm-grid.svg");
  background-size: 260px 260px;
  opacity: 0.26;
  pointer-events: none;
}

h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: #ffd1b8;
  top: -120px;
  right: -120px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: #c6e6b5;
  bottom: -120px;
  left: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 239, 0.8);
  border-bottom: 1px solid var(--stroke);
  z-index: 30;
}

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

.brand {
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
}

.menu-btn {
  display: none;
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7a54 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn:hover {
  filter: brightness(0.95);
}

.btn-small {
  padding: 0.6rem 1rem;
}

.link-btn {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--text);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0.4rem 0 1rem;
}

.hero p {
  max-width: 56ch;
  color: var(--muted);
}

.hero-actions {
  margin: 1.4rem 0;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.mini-metrics {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.mini-metrics li {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.hero-card {
  border: 1px solid var(--stroke);
  background: var(--surface);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
}

.hero-visual > img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(26, 34, 25, 0.1);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.55);
}

.hero-visual .hero-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100% - 2rem));
  backdrop-filter: blur(8px);
}

.card-title {
  margin-top: 0;
  font-weight: 700;
}

.status-grid {
  display: grid;
  gap: 0.9rem;
}

.status-grid div {
  padding: 0.95rem;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
}

.status-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 4.7rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.7rem;
}

.section h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.55rem, 4vw, 2.5rem);
}

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

.service-card,
.benefit {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.1rem;
}

.service-card h3,
.benefit h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0.35rem;
}

.service-card p,
.benefit p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-contrast {
  background: linear-gradient(140deg, var(--bg-alt) 0%, #d9ecc6 100%);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

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

.estaq-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(130deg, #fff7f0 0%, #eef7e7 100%);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.estaq-logo-wrap {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.2rem;
}

.estaq-logo-wrap img {
  width: 100%;
  display: block;
}

.estaq-copy p:last-of-type {
  color: var(--muted);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.mission-card,
.vision-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.mission-card p:last-child,
.vision-card p:last-child {
  margin: 0;
  color: var(--muted);
}

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

.story-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-copy {
  padding: 1rem;
}

.story-copy h3 {
  margin: 0;
  font-size: 1.1rem;
}

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

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

.results-panel div {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.results-panel span {
  display: block;
  color: var(--muted);
}

.results-panel strong {
  font-size: 2rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  background: linear-gradient(120deg, #1b3522 0%, #2f5234 100%);
  color: #f9fff6;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: #dbe7d6;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-box .link-btn {
  color: #f9fff6;
  border-bottom-color: #f9fff6;
}

.address {
  margin-top: 1.1rem;
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.legal-links {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.legal-links a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 95, 79, 0.35);
}

.legal-links a:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .benefits-grid,
  .estaq-card,
  .mission-vision-grid,
  .stories-grid,
  .results-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-visual .hero-card {
    position: static;
    margin-top: 0.9rem;
    width: 100%;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 4vw;
    top: 68px;
    width: min(270px, 92vw);
    background: rgba(245, 248, 239, 0.96);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

