* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6%;
  background: #f0e9e1;
  border-bottom: 1px solid #d8cec3;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  background: #1a1a1a;
  color: #f9f5f0;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.main {
  flex: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 56px 6%;
  color: #f8f5f1;
  background-color: #2b2b2b;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 12px;
}

.hero p {
  max-width: 560px;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: #1a1a1a;
  color: #f9f5f0;
  padding: 12px 20px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.button.alt {
  background: #f9f5f0;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 6%;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callout {
  background: #1a1a1a;
  color: #f9f5f0;
  padding: 18px;
  border-radius: 6px;
}

.section-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2d8cc;
}

.section-card .card-image {
  background-color: #d8cec3;
  border-radius: 6px;
  overflow: hidden;
}

.section-card .card-image img {
  width: 100%;
  height: 200px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-item {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid #e2d8cc;
}

.pricing-item h3 {
  margin-top: 0;
}

.inline-image {
  background-color: #d8cec3;
  border-radius: 8px;
  overflow: hidden;
}

.inline-image img {
  height: 280px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 6%;
  background: #fefbf8;
}

.split-band .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  background: #fff;
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e2d8cc;
  border-radius: 8px;
  background: #fefbf8;
  max-width: 520px;
}

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px;
  border: 1px solid #cfc3b6;
  border-radius: 4px;
  font: inherit;
  background: #fff;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #1a1a1a;
  color: #f9f5f0;
  padding: 18px;
  border-radius: 8px;
  max-width: 280px;
}

.sticky-cta a {
  color: #f9f5f0;
}

.footer {
  background: #1a1a1a;
  color: #f9f5f0;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f9f5f0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #fff;
  border: 1px solid #e2d8cc;
  border-radius: 8px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-button {
  background: #1a1a1a;
  color: #f9f5f0;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
}

.banner-button.alt {
  background: #f9f5f0;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.page-hero {
  padding: 40px 6%;
  background: #f0e9e1;
  border-bottom: 1px solid #d8cec3;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.content-block {
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-image {
  background-color: #d8cec3;
  border-radius: 8px;
  overflow: hidden;
}

.content-image img {
  height: 260px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column .block {
  flex: 1 1 300px;
}

.reference-list a {
  color: #f9f5f0;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid #e2d8cc;
  border-radius: 6px;
  background: #fff;
}

.service-row span {
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid #e2d8cc;
  max-width: 520px;
}
