:root {
  --ink: #1e2a24;
  --muted: #5f6b62;
  --leaf: #2f6f4e;
  --leaf-dark: #1d4f37;
  --mint: #e7f3ea;
  --sky: #eaf5f7;
  --sun: #f3c85a;
  --paper: #fffdf7;
  --line: #d8e2d8;
  --shadow: 0 18px 38px rgba(24, 46, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  display: grid;
  gap: 12px;
  padding: 14px 18px 12px;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: min(245px, 72vw);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 15px;
  font-size: 0.9rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--leaf-dark);
}

.hero,
.section {
  display: grid;
  gap: 34px;
  padding: 42px 18px;
}

.hero {
  background:
    linear-gradient(135deg, rgba(231, 243, 234, 0.98), rgba(234, 245, 247, 0.78)),
    var(--paper);
}

.hero-copy,
.section-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 15vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 9vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--leaf-dark);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #ffffff;
  background: var(--leaf-dark);
}

.button-primary:hover {
  background: var(--leaf);
}

.button-secondary {
  color: var(--leaf-dark);
  background: transparent;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.72);
}

.disclosure {
  max-width: 610px;
  color: #526158;
  font-size: 0.92rem;
}

.hero-image {
  margin: 0;
  border: 6px solid #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 850 / 475;
  object-fit: cover;
}

.about-section,
.contact-section {
  background: #ffffff;
}

.portrait {
  width: min(100%, 390px);
  justify-self: center;
  border: 6px solid var(--mint);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.garden-section {
  background: var(--sky);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #35443b;
  font-size: 1.02rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(243, 200, 90, 0.22);
}

.note-panel {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-section {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 20px;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 900;
}

label span {
  color: var(--muted);
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #b7c9ba;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--leaf-dark);
  outline: 3px solid rgba(47, 111, 78, 0.16);
}

.hidden-field {
  display: none;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 26px 18px;
  background: var(--ink);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: #ecf4ef;
  font-size: 0.95rem;
}

.thank-you {
  min-height: calc(100svh - 83px);
}

.thank-you .section {
  display: block;
}

.narrow {
  max-width: 680px;
}

@media (min-width: 560px) {
  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero,
  .section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (min-width: 860px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 84px;
    padding: 14px clamp(32px, 5vw, 64px);
    backdrop-filter: blur(14px);
  }

  .brand img {
    width: min(280px, 28vw);
  }

  nav {
    justify-content: flex-end;
    gap: 8px 18px;
    font-size: 0.95rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(36px, 6vw, 72px);
    min-height: calc(100svh - 84px);
    padding: clamp(60px, 8vw, 92px) clamp(32px, 5vw, 64px);
  }

  .section {
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 72px);
    padding: clamp(64px, 9vw, 108px) clamp(32px, 5vw, 64px);
  }

  .garden-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(4.8rem, 8vw, 6.5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
  }

  p {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
  }

  .hero-image,
  .portrait {
    border-width: 8px;
  }

  .note-panel {
    padding: clamp(24px, 4vw, 34px);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 28px clamp(32px, 5vw, 64px);
  }
}
