* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1d1b;
  --muted: #6b665d;
  --surface: #f6f2ee;
  --surface-strong: #efe6df;
  --accent: #7b4f3d;
  --accent-soft: #d2b8a5;
  --forest: #3a4a40;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  background: var(--white);
  border-bottom: 1px solid #eee2d9;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

.section-strong {
  background: var(--surface-strong);
}

.section-image {
  background-image: linear-gradient(rgba(24, 21, 19, 0.7), rgba(24, 21, 19, 0.4)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #f4ece5;
}

.section-image .offset-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin: 14px 0 18px;
}

.lead {
  font-size: 1.05rem;
  max-width: 640px;
}

.asym {
  display: flex;
  gap: 38px;
  align-items: center;
  flex-wrap: wrap;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.media-frame {
  position: relative;
  padding: 18px;
  background: var(--white);
  border: 1px solid #e6d6c9;
  box-shadow: 12px 12px 0 rgba(123, 79, 61, 0.12);
}

.media-frame img {
  border-radius: 14px;
}

.offset-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e6d6c9;
  box-shadow: -12px 12px 0 rgba(58, 74, 64, 0.12);
  max-width: 520px;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-22 {
  margin-top: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e7dacf;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h4 {
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e4d2c4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta-muted {
  background: var(--forest);
}

.highlight-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #e4d2c4;
  padding-top: 24px;
}

.highlight {
  flex: 1 1 180px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-shell {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #eadfd5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9c9bc;
  font-size: 0.95rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.two-col {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 30;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(30, 29, 27, 0.2);
}

.footer {
  padding: 50px 6vw;
  background: #181513;
  color: #f4ece5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  margin-top: 18px;
}

.cookies-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid #e7dacf;
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  box-shadow: 0 14px 24px rgba(30, 29, 27, 0.14);
}

.cookies-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 620px;
}

.cookies-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.page-hero img {
  border-radius: 20px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.note-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e6d6c9;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.micro-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 600;
  display: inline-flex;
}

@media (max-width: 720px) {
  header {
    padding: 18px 5vw;
  }

  .section {
    padding: 56px 5vw;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .cookies-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
