/* Base */
:root {
  --bg: #f6f3ee;
  --ink: #1f1f1f;
  --muted: #5f5b57;
  --accent: #3a5b8a;
  --accent-2: #a3532a;
  --card: #ffffff;
  --sand: #efe7dc;
  --olive: #cdd8c3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

a.button.secondary,
button.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

header {
  padding: 18px 4vw;
  background: #fff;
  border-bottom: 1px solid #e4ded7;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px dashed #d8d1c7;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 60px 4vw;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80") center/cover no-repeat;
  background-color: #243247;
  position: relative;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, 0.45);
}

.hero-inner {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.magazine-row {
  display: flex;
  gap: 36px;
  padding: 0 4vw;
  flex-wrap: wrap;
}

.magazine-main {
  flex: 2 1 360px;
  background: #fff;
  padding: 32px;
  border-radius: 22px;
}

.magazine-aside {
  flex: 1 1 220px;
  background: var(--sand);
  padding: 28px;
  border-radius: 22px;
}

.inline-image {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.image-frame {
  background: #e7dfd4;
  padding: 10px;
  border-radius: 18px;
  flex: 1 1 260px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
}

.story-panel {
  padding: 0 4vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layered-section {
  margin: 0 4vw;
  background: var(--olive);
  padding: 36px;
  border-radius: 26px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.layered-section .panel {
  flex: 1 1 280px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.background-slab {
  margin: 0 4vw;
  padding: 40px;
  border-radius: 28px;
  color: #1f1f1f;
  background: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80") center/cover no-repeat;
  background-color: #efe7dc;
  position: relative;
}

.background-slab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 243, 238, 0.85);
  border-radius: 28px;
}

.background-slab .content {
  position: relative;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
}

.pricing {
  font-weight: 700;
  color: var(--accent-2);
}

.form-section {
  margin: 0 4vw;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-section form {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section label {
  font-weight: 600;
}

.form-section select,
.form-section input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d1c8;
}

.form-section .form-aside {
  flex: 1 1 220px;
  background: var(--sand);
  padding: 20px;
  border-radius: 20px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

footer {
  background: #fff;
  padding: 32px 4vw 60px;
  border-top: 1px solid #e4ded7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #e4ded7;
  padding: 16px;
  border-radius: 14px;
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #f0ebe4;
  border-radius: 999px;
  font-size: 0.85rem;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 4vw;
}

.two-column .column {
  flex: 1 1 300px;
}

.hero-compact {
  padding: 70px 4vw 40px;
  background: #fff;
  border-bottom: 1px solid #e4ded7;
}

.page-image {
  background: #e7dfd4;
  padding: 12px;
  border-radius: 20px;
  margin-top: 18px;
}

.page-image img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
}
