* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a33;
  --muted: #5b6770;
  --accent: #2b6f6b;
  --accent-soft: #e6f1ef;
  --sand: #f3f0ea;
  --stone: #eef2f5;
  --sun: #f5e8cc;
  --rose: #f8ecec;
  --shadow: 0 18px 45px rgba(31, 42, 51, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 0 80px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  background: var(--sand);
  padding: 70px 0;
}

.hero-frame {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
}

.hero-text {
  flex: 1 1 380px;
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 340px;
  border-radius: 26px;
  background-color: #d6e2df;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-index {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1525182008055-f88b95ff7980?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.wide-visual {
  background-color: #dfe6ea;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.wide-index {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.wide-about {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.wide-services {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.wide-contact {
  background-image: url("https://images.unsplash.com/photo-1504386106331-3e4e71712b38?w=1400&q=80");
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-pane {
  flex: 1 1 360px;
}

.panel {
  padding: 28px;
  border-radius: 22px;
  background: var(--stone);
}

.panel.sun {
  background: var(--sun);
}

.panel.rose {
  background: var(--rose);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  background-color: #cfd7dd;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.section-title {
  margin: 0 0 12px;
  font-size: 30px;
}

.muted {
  color: var(--muted);
}

.form-shell {
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd7dd;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  border-top: 1px solid #e4e8ec;
  padding: 36px 0 60px;
  background: #fbfbfb;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-card {
  flex: 1 1 240px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.note {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border-left: 4px solid var(--accent);
}

.image-shell {
  border-radius: 22px;
  overflow: hidden;
  background-color: #cfd7dd;
}

.center-text {
  text-align: center;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wide-section {
  background: #f7f5f1;
  padding: 70px 0;
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 50px 0;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
