/* === TOKENS === */
:root {
  --green:        #70CE99;
  --green-light:  #E0F6EB;
  --green-dark:   #4BAF7A;
  --dark:         #2E2E2E;
  --dark-2:       #3D3D3D;
  --orange:       #E8953C;
  --orange-light: #FAE3C8;
  --peach:        #F4C8A0;
  --white:        #FFFFFF;
  --bg:           #FAFAFA;
  --text:         #2E2E2E;
  --text-muted:   #6B6B6B;
  --border:       #E4E4E4;

  --radius:    6px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w: 1140px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === LAYOUT === */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 5rem 0; }
.section--sm  { padding: 3.5rem 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn--green  { background: var(--green); color: var(--dark); border-color: var(--green); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--dark   { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: var(--dark-2); border-color: var(--dark-2); }
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--dark); }

/* === HEADER === */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo img { height: 44px; width: auto; }
.site-logo--text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.01em;
}
.site-logo--text span { color: var(--green); }

.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  color: var(--dark);
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.site-nav a:hover { background: var(--green-light); color: var(--dark); }
.site-nav .nav-cta { background: var(--green); color: var(--dark); font-weight: 700; margin-left: .5rem; letter-spacing: .04em; font-size: .8125rem; text-transform: uppercase; }
.site-nav .nav-cta:hover { background: var(--green-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* === HERO === */
.hero {
  background: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  background: var(--green-light);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: .6;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--green); }
.hero__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image {
  position: relative;
  z-index: 1;
}
.hero__image-wrap {
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 55%;
  overflow: hidden;
  background: var(--green-light);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-placeholder {
  font-size: 7rem;
  opacity: .3;
}

/* === SECTION HEADERS === */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.section-eyebrow--light { color: var(--green); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: .75rem;
}
.section-title--light { color: var(--white); }
.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-lead--light { color: rgba(255,255,255,.75); }

/* === DARK BANNER (FAQ/info strip) === */
.dark-banner { background: var(--dark); color: var(--white); }
.dark-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.dark-banner__quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.dark-banner__text {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.service-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === EVENTS === */
.events-section { background: var(--bg); }
.events-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.events-image {
  background: var(--orange);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.events-image::before {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
}
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.event-date { text-align: center; }
.event-date__month {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.event-date__day {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}
.event-time { font-size: .8rem; color: var(--text-muted); margin-bottom: .25rem; }
.event-title { font-size: .9375rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.events-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }

/* === JOBBA HOS OSS === */
.jobs-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: .55;
  pointer-events: none;
}
.blob--top-left  { top: -80px; left: -80px; width: 280px; height: 280px; background: var(--peach); }
.blob--bot-right { bottom: -80px; right: -80px; width: 240px; height: 240px; background: var(--orange-light); }
.jobs-section .container { position: relative; z-index: 1; }
.jobs-section .section-title { max-width: 520px; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.jobs-section .section-lead { margin: 0 auto 2.25rem; }

/* === CONTACT CTA === */
.cta-band {
  background: var(--green);
  color: var(--dark);
  text-align: center;
  padding: 5rem 0;
}
.cta-band .section-title { color: var(--dark); }
.cta-band .section-lead  { color: var(--dark); opacity: .75; margin: 0 auto 2rem; }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: #888;
  padding: 3rem 0 2rem;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.site-footer__brand {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--green);
}
.site-footer__links { display: flex; gap: 1.5rem; }
.site-footer__links a { font-size: .8125rem; transition: color .15s; }
.site-footer__links a:hover { color: var(--green); }
.site-footer__copy { font-size: .8rem; text-align: center; }

/* === CONTENT PAGES === */
.page-wrap { padding: 4rem 0 5rem; }
.entry-header { margin-bottom: 2.5rem; }
.entry-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.025em; color: var(--dark); line-height: 1.15; }
.entry-content p   { margin-bottom: 1.1rem; color: var(--text); line-height: 1.8; }
.entry-content h2  { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 2.25rem 0 .75rem; }
.entry-content h3  { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 1.75rem 0 .5rem; }
.entry-content ul,
.entry-content ol  { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li  { margin-bottom: .4rem; line-height: 1.7; }
.entry-content a   { color: var(--green-dark); text-decoration: underline; }

/* === 404 === */
.not-found { padding: 6rem 0; text-align: center; }
.not-found__code { font-size: 6rem; font-weight: 900; color: var(--green-light); line-height: 1; margin-bottom: 1rem; }
.not-found__title { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.not-found__text { color: var(--text-muted); margin-bottom: 2rem; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero__inner   { grid-template-columns: 1fr; gap: 2rem; }
  .hero__image   { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .events-inner  { grid-template-columns: 1fr; }
  .events-image  { display: none; }
  .dark-banner__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .site-nav      { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: var(--shadow-lg); border-top: 1px solid var(--border); }
  .site-nav.is-open { display: flex; }
  .nav-toggle    { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .hero          { padding: 3.5rem 0 3rem; }
}
