* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --accent: #2f5b93;
  --accent-dark: #1f3f67;
  --light: #f4f1ec;
  --sand: #ece7df;
  --mist: #e7eef4;
  --amber: #d9b46c;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #d9d4cc;
}

header {
  padding: 20px 6vw;
  background: var(--light);
  border-bottom: 1px solid #ddd7ce;
}

.top-bar {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 48px 6vw 60px;
  background: var(--mist);
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #cbd6df;
  border-radius: 16px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
}

.secondary-btn {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.primary-btn:hover,
.primary-btn:focus,
.secondary-btn:hover,
.secondary-btn:focus {
  background: var(--accent-dark);
  color: var(--white);
  border-color: var(--accent-dark);
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 50px 6vw;
}

.mag-column {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-panel {
  padding: 24px;
  border-radius: 18px;
  background: var(--sand);
}

.mag-panel.mist {
  background: var(--mist);
}

.image-panel {
  position: relative;
  color: var(--white);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.5);
}

.image-panel > * {
  position: relative;
  z-index: 1;
}

.feature-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d7d1c7;
}

.feature-image img {
  width: 100%;
  height: 100%;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
  border: 1px solid #e4dfd6;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-story {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 46px 6vw;
  background: var(--light);
}

.split-story .story-text {
  flex: 1 1 320px;
}

.split-story .story-image {
  flex: 1 1 260px;
  min-height: 260px;
  background-color: #d4d9d2;
  border-radius: 14px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
}

.form-section {
  padding: 56px 6vw;
  background: var(--mist);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd1d7;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.sticky-cta a {
  color: var(--white);
  font-weight: 600;
}

footer {
  padding: 36px 6vw 80px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 6vw;
  background: var(--ink);
  color: var(--white);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-banner button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-banner .accept {
  background: var(--amber);
  color: var(--ink);
}

.cookie-banner .reject {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.simple-page {
  padding: 50px 6vw;
}

.simple-page h1 {
  margin-bottom: 16px;
}

.simple-page section {
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cdd6dc;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c9c1b7;
}

.bg-journey {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c5d0d9;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c4c9c3;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c7c2bb;
}
