* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1c1a;
  --muted: #5a514b;
  --paper: #f8f4ef;
  --accent: #2f6f6a;
  --accent-2: #b35c33;
  --soft: #efe7dc;
  --line: #ded2c2;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-wrap {
  padding: 24px 6vw 10px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.compact {
  padding-top: 40px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
  background-color: #e6dfd6;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.asym-split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-media {
  flex: 1 1 280px;
  min-height: 260px;
  background-color: #e8dfd2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asym-media img {
  width: 100%;
  height: 100%;
}

.offset-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: -30px;
  width: fit-content;
}

.pill-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 13px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background-color: #e9e2d7;
  height: 160px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 26px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.bg-panel {
  background: #1d1b1a;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1472851294608-062f824d29cc?w=1400&q=80");
}

.bg-overlay {
  background: rgba(29, 27, 26, 0.65);
  padding: 46px;
}

.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quote {
  flex: 1 1 240px;
  border-left: 3px solid var(--accent-2);
  padding: 12px 14px;
  background: #fff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 240px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.footer {
  padding: 50px 6vw 70px;
  background: #1c1b1a;
  color: #f5f1ec;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.small {
  font-size: 13px;
  color: #cfc6bb;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-hero {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.page-hero .asym-media {
  min-height: 220px;
}
