* {
  box-sizing: border-box;
}

:root {
  --ink: #16202a;
  --muted: #5b6b7a;
  --sand: #f6f1ea;
  --sky: #e5f0f7;
  --sun: #f4d57e;
  --pine: #1d5b57;
  --stone: #e3e6e8;
  --shadow: rgba(17, 25, 33, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  padding: 24px 8vw 16px 8vw;
  gap: 12px;
  background: #fff;
}

.topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav a:focus,
.nav a:hover {
  border-color: var(--sun);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--pine);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(29, 91, 87, 0.2);
  z-index: 20;
}

.sticky-cta:focus,
.sticky-cta:hover {
  background: #144541;
}

.hero {
  position: relative;
  padding: 90px 8vw 70px 8vw;
  background-color: #cfd8e0;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  max-width: fit-content;
}

.button.alt {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.section {
  padding: 70px 8vw;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  margin-top: 0;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  min-width: 280px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 45px var(--shadow);
}

.offset-card.highlight {
  background: var(--pine);
  color: #fff;
}

.media-frame {
  flex: 1 1 300px;
  min-width: 260px;
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 600;
  color: var(--pine);
}

.inline-link {
  color: var(--pine);
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 45px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccd4db;
  font-family: inherit;
}

.form-panel button {
  background: var(--pine);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.form-panel button:hover,
.form-panel button:focus {
  background: #144541;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #d4dadd;
  font-size: 0.85rem;
}

.footer {
  padding: 50px 8vw;
  background: #0c1116;
  color: #e6ecf1;
  margin-top: auto;
}

.footer a {
  color: #e6ecf1;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer small {
  color: #b6c2cc;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c6d0d7;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 45px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--pine);
  background: #fff;
  color: var(--pine);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--pine);
  color: #fff;
}

.page-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.page-lead {
  max-width: 720px;
  color: var(--muted);
  margin-top: 12px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split-band .panel {
  flex: 1 1 320px;
  padding: 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px var(--shadow);
}

.banner-graphic {
  position: relative;
  background-color: #c8d6cf;
  padding: 60px 8vw;
  color: #fff;
}

.banner-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.banner-graphic .inner {
  position: relative;
  max-width: 680px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 45px var(--shadow);
}

.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.contact-media {
  flex: 1 1 260px;
  background: #dde6ee;
  border-radius: 16px;
  overflow: hidden;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-wrap {
  max-width: 860px;
}

.legal-wrap h2 {
  margin-top: 32px;
}
