* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1b16;
  background-color: #f8f4ef;
  line-height: 1.6;
}

a {
  color: #1f1b16;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background-color: #f0e6da;
  border-bottom: 1px solid #e1d4c6;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f8f4ef;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #1f1b16;
  color: #f8f4ef;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  padding: 90px 6vw 80px;
  background-color: #efe2d4;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-visual .img-frame {
  border-radius: 24px;
  overflow: hidden;
}

.kicker {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6f5b4a;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #1f1b16;
  color: #f8f4ef;
  cursor: pointer;
  font-size: 1rem;
}

.button.light {
  background-color: #f8f4ef;
  color: #1f1b16;
  border: 1px solid #d6c7b9;
}

.button.link {
  background-color: transparent;
  border: 1px solid #1f1b16;
  color: #1f1b16;
}

.text-cta {
  text-decoration: underline;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.offset-block {
  background-color: #fff7ee;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

.offset-block.shift {
  margin-left: 8vw;
  margin-top: -40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background-color: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(31, 27, 22, 0.06);
}

.card .price {
  font-size: 1.2rem;
  font-weight: 700;
}

.img-frame {
  background-color: #d8c6b4;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-testimonials p {
  margin: 0;
  background-color: #f3e8dc;
  padding: 18px;
  border-radius: 16px;
}

.pricing-reveal {
  background-color: #1f1b16;
  color: #f8f4ef;
}

.pricing-reveal .card {
  background-color: #2c261f;
  color: #f8f4ef;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4c4b6;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  font-weight: 600;
  color: #8d2c1f;
}

.section-contrast {
  background-color: #f0e6da;
}

.section-dark {
  background-color: #2c261f;
  color: #f8f4ef;
}

.section-dark a {
  color: #f8f4ef;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.disclaimer {
  background-color: #f8f4ef;
  border: 1px dashed #c8b7a7;
  padding: 18px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6vw 80px;
  background-color: #1f1b16;
  color: #f8f4ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1f1b16;
  color: #f8f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background-color: #f8f4ef;
  color: #1f1b16;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background-color: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(31, 27, 22, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-season {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.small-note {
  font-size: 0.92rem;
  color: #6f5b4a;
}

.content-narrow {
  max-width: 860px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 920px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-box {
  flex: 1 1 260px;
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background-color: #1f1b16;
  color: #f8f4ef;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section-image-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-image-band .img-frame {
  flex: 1 1 220px;
  height: 180px;
}

@media (max-width: 900px) {
  .offset-block.shift {
    margin-left: 0;
    margin-top: 0;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
