@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f7f4ef;
  --text: #1f2421;
  --muted: #5c6460;
  --accent: #2f6b5d;
  --accent-dark: #244f46;
  --soft: #efe7dd;
  --card: #ffffff;
  --outline: rgba(31, 36, 33, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #fff5e6;
  color: #3b2f1b;
  padding: 0.45rem 1.5rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--outline);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 6vw;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus {
  border-bottom-color: var(--accent);
}

main {
  flex: 1;
}

.section {
  padding: 4.5rem 6vw;
}

.section.soft {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
  gap: 0.5rem;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent-dark);
  color: #fff;
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.image-frame {
  background: #e7e0d6;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.image-frame.tall {
  border-radius: 32px;
}

.card-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 1.5rem;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 12px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--outline);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--outline);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 10;
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--outline);
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

.page-hero {
  padding: 3.5rem 6vw 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.notice {
  background: #f0f7f4;
  border: 1px dashed var(--accent);
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 1rem;
    bottom: 1rem;
  }
}
