:root {
  --bg: #f6efe4;
  --bg-soft: #fffaf2;
  --surface: rgba(255, 250, 242, 0.88);
  --surface-strong: #fff9f1;
  --text: #2f2219;
  --muted: #725947;
  --accent: #bf5a36;
  --accent-dark: #8c3418;
  --line: rgba(78, 48, 29, 0.12);
  --shadow: 0 24px 70px rgba(77, 43, 20, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 90, 54, 0.18), transparent 32%),
    radial-gradient(circle at right 10% top 25%, rgba(227, 183, 87, 0.18), transparent 18%),
    linear-gradient(180deg, #f7f1e7 0%, #f2e6d6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 80%);
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.content-section {
  backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  display: block;
  padding: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-copy {
  padding: 12px;
  text-align: center;
}

.hero-cover {
  display: inline-block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-cover img {
  display: block;
  width: min(100%, 900px);
  height: auto;
  margin: 0 auto;
}

.eyebrow,
.form-tag,
.label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-dark);
}

h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.lead,
.content-section p,
.form-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.lead {
  margin: 24px 0 0;
  max-width: 86ch;
  margin-left: auto;
  margin-right: auto;
}

.event-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 18px;
}

.event-card div,
.accent-box,
.bonus-box,
.price-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.85);
}

.event-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.highlight,
.emphasis {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 6px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #d17a44 100%);
  color: #fff9f3;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 18px 34px rgba(191, 90, 54, 0.28);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(191, 90, 54, 0.34);
}

.cta-button.secondary {
  width: 100%;
}

.cta-button-large {
  font-size: 1.02rem;
  line-height: 1.35;
}

main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.content-section {
  padding: 34px;
}

.section-heading {
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  line-height: 1.65;
  color: var(--muted);
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: -1px;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.split,
.bonus-price,
.two-columns {
  display: grid;
  gap: 22px;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(191, 90, 54, 0.1);
  border: 1px solid rgba(191, 90, 54, 0.14);
  font-weight: 700;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.column-title {
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 800;
}

.compact {
  gap: 10px;
}

.carousel {
  position: relative;
  margin: 22px 0 28px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.7);
  box-shadow: var(--shadow);
  scroll-behavior: smooth;
}

.carousel-slide {
  margin: 0;
  aspect-ratio: 16 / 9;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(47, 34, 25, 0.52);
  color: #fffaf5;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-arrow-prev {
  left: 16px;
}

.carousel-arrow-next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(114, 89, 71, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.18);
}

.bonus-price {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
}

.price-tag {
  display: grid;
  gap: 4px;
  margin: 22px 0;
}

.price-tag span {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.price-from {
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price-tag strong {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .bonus-price,
  .two-columns,
  .event-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .hero,
  .content-section {
    padding: 20px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  h2 {
    font-size: 1.5rem;
  }
}
