* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f23;
  --muted: #5f6b76;
  --sand: #f7f3ee;
  --fog: #eef3f5;
  --sea: #0d5c63;
  --sun: #f4b860;
  --stone: #dfe5e8;
  --shadow: rgba(13, 23, 33, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  gap: 24px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.nav-link {
  font-size: 15px;
  color: var(--muted);
}

.nav-link:hover,
.btn:hover,
.link-inline:hover {
  opacity: 0.8;
}

.hero {
  min-height: 420px;
  display: flex;
  align-items: stretch;
  padding: 0 6vw 40px;
  gap: 26px;
}

.hero-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
  box-shadow: 0 18px 30px var(--shadow);
}

.headline {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sea);
  color: #ffffff;
  font-weight: 600;
}

.btn-alt {
  background: #ffffff;
  color: var(--sea);
  border: 1px solid var(--sea);
}

.section {
  padding: 54px 6vw;
}

.section-tone {
  background: var(--fog);
}

.section-warm {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: 0 16px 24px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: var(--stone);
}

.price {
  font-weight: 700;
  color: var(--sea);
  font-size: 18px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 24px var(--shadow);
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.inline-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.link-inline {
  color: var(--sea);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 4;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 14px 30px var(--shadow);
}

.sticky-cta a {
  background: var(--sun);
  color: var(--ink);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #0f1a1f;
  color: #cfd7dc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #cfd7dc;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #a4b0b6;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px var(--shadow);
  display: none;
  gap: 12px;
  align-items: center;
  z-index: 5;
  max-width: 720px;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--sea);
  color: #ffffff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.section-bg-one {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-one .btn-alt {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.section-bg-one .lead {
  color: #e6edf1;
}

.centered {
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
