:root {
  --green-dark: #204632;
  --green: #3f7a56;
  --green-mid: #5c9270;
  --green-bg: #eef3ea;
  --yellow: #f2c14e;
  --yellow-soft: #fbe6ae;
  --text: #24332a;
  --text-soft: #55655a;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(32, 70, 50, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--green-bg);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url(ananas-transparent-stripes.png);
  background-repeat: no-repeat;
  background-position: center calc(50% + 55px);
  background-size: auto min(720px, 82vh);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 860px) {
  body::before {
    background-size: auto min(460px, 58vh);
    background-position: center calc(50% + 40px);
  }
}

h1, h2, h3, .logo {
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(238, 243, 234, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(32, 70, 50, 0.08);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}

.logo span {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-soft);
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

.site-header nav a:hover { color: var(--green); }

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 560px) {
  .hero { min-height: calc(100vh - 60px); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-soft);
  margin-top: 8px;
  font-weight: 400;
}

.hero-tags {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags span {
  background: var(--white);
  border: 1px solid rgba(32, 70, 50, 0.12);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
  box-shadow: var(--shadow);
}

/* Section shell */

section {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading .kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 8px;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg { width: 22px; height: 22px; stroke: var(--white); }

.service-card h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.service-card li { margin-bottom: 4px; }

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(32, 70, 50, 0.08);
  text-decoration: none;
  color: var(--text);
}

.contact-row:last-child { border-bottom: none; }

.contact-row .icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row .icon svg { width: 18px; height: 18px; stroke: var(--green-dark); }

.contact-row .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.contact-row .value { font-weight: 500; font-size: 1.02rem; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* Partners */

.partners {
  text-align: center;
}

.partner-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.partner-chip {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(32, 70, 50, 0.1);
  border-radius: 16px;
  padding: 22px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(32, 70, 50, 0.14);
}

.partner-chip img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.partner-chip .partner-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-soft);
}

/* Footer */

footer {
  padding: 34px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}

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

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .site-header nav { gap: 16px; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .site-header { padding: 14px 18px; }
  .site-header nav { display: none; }
  .hero { padding: 60px 0 50px; }
  section { padding: 50px 0; }
}
