:root {
  --bg: #f7f3ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #2c2340;
  --muted: #665d79;
  --line: rgba(111, 78, 255, 0.12);
  --pink: #ff5e8a;
  --orange: #ff8a2a;
  --violet: #7057ff;
  --cyan: #36c4ff;
  --shadow-lg: 0 24px 60px rgba(61, 38, 108, 0.14);
  --shadow-md: 0 16px 35px rgba(61, 38, 108, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 154, 79, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(112, 87, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f4ff 0%, #fff8f1 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.page-shell { min-height: 100vh; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 255, 0.82);
  border-bottom: 1px solid rgba(111, 78, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible { color: var(--violet); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 16px 30px rgba(255, 94, 138, 0.28);
}

.btn-secondary {
  color: var(--violet);
  background: rgba(112, 87, 255, 0.08);
  border: 1px solid rgba(112, 87, 255, 0.18);
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible { transform: translateY(-2px); }

.hero-section,
.intro-section,
.dates-section,
.seller-section,
.highlight-section,
.faq-section,
.contact-section { padding: 28px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-copy,
.section-panel,
.date-card,
.mini-card,
.pricing-card,
.highlight-panel,
.accordion-item,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-copy { padding: 42px; }

.eyebrow,
.section-kicker,
.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow,
.section-kicker {
  color: var(--violet);
  background: rgba(112, 87, 255, 0.10);
}

.hero-copy h1,
.section-heading h2,
.section-panel h2,
.contact-panel h2 {
  margin: 16px 0 16px;
  font-family: "Baloo 2", cursive;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-copy h1 { font-size: clamp(3rem, 5vw, 5.35rem); }

.hero-lead,
.section-heading p,
.section-panel p,
.seller-copy p,
.contact-panel p,
.accordion-content p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-highlights li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(112, 87, 255, 0.12);
  font-weight: 600;
  color: var(--text);
}

.hero-visual { position: relative; }

.hero-card {
  padding: 20px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 238, 0.92));
  border: 1px solid rgba(255, 140, 92, 0.14);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
}

.section-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading.left {
  margin: 0 0 20px;
  text-align: left;
}

.section-heading h2 { font-size: clamp(2rem, 4vw, 3.4rem); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.date-card,
.pricing-card,
.mini-card { padding: 28px; }

.date-card h3,
.pricing-card h3,
.mini-card h3 {
  margin: 14px 0 14px;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 1;
}

.date-card ul,
.mini-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.card-tag {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.date-card--gold { background: linear-gradient(180deg, rgba(255, 246, 224, 0.95), rgba(255, 255, 255, 0.88)); }
.date-card--gold h3 { color: #cb7a07; }
.date-card--blue { background: linear-gradient(180deg, rgba(231, 249, 255, 0.96), rgba(255, 255, 255, 0.88)); }
.date-card--blue h3 { color: #0a8fc6; }
.date-card--violet { background: linear-gradient(180deg, rgba(243, 238, 255, 0.96), rgba(255, 255, 255, 0.88)); }
.date-card--violet h3 { color: #7551f7; }

.seller-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.logistics-cards,
.pricing-panel { display: grid; gap: 18px; }

.mini-card { background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255, 247, 228, 0.92)); }

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 999px;
}

.pricing-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-card small,
.pricing-card p { color: var(--muted); line-height: 1.7; }

.pricing-card--pink { background: linear-gradient(180deg, rgba(255, 240, 246, 0.96), rgba(255,255,255,0.9)); }
.pricing-card--pink::before { background: var(--pink); }
.pricing-card--pink h3, .pricing-card--pink strong { color: #d83972; }
.pricing-card--cyan { background: linear-gradient(180deg, rgba(237, 251, 255, 0.96), rgba(255,255,255,0.9)); }
.pricing-card--cyan::before { background: var(--cyan); }
.pricing-card--cyan h3, .pricing-card--cyan strong { color: #10a0d8; }
.pricing-card--purple { background: linear-gradient(180deg, rgba(243, 238, 255, 0.96), rgba(255,255,255,0.9)); }
.pricing-card--purple::before { background: var(--violet); }
.pricing-card--purple h3, .pricing-card--purple strong { color: #7057ff; }

.highlight-panel {
  padding: 24px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 241, 227, 0.92), rgba(255, 237, 248, 0.92));
}

.highlight-panel p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #603d67;
}

.accordion { display: grid; gap: 14px; }
.accordion-item { overflow: hidden; }

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--text);
}

.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--violet);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.active .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.accordion-content > * { overflow: hidden; }
.accordion-content p { margin: 0; padding: 0 24px 24px; }
.accordion-item.active .accordion-content { grid-template-rows: 1fr; }

.contact-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(112, 87, 255, 0.96), rgba(255, 94, 138, 0.92));
  color: #fff;
}

.contact-panel .section-kicker {
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.contact-panel h2,
.contact-panel p,
.contact-note { color: #fff; }

.contact-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.contact-note {
  opacity: 0.92;
  line-height: 1.7;
}

.site-footer { padding: 12px 0 34px; }
.footer-inner { text-align: center; color: var(--muted); }



.btn-outline {
  color: var(--violet);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(112, 87, 255, 0.18);
}

.slider-section {
  padding: 28px 0;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.slider-card,
.media-side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.slider-card {
  padding: 20px;
}

.slider-viewport {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255, 246, 238, 0.92));
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  display: grid;
  place-items: center;
  padding: 18px;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  max-height: 484px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.slider-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 24px rgba(255, 94, 138, 0.25);
}

.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(112, 87, 255, 0.24);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.slider-dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.media-side-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-side-card h3 {
  margin: 16px 0 12px;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 0.95;
}

.media-side-card p,
.contact-link {
  color: var(--muted);
  line-height: 1.8;
}

.contact-link {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .seller-grid,
  .section-panel,
  .contact-panel,
  .cards-grid,
  .media-grid { grid-template-columns: 1fr; }

  .hero-copy,
  .contact-panel,
  .section-panel { padding: 28px; }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }
  .brand {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .brand-logo { height: 56px; }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    padding-bottom: 6px;
  }
  .hero-copy h1 { font-size: 2.8rem; }
  .hero-copy,
  .date-card,
  .mini-card,
  .pricing-card,
  .contact-panel,
  .section-panel,
  .highlight-panel,
  .accordion-item { border-radius: 24px; }
  .btn,
  .header-cta { width: 100%; }
  .hero-actions { flex-direction: column; }
  .contact-actions { justify-items: stretch; }
  .container { width: min(var(--container), calc(100% - 20px)); }
}

/* Branding advanced layout */
.brand-logo {
  height: 82px;
  max-width: 240px;
}

.hero-visual {
  position: relative;
}

.brand-showcase {
  position: relative;
  min-height: 620px;
}

.showcase-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(28, 20, 73, 0.14));
}

