* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --ink: #1d1f22;
  --muted: #5a6068;
  --accent: #1f6f8b;
  --accent-dark: #155067;
  --sand: #f0e9df;
  --sage: #dbe3d6;
  --stone: #e1e4e8;
  --shadow: 0 18px 45px rgba(20, 24, 29, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
}

.header-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 520px;
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 420px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section-bg {
  min-height: 320px;
  border-radius: 22px;
  background-color: var(--stone);
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  box-shadow: var(--shadow);
}

.image-frame {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(20, 24, 29, 0.08);
}

.card-media {
  min-width: 140px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card h3 {
  margin: 0 0 6px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.note {
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d6dc;
  font-size: 1rem;
}

.form-message {
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.footer {
  padding: 40px 0 80px;
  font-size: 0.95rem;
}

.footer .split {
  align-items: flex-start;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 12;
}

.cookie-banner.is-visible {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-hero {
  padding: 28px 0 40px;
}

.legal-content {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.legal-content ul {
  padding-left: 18px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.bg-panel {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.ref-list a {
  color: var(--accent-dark);
  text-decoration: underline;
}

@media (max-width: 820px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
