:root {
  color-scheme: light;
  --ink: #1b1e24;
  --muted: #5b6572;
  --accent: #2a8f6f;
  --accent-dark: #1f6b53;
  --warm: #f4efe8;
  --cool: #eef3f1;
  --deep: #0f2b2f;
  --sun: #f0c35a;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(15, 43, 47, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 12px;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.cta-secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.cta-inline {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.section {
  padding: 80px 8vw;
  position: relative;
  overflow: hidden;
}

.section.cool {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.section.deep {
  background: var(--deep);
  color: #fff;
}

.offset-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.offset-card.deep {
  background: #102a2f;
  color: #fff;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 260px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(27, 30, 36, 0.08);
}

.card img {
  border-radius: 16px;
  margin-bottom: 16px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.timeline p {
  margin: 0;
}

.quote {
  background: rgba(255, 255, 255, 0.12);
  padding: 26px;
  border-radius: var(--radius-md);
}

.form-shell {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8dde3;
  margin-bottom: 16px;
  font-size: 1rem;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 16px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(15, 43, 47, 0.12);
  z-index: 3;
}

.footer {
  padding: 40px 8vw 60px;
  background: #0f1e21;
  color: #e8edf0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 143, 111, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
