:root {
  --green-deep: #12392e;
  --green: #184a3b;
  --green-soft: #2f6857;

  --blue: #355c74;
  --blue-soft: #8da8b8;
  --blue-mist: #dce8ee;

  --cream: #f7f8f5;
  --white: #ffffff;

  --charcoal: #243036;
  --text-soft: #617078;

  --border: rgba(24, 74, 59, 0.12);

  --shadow:
    0 18px 60px rgba(18, 57, 46, 0.10);

  --shadow-hover:
    0 22px 70px rgba(18, 57, 46, 0.16);

  --radius: 20px;

  --container: 1180px;
}


/* -----------------------
   RESET
----------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
}

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

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}


/* -----------------------
   HEADER
----------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(247, 248, 245, 0.90);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(24, 74, 59, 0.08);
}

.nav-container {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-logo {
  width: 54px;
  height: 54px;

  object-fit: contain;

  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: Georgia, serif;

  font-size: 1.1rem;
  letter-spacing: 0.16em;

  color: var(--green-deep);
}

.brand-tagline {
  margin-top: 5px;

  font-size: 0.72rem;
  letter-spacing: 0.14em;

  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;

  font-size: 0.93rem;
  font-weight: 600;

  color: #435158;
}

.main-nav a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

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

.nav-cta {
  padding: 10px 18px;

  border: 1px solid rgba(24, 74, 59, 0.25);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--green);
  color: white !important;
}

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  color: var(--green-deep);

  font-size: 1.7rem;
  cursor: pointer;
}


/* -----------------------
   HERO
----------------------- */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 720px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      130deg,
      #f7f8f5 0%,
      #eef5f2 45%,
      #eef4f7 100%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;

  align-items: center;
  gap: 70px;

  padding: 90px 0;
}

.hero-content {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;

  color: var(--green-soft);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;

  font-family: Georgia, "Times New Roman", serif;

  color: var(--green-deep);

  font-size: clamp(3.4rem, 7vw, 6.3rem);

  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;

  background:
    linear-gradient(
      110deg,
      var(--green) 10%,
      var(--blue) 52%,
      var(--green-soft) 90%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-lead {
  max-width: 650px;

  margin-top: 28px;

  color: #52636a;

  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 24px;

  border-radius: 999px;

  font-size: 0.93rem;
  font-weight: 750;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.button-primary {
  color: white;

  background:
    linear-gradient(
      115deg,
      var(--green-deep),
      var(--green),
      var(--blue)
    );

  box-shadow:
    0 12px 28px rgba(24, 74, 59, 0.20);
}

.button-primary::after {
  content: "";

  position: absolute;

  top: -70%;
  left: -60%;

  width: 40%;
  height: 230%;

  transform: rotate(22deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.34),
      transparent
    );

  transition: left 0.65s ease;
}

.button-primary:hover::after {
  left: 125%;
}

.button-primary:hover {
  box-shadow:
    0 16px 35px rgba(24, 74, 59, 0.27);
}

.button-secondary {
  color: var(--green-deep);

  background: rgba(255, 255, 255, 0.60);

  border: 1px solid rgba(24, 74, 59, 0.20);

  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: white;
}

.button-large {
  min-height: 58px;
  padding: 0 30px;
}

.hero-note {
  margin-top: 28px;

  color: var(--blue);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.09em;
}

.hero-logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-halo {
  position: relative;

  width: min(100%, 430px);

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;

  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 34px rgba(18, 57, 46, 0.12));
}

/* Hero logo entrance: text stays immediately visible. */
.hero-logo-area {
  opacity: 0;
  transform: scale(0.72) translateY(24px);
}

body.page-loaded .hero-logo-area {
  animation: heroLogoGrow 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroLogoGrow {
  0% {
    opacity: 0;
    transform: scale(0.72) translateY(24px);
  }

  35% {
    opacity: 0.5;
    transform: scale(0.84) translateY(14px);
  }

  70% {
    opacity: 1;
    transform: scale(1.035) translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-area {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.hero-glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  filter: blur(80px);
  opacity: 0.32;
}

.hero-glow-one {
  top: -140px;
  right: -70px;

  background: var(--blue-soft);
}

.hero-glow-two {
  bottom: -180px;
  left: -120px;

  background: #9dcbb6;
}


/* -----------------------
   INTRO
----------------------- */

.intro {
  padding: 110px 0;

  background: white;
}

.intro-content {
  max-width: 900px;

  text-align: center;
}

.intro h2,
.section-heading h2,
.about h2,
.vision h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;

  color: var(--green-deep);

  font-size: clamp(2.3rem, 4vw, 4rem);

  line-height: 1.08;
  letter-spacing: -0.025em;
}

.intro h2 span,
.about h2 span {
  color: var(--blue);
}

.intro p:last-child {
  max-width: 760px;

  margin: 28px auto 0;

  color: var(--text-soft);

  font-size: 1.06rem;
}


/* -----------------------
   SERVICES
----------------------- */

.services {
  padding: 110px 0;

  background:
    linear-gradient(
      180deg,
      var(--cream),
      #edf4f1
    );
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  gap: 70px;
  align-items: end;

  margin-bottom: 52px;
}

.section-heading > p {
  color: var(--text-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;

  min-height: 285px;

  padding: 32px;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.66)
    );

  box-shadow: var(--shadow);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--green),
      var(--blue),
      transparent
    );
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(53, 92, 116, 0.24);

  box-shadow: var(--shadow-hover);
}

