* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Cinzel", "Times New Roman", serif;
  background: #050505;
  color: #f5f1e6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.journey { width: 100%; }
.panel {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.75) 0%, rgba(3, 3, 3, 0.5) 45%, rgba(3, 3, 3, 0.85) 100%);
  z-index: 1;
}
.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
  filter: brightness(0.55) contrast(1.05) saturate(0.9);
}
.content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(16vh, 18vh, 22vh) 8vw clamp(12vh, 14vh, 18vh);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  color: #f7f2e4;
}
.kicker {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #d8c58f;
  margin-bottom: 0.6rem;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
h1, h2 {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
}
h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8c58f;
  margin: 1.2rem 0 0.6rem;
}
p {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  color: #efe7d3;
  max-width: 36ch;
}
.details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-top: 1.2rem;
}
.tag {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  color: #f2e8c9;
  border: 1px solid rgba(216, 197, 143, 0.35);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.5);
}
.tag-large {
  font-size: 1rem;
}
.details-stacked {
  flex-direction: column;
  align-items: flex-start;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 2rem;
  margin-top: 1rem;
}
.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  color: #efe7d3;
}
.content-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}
.content-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d8c58f;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}
.media-card {
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.media-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
}
.media-card figcaption {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  color: #e7dcb9;
  padding: 0.7rem 0.9rem 0.9rem;
}
.review {
  border-left: 2px solid rgba(216, 197, 143, 0.5);
  padding-left: 0.9rem;
  margin: 0.9rem 0;
}
.review p { max-width: none; }
.review span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  color: #d8c58f;
}
.cta-wrap {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  gap: 0.45rem;
  text-align: center;
  justify-items: center;
}
.cta-button {
  display: grid;
  gap: 0.18rem;
  align-items: center;
  text-align: center;
  color: #0d0b06;
  background: linear-gradient(140deg, #e9d9aa 0%, #d8c58f 45%, #c1a66b 100%);
  padding: 1.05rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.cta-button:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
  filter: brightness(1.05);
}
.cta-line {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
}
.cta-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.cta-count {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
}
.cta-count-strong {
  font-size: 1.75rem;
  font-weight: 700;
}
.cta-count-light {
  font-size: 1.35rem;
  font-weight: 500;
}
.cta-meta {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}
.cta-discount {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.9);
  background: rgba(8, 8, 8, 0.78);
  padding: 0.5rem 0.7rem 0.45rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.2;
  display: grid;
  gap: 0.15rem;
}
.cta-discount-code {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.cta-discount-line {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}
.cta-discount span {
  display: block;
}
@media (max-width: 768px) {
  .panel { align-items: flex-start; }
  .content {
    padding: max(14vh, env(safe-area-inset-top)) 7vw max(12vh, env(safe-area-inset-bottom));
    max-width: 92vw;
  }
  .bg { height: 140%; }
  .content-grid, .media-grid { grid-template-columns: 1fr; }
  .cta-wrap { top: 20px; right: 20px; }
  .cta-button { padding: 0.9rem 1.05rem; }
  .cta-title { font-size: 1.05rem; }
  .cta-count { font-size: 1.25rem; }
  .cta-discount { font-size: 0.56rem; }
  .cta-discount-code { font-size: 0.62rem; }
  .cta-discount-line { font-size: 0.54rem; }
}
@media (prefers-reduced-motion: reduce) {
  .bg { height: 100%; }
}
