@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap");

:root {
  --ink: #1e1c1a;
  --muted: #5b544c;
  --accent: #c77b3a;
  --accent-deep: #925326;
  --sand: #f4eee6;
  --stone: #e7ded3;
  --coal: #2a2622;
  --mist: #f9f6f2;
  --soft: #efe7dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: var(--accent-deep);
  text-decoration: none;
}

img {
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--stone);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 18px;
}

.brand-tagline {
  font-size: 14px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1766431066346-5dd7bcab22a4?w=1400&q=80");
  background-color: #3b2f25;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1716757025967-5548360464b4?w=1400&q=80");
  background-color: #4a3c2f;
}

.hero-overlay {
  background: rgba(29, 24, 20, 0.6);
  color: #fff;
}

.hero-content {
  padding: 90px 0 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: #f0e9e1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  border: 1px solid var(--accent-deep);
  background: #fff;
  color: var(--accent-deep);
}

.btn-sticky {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 40;
  box-shadow: 0 12px 30px rgba(30, 28, 26, 0.2);
}

.section {
  padding: 72px 0;
}

.section-light {
  background: #fff;
}

.section-sand {
  background: var(--sand);
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--coal);
  color: #f7f4ef;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent-deep);
  font-weight: 600;
}

.section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  margin: 12px 0 18px;
}

.section p {
  margin: 0 0 14px;
  color: inherit;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.media {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(30, 28, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-deep);
}

.trust-band {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 36px;
  color: #fff;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  flex: 1 1 200px;
}

.quote {
  font-style: italic;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(30, 28, 26, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form-grid select,
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 16px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.mini-note {
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--stone);
  padding: 32px 0;
  font-size: 14px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 26px rgba(30, 28, 26, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  z-index: 50;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-hero {
  background: var(--sand);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-family: "Montserrat", sans-serif;
}

.note-panel {
  background: var(--soft);
  border-radius: 16px;
  padding: 18px 20px;
}