.service-number {
  margin-bottom: 48px;

  color: var(--blue-soft);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-bottom: 15px;

  color: var(--green-deep);

  font-family: Georgia, serif;

  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-soft);

  font-size: 0.95rem;
}


/* -----------------------
   ABOUT
----------------------- */

.about {
  padding: 120px 0;

  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;
  gap: 95px;
}

.growth-card {
  min-height: 470px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px;

  border-radius: 30px;

  color: white;

  background:
    linear-gradient(
      145deg,
      var(--green-deep),
      #1c5143 45%,
      var(--blue) 140%
    );

  box-shadow:
    0 35px 80px rgba(18, 57, 46, 0.20);
}

.growth-line {
  width: 55px;
  height: 3px;

  margin-bottom: 30px;

  background:
    linear-gradient(
      90deg,
      var(--blue-soft),
      white
    );
}

.growth-card p {
  margin-bottom: 25px;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.22em;

  opacity: 0.72;
}

.growth-card strong {
  font-family: Georgia, serif;

  font-size: clamp(2.3rem, 4vw, 3.8rem);

  line-height: 1.14;
}

.about-content > p:not(.section-kicker) {
  margin-top: 22px;

  color: var(--text-soft);

  font-size: 1.02rem;
}


/* -----------------------
   GROWTH PATH
----------------------- */

.growth-path {
  position: relative;
  overflow: hidden;

  padding: 125px 0;

  color: white;

  background:
    linear-gradient(
      120deg,
      #102f28,
      #16483b 48%,
      #284f67
    );
}

.growth-path::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -170px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(141, 168, 184, 0.24),
      transparent 67%
    );
}

.growth-path-inner {
  position: relative;
  z-index: 2;
}

.growth-path .section-kicker.light {
  color: #b9d6cc;
}

.growth-path h2 {
  font-family: Georgia, "Times New Roman", serif;

  color: white;

  font-size: clamp(2.3rem, 4vw, 4rem);

  line-height: 1.08;
  letter-spacing: -0.025em;
}

.growth-path h2 span {
  display: block;
  color: #c5dbe5;
}

.growth-intro {
  max-width: 760px;

  margin-top: 24px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 1.04rem;
}

.growth-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 22px;

  margin-top: 50px;
}

.growth-stage {
  position: relative;

  padding: 28px 24px 30px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.06);

  box-shadow: 0 18px 45px rgba(8, 24, 20, 0.18);
  backdrop-filter: blur(8px);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.growth-stage:hover {
  transform: translateY(-6px);

  border-color: rgba(197, 219, 229, 0.28);

  background: rgba(255, 255, 255, 0.09);

  box-shadow: 0 24px 55px rgba(8, 24, 20, 0.25);
}

.growth-stage-number {
  margin-bottom: 18px;

  color: #b9d6cc;

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.18em;
}

.growth-stage-icon {
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 12px;

  border-radius: 20px;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.05) 55%,
      transparent 75%
    );
}

.growth-stage-icon img {
  max-width: 105px;
  max-height: 120px;

  width: 100%;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.growth-stage-icon-tree img {
  max-width: 122px;
  max-height: 132px;
}

.growth-stage h3 {
  margin-bottom: 14px;

  color: white;

  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.growth-stage p {
  color: rgba(255, 255, 255, 0.76);

  font-size: 0.95rem;
  line-height: 1.65;
}


/* -----------------------
   CONTACT
----------------------- */

.contact {
  scroll-margin-top: 100px;

  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      var(--cream),
      #eef4f1
    );
}


/* New contact form heading */

.contact-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;
  align-items: end;

  margin-bottom: 48px;
}

.contact-header h2 {
  font-family: Georgia, "Times New Roman", serif;

  color: var(--green-deep);

  font-size: clamp(2.3rem, 4vw, 4rem);

  line-height: 1.08;
  letter-spacing: -0.025em;
}

.contact-header h2 span {
  display: block;

  color: var(--blue);
}

.contact-intro {
  max-width: 620px;

  color: var(--text-soft);

  font-size: 1.03rem;
}


/* Main contact form panel */

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 30px;

  background: white;

  box-shadow:
    0 28px 80px rgba(18, 57, 46, 0.12);
}


/* Left contact information */

.contact-details {
  position: relative;
  overflow: hidden;

  padding: 55px;

  color: white;

  background:
    linear-gradient(
      145deg,
      var(--green-deep),
      #194a3d 55%,
      #294f65 125%
    );
}

.contact-details::after {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  right: -150px;
  bottom: -160px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(141, 168, 184, 0.22),
      transparent 68%
    );
}

