:root {
  --ink: #13201d;
  --muted: #62706c;
  --paper: #f8f7f2;
  --white: #ffffff;
  --line: rgba(19, 32, 29, 0.12);
  --green: #126b57;
  --blue: #2454a6;
  --gold: #c88b2f;
  --orange: #d86735;
  --shadow: 0 24px 70px rgba(19, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(248, 247, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.top-nav a:hover {
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(20px, 5vw, 64px);
  padding-top: 38px;
  padding-bottom: 54px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel,
.hero-media {
  position: relative;
}

.hero-panel img,
.hero-media img {
  min-height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 7px;
  padding: 20px;
  color: var(--white);
  background: rgba(19, 32, 29, 0.78);
  border-radius: 8px;
}

.panel-note span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.section {
  padding: 86px clamp(20px, 5vw, 64px);
}

.section-heading {
  display: block;
  max-width: 850px;
  margin-bottom: 34px;
}

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

.service-grid article,
.pathway-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--green);
  border: 1px solid rgba(18, 107, 87, 0.24);
  border-radius: 8px;
  font-weight: 900;
}

.service-grid p,
.pathway-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.service-grid a,
.pathway-grid a {
  color: var(--green);
  font-weight: 850;
  font-size: 0.95rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 72px clamp(20px, 5vw, 64px);
  background: #202824;
  color: var(--white);
}

.feature-strip .eyebrow {
  color: #f1a36f;
}

.feature-strip h2 {
  margin-bottom: 0;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-list span {
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.quote-section {
  padding: clamp(56px, 9vw, 118px) clamp(20px, 12vw, 150px);
  color: var(--white);
  background: var(--green);
}

.quote-section blockquote {
  margin: 0 0 24px;
  max-width: 1050px;
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.quote-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 86px clamp(20px, 5vw, 64px);
}

.packages article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-package {
  color: var(--white);
  background: var(--green) !important;
}

.featured-package p,
.featured-package .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: #121817;
}

.footer h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

/* Form Styles */
.form-section {
  padding: 86px clamp(20px, 5vw, 64px);
  max-width: 720px;
  margin: 0 auto;
}

form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 700;
  color: var(--ink);
}

input,
textarea,
select {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 107, 87, 0.1);
}

.form-status {
  padding: 16px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-status.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.contact-info {
  display: grid;
  gap: 20px;
  margin-top: 60px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

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

  .hero,
  .feature-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .service-grid,
  .pathway-grid,
  .packages {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}
