@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Inter:wght@300;400;500;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5b6470;
  --accent: #204b6b;
  --accent-soft: #e8f0f7;
  --paper: #f7f4ef;
  --sand: #efe9e1;
  --stone: #d8d0c6;
  --nav: #f1efe9;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  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;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--nav);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--sand);
  padding: 32px;
  border-radius: 28px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: 40px;
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 17px;
}

.hero-media {
  flex: 1;
  min-height: 320px;
  background: #d4d9df;
  border-radius: 24px;
  overflow: hidden;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
}

.split {
  display: flex;
  gap: 24px;
}

.split .panel {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.muted {
  background: var(--accent-soft);
}

.panel img {
  border-radius: 16px;
  width: 100%;
  height: 220px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
}

.service-card img {
  width: 160px;
  height: 160px;
  border-radius: 16px;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.magazine {
  display: flex;
  gap: 24px;
}

.magazine .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.form-wrap {
  background: var(--sand);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stone);
}

.toggle-nav {
  display: none;
}

.image-frame {
  background: #d9d6cf;
  border-radius: 18px;
  overflow: hidden;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 28px;
  border-radius: 24px;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.bg-insight p {
  max-width: 480px;
  font-weight: 500;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 28px;
  border-radius: 24px;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-cta {
    margin-top: 0;
    flex-direction: row;
  }

  .nav-links,
  .nav-cta {
    display: none;
    width: 100%;
  }

  body.nav-open .nav-links,
  body.nav-open .nav-cta {
    display: flex;
  }

  .toggle-nav {
    display: inline-flex;
  }

  .content {
    padding: 24px;
  }

  .hero,
  .split,
  .magazine,
  .service-card {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
