* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f22;
  --muted: #5b6670;
  --cream: #f6f1ea;
  --mist: #eef1f4;
  --sage: #cfe1d4;
  --sand: #e8dcc9;
  --coal: #202428;
  --accent: #2f6f5e;
  --accent-dark: #1f4c41;
  --line: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.nav-links a {
  font-weight: 600;
}

.hero {
  background: var(--cream);
  padding: 48px 0 64px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section-title {
  margin-bottom: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-select {
  align-self: flex-start;
}

.media-frame {
  background: #dde5dd;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.media-frame.tall {
  min-height: 360px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.quote {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.6);
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  border-bottom: 1px solid var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--coal);
  color: #fff;
  padding: 12px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta a {
  color: #fff;
}

.footer {
  background: #141618;
  color: #d5d8dc;
  padding: 32px 0 40px;
  margin-top: auto;
}

.footer a {
  color: #d5d8dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-note {
  font-size: 0.9rem;
  color: #b7bcc1;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 36px 0;
  background: var(--mist);
}

.notice {
  background: #fff;
  border: 1px dashed var(--line);
  padding: 16px;
  border-radius: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.table-row span {
  flex: 1 1 220px;
  color: var(--muted);
}

.table-row strong {
  color: var(--ink);
}

@media (max-width: 720px) {
  .nav-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
