* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f24;
  --muted: #5b6773;
  --sand: #f4f1ec;
  --sky: #e9f2f6;
  --forest: #1f3b2c;
  --clay: #d7c5b8;
  --accent: #b04a2f;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid #e6e1db;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--ink);
}

.hero {
  padding: 42px 0 64px;
  background: var(--sand);
}

.hero-layout {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 0.9;
  background: #d2d9df;
  border-radius: 20px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sky);
}

.section.clay {
  background: var(--clay);
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.columns {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.column {
  flex: 1;
}

.column.wide {
  flex: 1.6;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(28, 27, 26, 0.08);
}

.card-media {
  background: #d9d3cc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: var(--accent);
}

.btn.light {
  background: var(--paper);
  color: var(--forest);
  border: 1px solid var(--forest);
}

.inline-link {
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed #c6c0bb;
  padding-bottom: 10px;
}

.pricing-item span {
  color: var(--muted);
}

.form-wrap {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7cbd1;
  font-size: 1rem;
}

.footer {
  background: #11161a;
  color: #e9edf2;
  padding: 40px 0 80px;
}

.footer a {
  color: #e9edf2;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c6ccd4;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 38px 0;
  background: var(--sand);
}

.page-hero .columns {
  align-items: center;
}

.image-panel {
  background: #d2d9df;
  border-radius: 18px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 280px;
}

.contact-block {
  background: var(--paper);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero-layout,
  .columns {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
