* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5f5f5f;
  --accent: #c5673b;
  --accent-dark: #8f4426;
  --paper: #f8f5f1;
  --stone: #e7e0d6;
  --sea: #e7eef0;
  --leaf: #e4ebe3;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

header {
  padding: 28px 6vw 12px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 20px 6vw 0 6vw;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 340px;
  position: relative;
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.media-short {
  min-height: 260px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.floating-note {
  position: absolute;
  bottom: -24px;
  right: 22px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  max-width: 220px;
}

.section {
  padding: 0 6vw;
}

.section.alt {
  background: var(--paper);
  padding: 56px 6vw;
}

.section.muted {
  background: var(--sea);
  padding: 56px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  max-width: 440px;
  margin-left: -32px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.center-stack {
  align-items: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-body {
  padding: 18px;
}

.card-media {
  background: var(--leaf);
}

.card-media img {
  width: 100%;
  height: 200px;
}

.price {
  color: var(--accent-dark);
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: var(--stone);
  padding: 22px;
  border-radius: 16px;
  min-width: 220px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  background: #111111;
  color: #e7e7e7;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e7e7e7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  border-color: #333333;
  color: #333333;
}

.cookie-actions .btn.primary {
  background: #333333;
  color: #ffffff;
}

.policy-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 30px 6vw 0 6vw;
}

.page-hero h1 {
  max-width: 720px;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-band .img-box {
  flex: 1 1 260px;
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 220px;
}

.legal-content {
  max-width: 860px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
}

.center {
  text-align: center;
}

@media (max-width: 820px) {
  .offset-card {
    margin-left: 0;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }
}
