@font-face {
  font-family: "InterVar";
  src: local("Inter");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --bg: #f7f3ee;
  --ink: #1c1c1c;
  --muted: #5b5f63;
  --accent: #0c5c8a;
  --accent-soft: #d7e7f0;
  --warm: #f2e6d8;
  --dark: #141414;
  --card: #ffffff;
  --line: #d5d1cb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterVar", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 6vw 0;
}

.hero-media {
  display: flex;
  flex-direction: column;
  background: #d8d4cf;
  border-radius: 22px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 420px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 2vw 10px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.dark {
  background: var(--dark);
  color: #f6f1eb;
}

.section.soft {
  background: var(--warm);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-row .text-block {
  flex: 1;
}

.split-row .media-block {
  flex: 1;
  background: #d9d4cf;
  border-radius: 18px;
  overflow: hidden;
}

.bg-sunset {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.split-row img {
  width: 100%;
  height: 320px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-card {
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #111;
  color: #f2ebe3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f2ebe3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #b9b1a7;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 6vw 20px;
}

.legal-hero img {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  background: #d4d0cb;
}

.legal-content {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlight {
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 12px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-select button {
  text-align: left;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-text {
    flex: 1;
    padding: 0 0 0 2vw;
  }

  .hero-media {
    flex: 1.1;
  }

  .split-row {
    flex-direction: row;
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .quote-row {
    flex-direction: row;
  }
}
