:root {
  --bg: #b5e77d;
  --bg-soft: #cbf19c;
  --paper: #e9ffc9;
  --paper-strong: #f5ffe8;
  --ink: #3d4436;
  --heading: #00403e;
  --accent: #72a909;
  --accent-dark: #3e5f03;
  --line: rgba(0, 64, 62, 0.18);
  --shadow: 0 18px 45px rgba(0, 64, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.58;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 76px);
  background: rgba(181, 231, 125, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--heading);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--heading);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(0, 64, 62, 0.12);
}

.brand-text {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 900;
}

.brand-text span {
  font-size: 0.72em;
  opacity: 0.86;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--heading);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--heading);
  border-radius: 999px;
  background: var(--paper-strong);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--heading);
}

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

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 7vw, 6.35rem);
  line-height: 0.93;
}

h2 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.08;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.eyebrow strong {
  color: var(--heading);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 1.4em;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: calc(100vh - 86px);
  padding: clamp(52px, 7vw, 96px) clamp(20px, 7vw, 116px) clamp(72px, 9vw, 132px);
  overflow: hidden;
}

.hero::after,
.model-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: auto -8vw -44px -8vw;
  height: 86px;
  background: var(--paper);
  transform: rotate(-2.3deg);
  transform-origin: left top;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero p {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.hero-lead {
  color: var(--heading) !important;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 3rem) !important;
  line-height: 1.08;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid var(--heading);
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 64, 62, 0.14);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--heading);
  color: #fff;
}

.button.secondary {
  background: var(--paper-strong);
  color: var(--heading);
}

.hero-image {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid var(--paper-strong);
  border-radius: 32% 68% 54% 46% / 42% 34% 66% 58%;
  box-shadow: var(--shadow);
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 116px) clamp(20px, 7vw, 116px);
}

.intro-section,
.factsheet-section {
  background: var(--paper);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.principle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.principle article {
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border: 3px solid rgba(0, 64, 62, 0.16);
  border-radius: 28px;
  background: var(--bg);
  box-shadow: 8px 8px 0 rgba(0, 64, 62, 0.09);
}

.principle article:nth-child(2) {
  background: var(--bg-soft);
  transform: rotate(1deg);
}

.principle article:nth-child(3) {
  transform: rotate(-1deg);
}

.principle span {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--heading);
  color: #fff;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
}

.principle p,
.text-flow p,
.model-card p,
.factsheet-card p,
.contact-card p {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  background: var(--paper-strong);
}

.split:nth-of-type(even) {
  background: var(--bg);
}

.text-flow {
  max-width: 760px;
  padding-top: 10px;
}

.text-flow p {
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
}

.model-section {
  overflow: hidden;
  background: var(--bg);
}

.model-card,
.factsheet-card,
.contact-card,
.legal-card {
  max-width: 1180px;
  border: 3px solid rgba(0, 64, 62, 0.16);
  border-radius: 32px;
  box-shadow: 10px 10px 0 rgba(0, 64, 62, 0.09);
}

.model-card {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 5vw, 68px);
  background: var(--paper-strong);
}

.model-card p {
  max-width: 880px;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.result-grid div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: var(--bg);
}

.result-grid strong {
  color: var(--heading);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: 1.22rem;
}

.result-grid span {
  color: var(--ink);
}

.no-catch {
  margin-bottom: 0;
  color: var(--heading) !important;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem) !important;
  line-height: 1.12;
}

.tenant-section {
  background: var(--paper);
}

.factsheet-card {
  padding: clamp(32px, 5vw, 62px);
  background: var(--heading);
  color: #fff;
}

.factsheet-card h2 {
  color: #fff;
}

.factsheet-card .eyebrow,
.factsheet-card p {
  color: rgba(255, 255, 255, 0.82);
}

.factsheet-card .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--heading);
}

.contact-section {
  overflow: hidden;
  background: var(--bg);
}

.contact-section::before {
  top: -38px;
  bottom: auto;
  background: var(--bg);
}

.contact-card {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: clamp(30px, 5vw, 62px);
  background: var(--paper-strong);
}

.contact-kicker {
  margin: -8px 0 22px;
  color: var(--accent-dark) !important;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem) !important;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--heading);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(0, 64, 62, 0.25);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--heading);
  outline: 3px solid rgba(0, 64, 62, 0.12);
}

.contact-form .checkbox-label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form .checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
  border-radius: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.legal-page {
  padding: clamp(40px, 7vw, 92px) clamp(20px, 7vw, 110px);
}

.legal-card {
  max-width: 980px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper-strong);
}

.legal-card h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-card h2 {
  margin-top: 36px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-note {
  margin-top: 36px;
  padding: 18px;
  border-left: 5px solid var(--heading);
  background: var(--paper);
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid var(--heading);
    border-radius: 24px;
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-image {
    order: -1;
  }

  .principle,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .principle article:nth-child(2),
  .principle article:nth-child(3) {
    transform: none;
  }

  .site-footer {
    flex-direction: column;
  }
}
