* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2430;
  --muted: #5a6472;
  --brand: #2b4f5c;
  --accent: #d37b48;
  --soft: #f3f0ea;
  --mist: #e2e8ee;
  --stone: #dcd4c9;
  --leaf: #d5e0d6;
  --shadow: 0 20px 40px rgba(31, 36, 48, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 8vw 12px;
  border-bottom: 1px solid var(--mist);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: var(--accent);
}

.ad-disclosure {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section--split {
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.section--offset {
  position: relative;
  padding-top: 90px;
}

.section--offset .offset-card {
  position: absolute;
  right: 8vw;
  top: -30px;
  background: #ffffff;
  padding: 20px 28px;
  box-shadow: var(--shadow);
  max-width: 320px;
}

.section--layered {
  background: var(--soft);
  position: relative;
}

.section--photo {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section--photo .lead,
.section--photo .section-title {
  color: #ffffff;
}

.section--photo .overlay {
  background: rgba(31, 36, 48, 0.65);
  padding: 32px;
  border-radius: 18px;
  max-width: 640px;
}

.section--layered::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--stone);
  top: 30px;
  right: 10vw;
  z-index: 0;
}

.section--layered .content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.3rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 36px;
  padding: 80px 8vw 90px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image .image-frame {
  height: 420px;
}

.image-frame {
  background: var(--mist);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame--leaf {
  background: var(--leaf);
}

.image-frame--stone {
  background: var(--stone);
}

.image-frame--soft {
  background: var(--soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--brand);
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1f3a45;
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn--ghost:hover {
  background: var(--brand);
  color: #ffffff;
}

.btn--accent {
  background: var(--accent);
}

.btn--accent:hover {
  background: #c06a36;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--mist);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-row h3 {
  font-size: 1.1rem;
}

.service-row p {
  color: var(--muted);
  max-width: 420px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-wrapper label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--mist);
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split-columns > div {
  flex: 1 1 280px;
}

.aside-note {
  background: var(--soft);
  padding: 20px;
  border-radius: 16px;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #10151c;
  color: #d7dbe2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d7dbe2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: #a9b1bd;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-page {
  max-width: 820px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .section--split {
    flex-direction: column;
  }

  .section--offset .offset-card {
    position: static;
    align-self: flex-start;
    margin-top: 20px;
  }

  .ad-disclosure {
    text-align: left;
    max-width: none;
  }
}
