* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --sand: #f5f1ea;
  --clay: #e4d7c8;
  --leaf: #5b6b55;
  --brick: #9b5a46;
  --cream: #fffaf4;
  --line: #ddd2c6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
  background: var(--cream);
}

.sidebar {
  flex: 0 0 260px;
  background: var(--sand);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav a {
  padding: 8px 12px;
  border-radius: 12px;
  background: transparent;
  transition: 0.2s ease;
}

.nav a:hover {
  background: var(--clay);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  transition: 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--sand);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-row > div {
  flex: 1 1 280px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 700;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--brick);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--brick);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--clay);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.quote {
  border-left: 4px solid var(--leaf);
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

label {
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--brick);
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.banner.hidden {
  display: none;
}

.banner-buttons {
  display: flex;
  gap: 10px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pill {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.service-pill.active {
  background: var(--leaf);
  color: #fff;
  border-color: var(--leaf);
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .content {
    padding: 32px 6vw 80px;
  }
}
