* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5d6066;
  --accent: #6b5ce7;
  --accent-dark: #4e3fbe;
  --soft: #f5f2ed;
  --sand: #efe7db;
  --paper: #ffffff;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.12);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 6vw;
  background: var(--paper);
  border-bottom: 1px solid #e8e2d9;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  padding: 90px 6vw 110px;
  background: var(--sand);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.bg-hero-main {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: rgba(239, 231, 219, 0.85);
  background-blend-mode: multiply;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-alt {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 300px;
}

.media {
  border-radius: 24px;
  overflow: hidden;
  background: #d7d0c6;
  box-shadow: var(--shadow);
  min-height: 240px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  min-height: 160px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: #fff8f1;
}

.form-wrap {
  background: var(--paper);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9d0c6;
  font-size: 15px;
}

.form-wrap button {
  align-self: flex-start;
}

.footer {
  padding: 40px 6vw 60px;
  background: #171717;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f4f4f4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 20px;
  z-index: 30;
}

.sticky-cta a {
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.page-hero {
  padding: 70px 6vw;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--sand);
  background-size: cover;
  background-position: center;
}

.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-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1481886756534-97af88ccb438?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
}

.page-hero .media {
  min-height: 200px;
}

.content {
  padding: 50px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  border: 1px solid #cfc6ba;
  background: #fff;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 70px;
  }
}
