@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f2ee;
  --dark: #1d1d1b;
  --accent: #6b4b3e;
  --accent-soft: #d8c7bd;
  --muted: #5a5a57;
  --light: #ffffff;
  --shadow: 0 20px 40px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #efe6df;
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--dark);
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 8vw 64px;
  align-items: stretch;
  position: relative;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--light);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.hero-media {
  flex: 1;
  min-height: 420px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d8c7bd;
  border-radius: 18px;
  position: relative;
}

.hero-tag {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--accent);
  color: var(--light);
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--light);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}

.button:hover,
.button.secondary:hover {
  transform: translateY(-1px);
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.dark {
  background: #1f1e1c;
  color: var(--light);
}

.section.light {
  background: var(--light);
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.asym-offset {
  flex: 0.9;
  background: #efe6df;
  padding: 26px;
  border-radius: 18px;
  margin-left: -40px;
}

.asym-row.reverse .asym-offset {
  margin-left: 0;
  margin-right: -40px;
}

.image-wrap {
  background: #e7ddd6;
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.card.dark {
  background: #272521;
  color: var(--light);
}

.card .image-wrap {
  height: 160px;
}

.card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.quote {
  font-size: 18px;
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  border: 1px solid #d8c7bd;
  padding: 22px;
  border-radius: 18px;
  background: #fffaf6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: var(--light);
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  max-width: 560px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7b8af;
  font-family: inherit;
}

.footer {
  background: #171614;
  color: #d7d5d2;
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--light);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f0f0e;
  color: #f5f2ef;
  padding: 18px 8vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe6df;
  font-size: 12px;
}

.page-hero {
  padding: 48px 8vw;
  background: #efe6df;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero .image-wrap {
  width: 40%;
  min-width: 260px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.spacer {
  height: 20px;
}

.legal-content {
  max-width: 780px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-tag {
    right: 20px;
  }

  .asym-row,
  .asym-row.reverse {
    flex-direction: column;
  }

  .asym-offset,
  .asym-row.reverse .asym-offset {
    margin: 0;
  }

  .page-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero .image-wrap {
    width: 100%;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
