/* ===== Design tokens ===== */
:root {
  --green-900: #234034;
  --green-700: #2f5d4a;
  --green-600: #3a7a5f;
  --green-500: #4c9a76;
  --sand-100: #f6f2e9;
  --sand-200: #ece4d3;
  --cream: #fbf9f4;
  --ink: #26312b;
  --ink-soft: #55625b;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(35, 64, 52, 0.10);
  --radius: 16px;
  --maxw: 1080px;
}

/* ===== Base ===== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: var(--green-700); }

.bold {
    font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Sticky nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sand-200);
}

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

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 55px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-links a:hover { color: var(--green-700); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.05s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--green-700); }
.btn-primary:active { transform: translateY(1px); }

/* ===== Hero ===== */
.hero {
  background: var(--sand-100);
}

.hero-inner {
  padding: 5.5rem 1.25rem 5rem;
  text-align: center;
  max-width: 760px;
}

.hero-logo {
  display: block;
  width: clamp(180px, 30vw, 280px);
  height: auto;
  margin: 0 auto 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 1rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 0 auto 2rem;
  max-width: 560px;
}

/* ===== Sections ===== */
.section { padding: 4.5rem 0; }

.section-alt { background: var(--sand-100); }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--green-900);
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.section-text {
  text-align: center;
  color: var(--ink-soft);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

/* ===== Split (text + image) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
}

.split-text { text-align: center; }

.split-text p {
  max-width: none;
  margin: 0 0 1rem;
  text-align: justify;
}

.split-text p:last-child { margin-bottom: 0; }

.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-200);
}

/* Second variant: image on the left, text on the right */
.split-reverse .split-text { order: 2; }
.split-reverse .split-media { order: 1; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-reverse .split-text,
  .split-reverse .split-media { order: 0; }
}

/* ===== Cards (services + testimonials) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--green-900);
  font-size: 1.25rem;
}

.card p { margin: 0; color: var(--ink-soft); }

/* ===== Services page ===== */
.page-header {
  background: var(--sand-100);
  padding: 4rem 0 3rem;
  text-align: center;
}

.services-more {
  text-align: center;
  margin-top: 2rem;
}

.services-more a {
  font-weight: 600;
  text-decoration: none;
  color: var(--green-700);
}

.services-more a:hover { color: var(--green-900); }

.service .container {
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

@media (max-width: 560px) {
  .service .container { padding: 1.75rem 1.5rem; }
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-600);
  margin: 0 0 0.4rem;
}

.service h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-900);
  margin: 0 0 1rem;
}

.service p { color: var(--ink-soft); margin: 0 0 1rem; }

.service-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.service-list li { margin-bottom: 0.4rem; }

.callout {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-left: 4px solid var(--green-600);
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.cta-band {
  text-align: center;
  padding: 4rem 0;
}

.cta-band .section-title { margin-bottom: 1.5rem; }

/* ===== Industry chips ===== */
.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.chip {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  color: var(--green-900);
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* ===== Testimonials ===== */
.quote {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 0;
  box-shadow: var(--shadow);
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.quote figcaption {
  color: var(--green-700);
  font-weight: 600;
}

/* ===== Contact ===== */
.contact-inner { max-width: 640px; text-align: center; }

.contact-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  align-items: baseline;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}

.contact-label {
  font-weight: 700;
  color: var(--green-900);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-900);
  color: var(--sand-100);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--sand-200); }

/* ===== Small screens ===== */
@media (max-width: 560px) {
  .nav-links { gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
