* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ee;
  --ink: #1f2428;
  --muted: #5d646b;
  --accent: #2d6b5f;
  --accent-2: #c08b5a;
  --soft: #e7dfd6;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.section {
  padding: 56px 0;
}

.section-contrast {
  background: #fff;
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-image {
  flex: 1 1 420px;
  position: relative;
}

.image-frame {
  background-color: #d9d2c6;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.offset-card {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.offset-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-item {
  flex: 1 1 320px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--soft);
}

.quote {
  font-style: italic;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d3c8bd;
  font-size: 1rem;
  font-family: inherit;
}

.inline-image {
  flex: 1 1 260px;
}

.inline-image .image-frame {
  min-height: 260px;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  background: #1c1f22;
  color: #d6d9dd;
  padding: 40px 0;
}

.footer a {
  color: #d6d9dd;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 220px;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .image-frame {
  min-height: 260px;
}

.stacked-panels {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
