:root {
  --bg: #f6f2ee;
  --ink: #1e1a17;
  --muted: #5f5852;
  --accent: #a24a2a;
  --accent-2: #2c6f73;
  --panel: #ffffff;
  --sand: #efe7df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--panel);
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent);
  background: #f9e9e2;
  padding: 8px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

main {
  padding: 24px 6vw 80px;
}

.section {
  margin: 48px 0;
  position: relative;
}

.section-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.section.asym-left .section-inner {
  margin-left: -4vw;
}

.section.asym-right .section-inner {
  margin-right: -4vw;
}

.section.asym-stack .section-inner {
  align-items: stretch;
}

.section-text {
  flex: 1.1;
}

.section-media {
  flex: 0.9;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.section-media img {
  width: 100%;
  height: 100%;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  padding: 28px;
  background: var(--panel);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-top: 18px;
}

.hero-media {
  flex: 1;
  background: #e7ded6;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(-18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.button.secondary {
  background: var(--accent-2);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #efe4db;
  border-radius: 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 280px;
  background: var(--panel);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.form-wrap {
  background: var(--panel);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cdc3;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: #1d1a17;
  color: #f5f1ed;
  padding: 36px 6vw 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.disclaimer {
  font-size: 0.9rem;
  color: #e7d8cc;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background: var(--panel);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.sticky-cta a {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e5d8cf;
}

.simple-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.simple-hero .section-media {
  flex: 0.6;
}

.simple-hero .section-text {
  flex: 1.4;
}

.notice {
  background: #f4e9e1;
  padding: 16px;
  border-radius: 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .section-inner,
  .simple-hero,
  .nav {
    flex-direction: column;
  }

  .section.asym-left .section-inner,
  .section.asym-right .section-inner {
    margin: 0;
  }

  .sticky-cta,
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
