* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f24;
  --muted: #5b6672;
  --paper: #f4f1ed;
  --accent: #2b5f64;
  --accent-soft: #d7e7e4;
  --signal: #c97a45;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(20, 24, 28, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #fdfbf9;
  border-bottom: 1px solid #e8e1d8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 60px 6vw 40px;
  position: relative;
  background: linear-gradient(120deg, #f4f1ed 0%, #e7f0ee 60%, #f8f6f2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-image {
  flex: 1 1 280px;
  min-width: 240px;
  align-self: flex-start;
  background: #dfe7e3;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: translateY(28px);
}

.hero-image img {
  width: 100%;
  height: 320px;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 280px;
  min-width: 240px;
  padding: 20px 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.offset-media {
  flex: 1 1 300px;
  min-width: 260px;
  background: #e2ece8;
  padding: 12px;
}

.offset-media.spaced {
  margin-top: 24px;
}

.offset-media img {
  width: 100%;
  height: 260px;
}

.story-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-line {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.story-line .story-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--panel);
  padding: 20px;
  border-left: 4px solid var(--signal);
  box-shadow: var(--shadow);
}

.story-line img {
  width: 320px;
  height: 200px;
  background: #e7e1d8;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.metric-card {
  flex: 1 1 200px;
  min-width: 180px;
  background: var(--panel);
  padding: 18px;
  box-shadow: var(--shadow);
}

.metric-card span {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.testimonial {
  margin-top: 32px;
  padding: 22px;
  background: #1f2d2e;
  color: #f5f1ec;
  box-shadow: var(--shadow);
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  background: #e3e7e3;
}

.price {
  font-weight: 700;
  color: var(--signal);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.service-select {
  flex: 1 1 280px;
  min-width: 260px;
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ece5dc;
}

.service-option:last-child {
  border-bottom: none;
}

.form-card {
  flex: 1 1 320px;
  min-width: 280px;
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.form-card label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #d9d0c7;
  font-family: inherit;
}

.form-card button {
  margin-top: 16px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fef5ec;
  border-left: 4px solid var(--signal);
  padding: 16px;
  margin-top: 20px;
}

.sticky-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 50;
}

.sticky-bar button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw;
  background: #191f22;
  color: #e9e4dc;
}

.footer a {
  color: #f4f1ed;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}

.footer-card {
  flex: 1 1 200px;
  min-width: 180px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 60px 6vw 40px;
  background: #f9f7f3;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 36px;
}

.content-block {
  padding: 30px 6vw;
  background: #ffffff;
}

.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.content-card {
  flex: 1 1 260px;
  min-width: 230px;
  padding: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.page-image {
  width: 100%;
  height: 240px;
  background: #e2e8e5;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-bar {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
