* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f22;
  --muted: #5c6470;
  --accent: #1f6f8b;
  --accent-soft: #e2f0f4;
  --paper: #f7f4ef;
  --stone: #efe7df;
  --shadow: rgba(29, 31, 34, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid #ece3da;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ad-label {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 42px 6vw 64px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-media {
  flex: 1;
  min-height: 320px;
  position: relative;
  background: #dbe7ed;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  opacity: 0.9;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.col {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
}

.col-wide {
  flex: 1.6;
}

.image-frame {
  background: #d9e5e1;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.image-frame img {
  width: 100%;
  height: 220px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.pull-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 12px;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .image-frame img {
  height: 180px;
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  background: var(--stone);
  padding: 32px;
  border-radius: 24px;
}

.split-callout .col {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.form-panel {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 34px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
  background: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer {
  background: #fff;
  padding: 40px 6vw;
  border-top: 1px solid #ece3da;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 50;
}

.cookie-banner p {
  flex: 1;
  min-width: 220px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 120px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 24px var(--shadow);
}

.sticky-cta:hover {
  opacity: 0.9;
}

.simple-hero {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 34px var(--shadow);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.info-list strong {
  color: var(--accent);
}

.wide-image {
  border-radius: 24px;
  overflow: hidden;
  background: #dfe6ea;
}

.wide-image img {
  width: 100%;
  height: 320px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    bottom: 80px;
  }
}
