@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1f1f1d;
  --muted: #5f5d57;
  --cream: #f7f3ee;
  --sand: #efe6dc;
  --olive: #7a8464;
  --terracotta: #c76f4a;
  --deep: #2d2b28;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--deep);
  color: var(--white);
  padding: 12px 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 12px;
  color: #d8d1c8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  background: #f0c98a;
  color: #2a1d0c;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  padding: 64px 0 48px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 340px;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  margin-left: auto;
}

.hero-media .img-frame {
  background: #d7d1c7;
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(16px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn.secondary {
  background: var(--olive);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 56px 0;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section .text-block {
  flex: 1 1 320px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.offset-box {
  flex: 1 1 320px;
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(18px);
}

.img-frame {
  background: #e4ddd4;
  border-radius: 16px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--terracotta);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #f3e7d7;
  color: #5d3d1e;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.quote {
  font-style: italic;
  padding: 18px;
  border-left: 3px solid var(--olive);
  background: #f4efe8;
}

.form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3c7bb;
  font-size: 15px;
  font-family: inherit;
}

.form-row select {
  background: var(--white);
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

footer {
  background: var(--deep);
  color: #e8dfd3;
  padding: 32px 0 72px;
  margin-top: auto;
}

footer a {
  color: #f4d9b2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
  padding-left: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  max-width: 540px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 6;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-hero {
  padding: 48px 0 24px;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.legal-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .hero-media {
    margin-left: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
