* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5f6d72;
  --bg: #f6f3ef;
  --accent: #c2753d;
  --accent-dark: #8d4c1d;
  --panel: #ffffff;
  --shadow: rgba(31, 42, 46, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 20px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
}

.hero {
  padding: 20px 6vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #d5c7bb;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 36px var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 70px 6vw;
}

.section-muted {
  background: #efe9e3;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-grid.reverse {
  flex-direction: row-reverse;
}

.section-copy {
  flex: 1 1 320px;
}

.section-image {
  flex: 1 1 260px;
  background: #c6c1b8;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
  position: relative;
}

.section-image img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  background: #d2c9bf;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.asym-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.offset-panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 36px var(--shadow);
  margin-left: 6vw;
  margin-right: 6vw;
}

.offset-panel.alt {
  margin-left: 0;
  margin-right: 10vw;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #e6dccf;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.form-wrap {
  background: #1f2a2e;
  color: white;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 180px;
}

.form-note {
  font-size: 13px;
  color: #d0d6d9;
}

footer {
  padding: 50px 6vw 70px;
  background: #1f2a2e;
  color: #e6ecef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col a {
  color: #e6ecef;
}

.disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: #c6ccd0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--panel);
  box-shadow: 0 16px 30px var(--shadow);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta a {
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  padding: 18px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: #e8e1d8;
  color: var(--ink);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.hero-backdrop {
  background: #d8d1c7;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-backdrop .hero-image {
  flex: 1 1 260px;
  background: #d0c7bd;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.hero-backdrop .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-backdrop .hero-text {
  flex: 1 1 280px;
}

.background-panel {
  background: #d9d1c5;
  border-radius: 24px;
  padding: 26px;
  margin-top: 28px;
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f2a2e;
}

.simple-section {
  padding: 20px 6vw 60px;
}

.contact-card {
  background: var(--panel);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
  max-width: 520px;
}

.legal-text {
  max-width: 780px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 780px) {
  .offset-panel,
  .offset-panel.alt {
    margin: 0;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
