@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ===========================
   TOKENS
=========================== */
:root {
  --green:       oklch(0.48 0.13 145);
  --green-dark:  oklch(0.32 0.12 145);
  --green-light: oklch(0.76 0.10 145);
  --green-pale:  oklch(0.94 0.04 145);
  --sky:         oklch(0.68 0.10 220);
  --sky-light:   oklch(0.92 0.05 220);
  --tan:         oklch(0.90 0.04 85);
  --tan-mid:     oklch(0.80 0.06 80);
  --cream:       oklch(0.975 0.012 85);
  --white:       #ffffff;
  --text:        oklch(0.22 0.02 145);
  --text-muted:  oklch(0.48 0.03 145);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px oklch(0.32 0.12 145 / 0.10);
  --shadow-md:   0 6px 24px oklch(0.32 0.12 145 / 0.14);
  --shadow-lg:   0 16px 48px oklch(0.32 0.12 145 / 0.18);
  --nav-h:       72px;
  --max-w:       1160px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }
p { text-wrap: pretty; }

.display { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700; line-height: 1.1; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--text-muted); }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid oklch(0.90 0.03 145);
  z-index: 100;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { background: var(--green-pale); color: var(--green-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid oklch(0.90 0.03 145);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.88rem;
}
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 40px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   LAYOUT
=========================== */
.page-body { padding-top: var(--nav-h); }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-green { color: var(--green); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: var(--white); color: var(--green-dark); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green-pale); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--tan); }
.btn-sky { background: var(--sky); color: var(--white); }
.btn-sky:hover { background: oklch(0.58 0.10 220); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card-icon.sky { background: var(--sky-light); }
.card-icon.tan { background: var(--tan); }

/* ===========================
   PHOTO
=========================== */
.photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   SECTION BGs
=========================== */
.bg-green { background: var(--green); }
.bg-green-dark { background: var(--green-dark); }
.bg-green-pale { background: var(--green-pale); }
.bg-tan { background: var(--tan); }
.bg-sky-light { background: var(--sky-light); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--green-pale);
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.hero-content { position: relative; z-index: 2; }

/* ===========================
   DIVIDER
=========================== */
.wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave svg { display: block; }

/* ===========================
   STATS
=========================== */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===========================
   TAGS / BADGES
=========================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-green { background: var(--green-pale); color: var(--green-dark); }
.badge-sky { background: var(--sky-light); color: oklch(0.35 0.12 220); }
.badge-tan { background: var(--tan); color: oklch(0.40 0.06 85); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--green-dark);
  color: oklch(0.85 0.05 145);
  padding: 64px 0 32px;
}
.footer h4 { color: var(--white); margin-bottom: 16px; }
.footer a { color: oklch(0.80 0.05 145); font-size: 0.9rem; transition: color var(--transition); }
.footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.6; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  border-top: 1px solid oklch(0.45 0.08 145);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: oklch(0.60 0.05 145);
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   PAGE HEADER (inner pages)
=========================== */
.page-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, oklch(0.48 0.13 145 / 0.5) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { color: var(--green-light); margin-bottom: 12px; }
.page-header h1 { color: var(--white); }
.page-header p { color: oklch(0.85 0.05 145); max-width: 600px; margin-top: 16px; font-size: 1.1rem; }

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: oklch(0.70 0.05 145);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: oklch(0.65 0.05 145); }

/* ===========================
   JOB PAGE
=========================== */
.job-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}
.job-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
}
.job-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
}
.job-sidebar {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.job-sidebar h4 { margin-bottom: 16px; }
.job-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid oklch(0.88 0.05 145);
  font-size: 0.9rem;
}
.job-detail-row:last-child { border-bottom: none; }
.job-detail-label { color: var(--text-muted); font-weight: 500; }
.job-detail-val { font-weight: 600; }

/* ===========================
   FORM
=========================== */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-weight: 600; font-size: 0.9rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid oklch(0.88 0.04 145);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(0.48 0.13 145 / 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ===========================
   BENEFIT PILL
=========================== */
.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid oklch(0.90 0.04 145);
}
.benefit-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.benefit-pill.sky .dot { background: var(--sky); }
.benefit-pill.tan .dot { background: var(--tan-mid); }

/* ===========================
   RESPONSIVE
=========================== */
.nav-mobile { display: none; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
  display: none;
  position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid oklch(0.90 0.03 145);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 1rem;
  }
  .nav-mobile a:hover { background: var(--green-pale); color: var(--green-dark); }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
}
