:root {
  color-scheme: light;
  --ink: #1b2a24;
  --forest: #2f5d4a;
  --moss: #6b8f71;
  --sand: #f4f1e8;
  --mist: #e5efe9;
  --clay: #d9c7b8;
  --accent: #1b7a5f;
  --highlight: #f7c96a;
  --shadow: rgba(10, 20, 15, 0.12);
  --radius: 18px;
  font-size: 16px;
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-shell {
  display: flex;
  min-height: 100vh;
  background: var(--sand);
}

.sidebar {
  width: 260px;
  background: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e1e6e0;
}

.brand {
  font-size: 1.35rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.98rem;
}

.nav-links a {
  padding: 6px 0;
}

.sidebar-callout {
  background: var(--mist);
  padding: 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.sidebar-callout a {
  font-weight: 600;
}

.main-content {
  flex: 1;
  padding: 32px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(229, 239, 233, 0.9));
  padding: 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(27, 122, 95, 0.15);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.1;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--forest);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: #ffffff;
  color: var(--forest);
  border-color: var(--forest);
}

.button.ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(47, 93, 74, 0.35);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > * {
  flex: 1 1 280px;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
}

.note-panel {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px var(--shadow);
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

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

.ticker span {
  background: var(--mist);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e5e9e4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd8d1;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row > * {
  flex: 1 1 220px;
}

.banner {
  background: var(--clay);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 20;
  box-shadow: 0 12px 30px var(--shadow);
}

.banner p {
  flex: 1 1 240px;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 120px;
  background: var(--highlight);
  color: #3b2a10;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 24px;
  border-top: 1px solid #e1e6e0;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section.alt {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
}

.section.mist {
  background: var(--mist);
  padding: 28px;
  border-radius: var(--radius);
}

.section.clay {
  background: var(--clay);
  padding: 28px;
  border-radius: var(--radius);
}

.section.bg-waters {
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(229, 239, 233, 0.95)),\n    url(\"https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80\");
  background-size: cover;
  background-position: center;
  padding: 32px;
  border-radius: var(--radius);
}

.tagline {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--moss);
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-stack img {
  border-radius: 16px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-check span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #e1e6e0;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sidebar-callout {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 28px;
  }

  .banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .sticky-cta {
    bottom: 96px;
  }
}