.showcase-window {
  position: absolute;
  left: 27.8%;
  top: 25.8%;
  width: 50.8%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(32, 19, 80, 0.18);
  background: rgba(255,255,255,0.92);
}

.showcase-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 12px 24px rgba(112, 87, 255, 0.24);
}

.hero-visual-mobile {
  display: none;
}

.hero-visual-mobile-logo {
  width: min(100%, 380px);
  margin: 0 auto 18px;
}

.hero-visual-mobile-card {
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255, 246, 238, 0.92));
  border: 1px solid rgba(255, 140, 92, 0.14);
  box-shadow: var(--shadow-lg);
}

.hero-visual-mobile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

@media (max-width: 1180px) {
  .brand-logo {
    height: 70px;
    max-width: 210px;
  }

  .brand-showcase {
    min-height: 540px;
  }
}



.btn-outline {
  color: var(--violet);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(112, 87, 255, 0.18);
}

.slider-section {
  padding: 28px 0;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.slider-card,
.media-side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.slider-card {
  padding: 20px;
}

.slider-viewport {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255, 246, 238, 0.92));
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  display: grid;
  place-items: center;
  padding: 18px;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  max-height: 484px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.slider-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 24px rgba(255, 94, 138, 0.25);
}

.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(112, 87, 255, 0.24);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.slider-dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.media-side-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-side-card h3 {
  margin: 16px 0 12px;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 0.95;
}

.media-side-card p,
.contact-link {
  color: var(--muted);
  line-height: 1.8;
}

.contact-link {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .brand-showcase {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    height: 58px;
    max-width: 170px;
  }

  .brand-text strong,
  .brand-text small {
    display: none;
  }

  .brand-showcase {
    display: none;
  }

  .hero-visual-mobile {
    display: block;
  }
}


/* Marketing banner */
.promo-banner-section {
  padding: 6px 0 18px;
}

.promo-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 87, 122, 0.12);
  background: #fff;
}

.promo-banner-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transform: scale(1.02);
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.00) 28%, rgba(25,9,20,0.10) 100%),
    linear-gradient(180deg, rgba(18,9,24,0.00) 0%, rgba(18,9,24,0.12) 52%, rgba(18,9,24,0.78) 100%);
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}

.promo-banner-overlay h2 {
  margin: 0 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.92;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.promo-banner-overlay p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
  line-height: 1.8;
  text-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.promo-btn {
  min-height: 52px;
}

.promo-btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

/* scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .promo-banner-image {
    height: 390px;
    object-position: center 38%;
  }

  .promo-banner-overlay {
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .promo-banner-card {
    border-radius: 24px;
  }

  .promo-banner-image {
    height: 470px;
    object-position: 26% 44%;
  }

  .promo-banner-overlay {
    justify-content: flex-end;
    padding: 20px;
    background:
      linear-gradient(180deg, rgba(15,8,20,0.04) 0%, rgba(15,8,20,0.18) 40%, rgba(15,8,20,0.88) 100%);
  }

  .promo-banner-overlay p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .promo-actions {
    width: 100%;
    flex-direction: column;
  }

  .promo-btn {
    width: 100%;
  }
}
