:root {
  --bg: #f7f1e6;
  --bg-soft: #efe3cf;
  --surface: rgba(255, 250, 242, 0.8);
  --surface-strong: rgba(255, 248, 236, 0.94);
  --text: #1f3428;
  --muted: #5f6f60;
  --primary: #2d6a4f;
  --primary-strong: #1f513a;
  --secondary: #40916c;
  --accent: #95d5b2;
  --accent-warm: #e2b36d;
  --line: rgba(45, 106, 79, 0.12);
  --line-strong: rgba(45, 106, 79, 0.2);
  --shadow: 0 24px 60px rgba(67, 54, 34, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(149, 213, 178, 0.32), transparent 28%),
    radial-gradient(circle at top right, rgba(226, 179, 109, 0.3), transparent 24%),
    linear-gradient(180deg, #faf5ec 0%, #f2e8d8 42%, #f8f4ec 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 82%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 52px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 30px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(252, 247, 240, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(83, 63, 34, 0.08);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.97rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-strong);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(45, 106, 79, 0.14);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.8);
  color: var(--primary-strong);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(83, 63, 34, 0.08);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(45, 106, 79, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--primary-strong);
  box-shadow: 0 18px 34px rgba(31, 81, 58, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary-strong);
  border: 1px solid rgba(45, 106, 79, 0.14);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
}

.button-ghost {
  background: transparent;
  color: var(--primary-strong);
  border: 1px solid rgba(45, 106, 79, 0.18);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 24px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.hero-text,
.story-copy p,
.step-card p,
.split-card p,
.launch-banner p,
.mini-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

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

.hero-stats div,
.mini-card,
.step-card,
.split-card,
.story-card,
.launch-banner,
.value-strip {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
}

.hero-stats strong {
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
}

.hero-art {
  position: relative;
  padding: 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(246, 236, 220, 0.86)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: auto 22px 16px 22px;
  height: 22%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 52, 40, 0), rgba(31, 52, 40, 0.12));
  filter: blur(20px);
}

.hero-art img,
.story-card img,
.workflow-visual img,
.split-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-art img {
  border-radius: 28px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 6px;
  max-width: 240px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(31, 52, 40, 0.12);
}

.floating-card-top {
  top: 36px;
  left: -18px;
}

.floating-card-bottom {
  right: -14px;
  bottom: 36px;
}

.floating-label {
  margin: 0;
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 1rem;
}

.floating-card span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.story-section {
  padding-top: 12px;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 20px;
}

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

.story-card,
.split-card,
.launch-banner,
.value-strip,
.step-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.story-card {
  display: grid;
  gap: 0;
}

.story-card img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, #f4ead9, #f7f1e6);
  filter: saturate(0.96) contrast(1.02);
}

.story-copy {
  padding: 22px;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.value-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin: 30px 0 34px;
  padding: 32px;
}

.mini-grid {
  display: grid;
  gap: 14px;
}

.mini-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.7);
}

.mini-card strong {
  font-size: 1rem;
}

.workflow-layout,
.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.workflow-visual {
  display: flex;
  align-items: stretch;
}

.workflow-visual img,
.split-card-image img {
  width: 100%;
  min-height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.95) contrast(1.02);
}

.hero-photo {
  object-position: center 56%;
}

.photo-desert-house {
  object-position: center center;
}

.photo-pruning {
  object-position: center 36%;
}

.photo-trimmer {
  object-position: center 42%;
}

.photo-desert-cactus {
  object-position: center center;
}

.photo-contractor {
  object-position: center 42%;
}

.workflow-copy .section-heading {
  margin-top: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-warm);
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
}

.split-section {
  margin: 34px 0;
}

.split-card {
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.split-card-image {
  display: grid;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(45, 106, 79, 0.08), rgba(149, 213, 178, 0.08)),
    var(--surface);
}

.split-card-caption {
  display: grid;
  gap: 14px;
  padding: 0 10px 10px;
}

.split-card-caption strong {
  font-size: 1.05rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.82);
  color: var(--primary-strong);
  font-size: 0.94rem;
}

.launch-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
  padding: 32px;
  background:
    radial-gradient(circle at right top, rgba(149, 213, 178, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(248, 242, 230, 0.84));
}

.site-footer {
  padding: 26px 4px 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.site-footer strong,
.site-footer a {
  color: var(--primary-strong);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.has-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.has-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .value-strip,
  .workflow-layout,
  .split-section,
  .launch-banner,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 18px;
  }

  .hero {
    min-height: auto;
  }

  .floating-card-top {
    left: 16px;
  }

  .floating-card-bottom {
    right: 16px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    margin: 12px 0 18px;
    padding: 14px;
    border-radius: 24px;
    overflow: hidden;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .site-menu {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 6px;
  }

  .site-header.is-open .site-menu {
    display: grid;
    animation: mobile-menu-in 180ms ease;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.74);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(83, 63, 34, 0.09);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(45, 106, 79, 0.08);
    border-radius: 18px;
    background: rgba(255, 252, 246, 0.9);
    font-size: 0.97rem;
  }

  .site-nav a::after {
    content: "+";
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 700;
  }

  .header-contact {
    width: 100%;
    margin-top: 10px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.95rem, 14vw, 4.2rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 4px 0 34px;
  }

  .hero-text,
  .story-copy p,
  .step-card p,
  .split-card p,
  .launch-banner p,
  .mini-card span {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-stats {
    gap: 12px;
  }

  .hero-stats div {
    padding: 16px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
    padding: 14px 16px;
  }

  .hero-art {
    display: grid;
    gap: 14px;
    padding: 12px;
    border-radius: 28px;
  }

  .hero-art::after {
    display: none;
  }

  .hero-art img {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .story-card img,
  .workflow-visual img,
  .split-card-image img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .value-strip,
  .story-copy,
  .step-card,
  .split-card,
  .launch-banner {
    padding: 22px;
  }

  .split-card-image {
    padding: 14px;
  }

  .launch-banner {
    justify-items: start;
  }

  .launch-banner .button {
    width: 100%;
  }

  .tag-row {
    gap: 8px;
  }

  .tag-row span {
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  .site-footer {
    padding-top: 18px;
  }

  .site-footer p {
    font-size: 0.84rem;
  }

  .menu-toggle,
  .site-menu {
    will-change: transform, opacity;
  }

  body.has-motion .reveal,
  body.has-motion .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  body.has-motion .reveal {
    transition: none;
  }

  body.has-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