.contact-details-label {
  position: relative;
  z-index: 2;

  margin-bottom: 22px;

  color: #b9d6cc;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.2em;
}

.contact-details h3 {
  position: relative;
  z-index: 2;

  max-width: 420px;

  margin-bottom: 24px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.8rem, 3vw, 2.65rem);

  line-height: 1.1;
}

.contact-details > p:not(.contact-details-label) {
  position: relative;
  z-index: 2;

  margin-bottom: 38px;

  color: rgba(255, 255, 255, 0.74);
}

.contact-detail-item {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  gap: 3px;

  margin-top: 22px;
}

.contact-detail-title {
  color: #b9d6cc;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-detail-item a,
.contact-detail-item > span:last-child {
  color: white;

  font-size: 0.96rem;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}


/* Contact form */

.contact-form {
  padding: 50px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-bottom: 20px;
}

.form-group label {
  color: var(--green-deep);

  font-size: 0.82rem;
  font-weight: 750;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid rgba(24, 74, 59, 0.16);
  border-radius: 13px;

  outline: none;

  background: #f8faf8;

  color: var(--charcoal);

  font-family: inherit;
  font-size: 0.95rem;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 51px;

  padding: 0 15px;
}

.form-group textarea {
  min-height: 170px;

  padding: 14px 15px;

  resize: vertical;

  line-height: 1.55;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a969b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(53, 92, 116, 0.55);

  background: white;

  box-shadow:
    0 0 0 4px rgba(53, 92, 116, 0.08);
}


/* Submit area */

.form-submit-row {
  display: flex;
  align-items: center;

  gap: 22px;

  margin-top: 5px;
}

.contact-submit {
  flex-shrink: 0;

  border: 0;

  cursor: pointer;
}

.form-privacy {
  max-width: 330px;

  color: var(--text-soft);

  font-size: 0.76rem;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;

  margin-top: 15px;

  font-size: 0.88rem;
  font-weight: 600;
}


/* -----------------------
   FOOTER
----------------------- */

.site-footer {
  padding: 38px 0;

  color: #dce8e3;

  background: #102c25;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
}

.footer-inner strong {
  letter-spacing: 0.14em;
}

.footer-inner span,
.footer-inner p {
  color: rgba(255, 255, 255, 0.56);

  font-size: 0.78rem;
}


/* -----------------------
   RESPONSIVE
----------------------- */

@media (max-width: 900px) {

  .main-nav {
    position: absolute;

    top: 82px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px 4%;

    background: rgba(247, 248, 245, 0.98);

    border-bottom: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .section-heading,
  .about-grid,
  .contact-header,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 35px;
    padding: 75px 0;
  }

  .hero-logo-area {
    order: -1;
  }

  .logo-halo {
    max-width: 320px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 50px;
  }

  .growth-stages {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-header {
    gap: 20px;
  }

}


@media (max-width: 620px) {

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .nav-logo {
    width: 45px;
    height: 45px;
  }


  /* Mobile hero */

  .hero-grid {
    gap: 24px;
    padding: 30px 0 48px;
  }

  .hero-logo-area {
    margin-bottom: 2px;
  }

  .logo-halo {
    width: min(62vw, 220px);
    max-width: 220px;
  }

  .hero-logo {
    width: 100%;
    height: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .eyebrow {
    order: 1;

    margin-bottom: 12px;

    font-size: 0.72rem;
    line-height: 1.6;
  }

  .hero h1 {
    order: 2;

    font-size: clamp(2.75rem, 13.5vw, 4rem);
    line-height: 0.96;
  }

  .hero-actions {
    order: 3;

    flex-direction: column;
    align-items: stretch;

    gap: 11px;

    margin-top: 24px;
    margin-bottom: 0;
  }

  .hero-lead {
    order: 4;

    margin-top: 24px;

    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-note {
    order: 5;

    margin-top: 20px;

    line-height: 1.6;
  }

  .button {
    width: 100%;
  }


  /* Mobile services */

  .services-grid {
    grid-template-columns: 1fr;
  }


  /* Mobile section spacing */

  .intro,
  .services,
  .about,
  .contact {
    padding: 80px 0;
  }


  /* Mobile growth path */

  .growth-path {
    padding: 90px 0;
  }

  .growth-intro {
    font-size: 1rem;
  }

  .growth-stages {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 34px;
  }

  .growth-stage {
    padding: 24px 20px;
  }

  .growth-stage-icon {
    height: 130px;

    margin-bottom: 16px;
  }

  .growth-stage-icon img {
    max-width: 92px;
    max-height: 108px;
  }

  .growth-stage-icon-tree img {
    max-width: 108px;
    max-height: 118px;
  }

  .growth-stage h3 {
    font-size: 1.3rem;
  }

  .growth-card {
    min-height: 370px;

    padding: 38px;
  }


  /* Mobile contact form */

  .contact-header {
    margin-bottom: 30px;
  }

  .contact-details {
    padding: 36px 26px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit {
    width: 100%;
  }

  .form-privacy {
    max-width: none;

    text-align: center;
  }


  /* Mobile footer */

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

}
