* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #5b5b5b;
  --paper: #f7f4ef;
  --accent: #8b2d2b;
  --accent-dark: #5f1d1c;
  --sand: #efe7dd;
  --mist: #e6e9ef;
  --coal: #1b1b1b;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw 10px 6vw;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid var(--accent);
  font-size: 12px;
  color: var(--accent);
  background: #fff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6vw 48px 6vw;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 16px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 380px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  border: none;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--coal);
  color: #fff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col {
  flex: 1 1 240px;
}

.col.narrow {
  flex: 1 1 180px;
}

.col.wide {
  flex: 2 1 320px;
}

.media-card {
  background: var(--mist);
  padding: 12px;
}

.media-card img {
  height: 220px;
}

.mag-title {
  font-size: 34px;
  margin: 0 0 8px 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  margin: 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid #e1d9cf;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  padding: 22px;
  border: 1px solid #e1d9cf;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px;
  border: 1px solid #c9c1b7;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #111;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5c4c3;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #d9d2c7;
  padding: 16px;
  max-width: 320px;
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #d8d2c8;
  color: #222;
}

.page-title {
  font-size: 30px;
  margin: 0 0 12px 0;
}

.centered {
  max-width: 860px;
  margin: 0 auto;
}

.callout {
  background: #fff;
  border: 1px solid #e1d9cf;
  padding: 18px;
}

.disclaimer {
  font-size: 13px;
  color: #c6c6c6;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .hero-media img {
    max-height: 260px;
  }
}
