* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1f;
  --muted: #5a6170;
  --paper: #f7f5f2;
  --stone: #e5e0d7;
  --forest: #2c3a35;
  --accent: #8c6f3f;
  --soft: #d8d1c4;
  --focus: #354b40;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--stone);
  gap: 24px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--soft);
  background: var(--paper);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 56px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.button:hover {
  background: var(--focus);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.button.secondary:hover {
  background: var(--forest);
  color: #fff;
}

.inline-link {
  text-decoration: underline;
  color: var(--forest);
}

.image-frame {
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  border-radius: 14px;
}

.price {
  font-weight: 600;
  color: var(--forest);
}

.accent-band {
  background: linear-gradient(120deg, #f2ebe1 0%, #ffffff 60%);
}

.background-swell {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c3a35;
  color: #fff;
  position: relative;
}

.background-swell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 28, 0.65);
}

.background-swell .split-col {
  position: relative;
  z-index: 1;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #fff;
  border-top: 1px solid var(--stone);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 340px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.content-block {
  padding: 48px 6vw;
}

.legal {
  max-width: 900px;
}

.legal p {
  margin-bottom: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  border: 1px solid var(--stone);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--stone);
}

.service-row strong {
  flex: 1 1 220px;
}

.service-row span {
  color: var(--muted);
  flex: 2 1 320px;
}

.service-row .price {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 32px;
  }

  .sticky-cta {
    position: static;
  }
}
