* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f2a;
  --muted: #5e667a;
  --paper: #f6f4f0;
  --accent: #1b6fd8;
  --accent-soft: #e7eefc;
  --dark: #0f172a;
  --sand: #efe9df;
  --stone: #e3e1dd;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  background: #ffffff;
  padding: 18px 32px;
  border-bottom: 1px solid #e6e4df;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 32px;
}

.section.alt {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.bg-feature {
  background-image: url("https://images.unsplash.com/photo-1531297484001-80022131f5a1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d6dde8;
}

.bg-feature .container {
  background: rgba(246, 244, 240, 0.92);
  padding: 28px;
  border-radius: 18px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.cover {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.cover-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.cover-media {
  flex: 1 1 420px;
  min-height: 360px;
  background: #d7dde9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.button.secondary {
  background: var(--dark);
}

.button.ghost {
  background: var(--accent-soft);
  color: var(--dark);
}

.mag-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.mag-columns .col {
  flex: 1 1 260px;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-item {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.spotlight {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.spotlight .spot-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight .spot-media {
  flex: 1 1 360px;
  min-height: 260px;
  background: #cad4e2;
  border-radius: 16px;
  overflow: hidden;
}

.service-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-media {
  height: 150px;
  background: #dbe2ef;
  border-radius: 12px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.editorial-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.editorial-row .wide {
  flex: 2 1 420px;
}

.editorial-row .narrow {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.service-selector {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.service-pill button {
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--dark);
  font-weight: 600;
}

.service-pill.is-selected {
  border: 2px solid var(--accent);
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd5e0;
  font-family: inherit;
}

.quote-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.footer {
  background: #ffffff;
  padding: 40px 32px;
  border-top: 1px solid #e6e4df;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 12px 16px;
  z-index: 10;
}

.cta-bar button {
  background: #ffffff;
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 64px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--dark);
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
}

.plain-email {
  font-weight: 600;
}

.legal-copy {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 840px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-bar {
    position: static;
  }

  .cookie-banner {
    bottom: 20px;
    right: 16px;
  }
}
