/* site-dev/public/css/base.css */
@font-face {
  font-family: "BannerFont";
  src: url("../fonts/bannerfont.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #050308;
  --bg-soft: #120818;
  --card: #1b0d20;

  --accent: #ffd6aa;
  --accent-soft: rgba(255, 214, 170, 0.14);
  --accent-strong: rgba(255, 214, 170, 0.35);
  --title-pop: #ffd0e6;

  --text-main: #fdf5eb;
  --text-soft: #cbb8a8;
  --danger: #ff6b81;
  --success: #63e6be;

  --border-radius: 18px;
  --shadow-soft: 0 24px 54px rgba(0, 0, 0, 0.6);
  --section-max-width: 1120px;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-body);

  /* Themeable background gradient */
  --bg-grad-a: #2d162f;
  --bg-grad-b: #050308;

  /* Themeable “glass panel” colours (RGB triplets) */
  --panel-a-rgb: 27, 13, 32;
  --panel-b-rgb: 5, 3, 8;
  --panel-dark-a-rgb: 12, 4, 18;
  --panel-dark-b-rgb: 5, 3, 8;

  /* Themeable “solid card” colours (RGB triplets) */
  --card-rgb: 8, 4, 12;
  --card-soft-rgb: 14, 7, 19;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, var(--bg-grad-a), var(--bg-grad-b));
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.no-js .fade-item {
  opacity: 1;
  transform: none;
}

.js .fade-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.js .section-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: var(--section-max-width);
  margin: 0 auto;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 8, 0.95),
    rgba(5, 3, 8, 0.82),
    rgba(5, 3, 8, 0)
  );
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  text-decoration: none;
  color: inherit;
}

.brand-wordmark {
  font-family: "BannerFont", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--accent);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 4px 8px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(255, 214, 170, 0.18);
  color: var(--text-main);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 30px;
  background: rgba(12, 10, 18, 0.45);
  border: 1px solid rgba(255, 214, 170, 0.24);
  border-radius: 999px;
  padding: 6px;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-toggle:active {
  transform: scale(0.98);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 12, 0.78);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease;
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(12, 10, 18, 0.78);
  border: 1px solid rgba(255, 214, 170, 0.24);
  min-width: 240px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 240ms ease, transform 240ms ease;
  will-change: transform, opacity;
}

.nav-overlay.is-open .nav-drawer {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 240ms ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.nav-overlay.is-open .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-link:hover {
  background: rgba(255, 214, 170, 0.12);
}

.section {
  padding: 56px 16px 84px;
}

.section:not(#hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
}

.glass-panel {
  position: relative;
  isolation: isolate;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 214, 170, 0.08);
  background: radial-gradient(
    circle at top left,
    rgba(var(--panel-a-rgb), 0.96),
    rgba(var(--panel-b-rgb), 0.98)
  );
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  padding: 24px 22px;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 214, 170, 0.06), transparent 72%);
  opacity: 0.25;
  pointer-events: none;
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--border-radius) + 6px);
  background: radial-gradient(
    circle at top,
    rgba(255, 214, 170, 0.06),
    transparent 65%
  );
  filter: blur(12px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.glass-panel-dark {
  background: radial-gradient(
    circle at top left,
    rgba(var(--panel-dark-a-rgb), 0.98),
    rgba(var(--panel-dark-b-rgb), 0.98)
  );
}

h1,
h2,
h3 {
  margin: 0 0 8px;
  font-weight: 600;
  font-family: var(--font-display);
}

h2 {
  font-size: 1.5rem;
}

.section-lead {
  margin: 4px 0 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.section-lead-light {
  color: #f8e9da;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 214, 170, 0.16), transparent 60%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0 0 6px;
}

.hero-paragraph {
  font-size: 0.9rem;
  margin: 0 0 6px;
  color: var(--text-soft);
}

.hero-paragraph-cta {
  margin-top: 10px;
  color: var(--text-main);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #311604;
  border-color: rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 214, 170, 0.7);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(255, 214, 170, 0.12);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.hero-portrait-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait-oval {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 100% / 80%;
  overflow: hidden;
  border: 2px solid rgba(255, 214, 170, 0.6);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.7);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 55%);
}

.hero-portrait-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 22px;
}

.benefits-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.highlight-box {
  border-radius: 16px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(255, 214, 170, 0.38);
  background: radial-gradient(circle at top left, var(--accent-soft), rgba(10, 5, 15, 0.98));
}

.highlight-heading {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--accent);
}

.experiences-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experiences-header h2 {
  margin-bottom: 4px;
}

.experience-display {
  position: relative;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.experience-display.is-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.experience-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
}

.experience-slide-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--title-pop);
}

.experience-display.is-marquee .experience-slide {
  flex: 0 0 clamp(280px, 46vw, 460px);
  align-items: stretch;
}

.experience-strip {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 6px 10px;
  --marquee-duration: 54s;
}

.experience-slide-description {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  min-height: 4.6em;
}

.experience-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.experience-thumb {
  display: flex;
  justify-content: center;
  padding: 4px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
}

.experience-thumb img {
  width: 100%;
  max-width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.experience-thumb.is-active {
  border-color: rgba(255, 214, 170, 0.7);
  background: rgba(255, 214, 170, 0.06);
}

.experience-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  background: transparent;
  height: clamp(220px, 36vw, 360px);
}

.experience-display.is-marquee .experience-image-wrapper {
  height: auto;
  aspect-ratio: 4 / 3;
}

.experience-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-display.is-carousel .experience-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.experience-display.is-carousel .experience-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

/* ===========================
   Performance patch (compositor hints)
   =========================== */
.experience-display.is-carousel .experience-slide,
.hot-deals-hero-wrapper.is-carousel .hot-deal-slide,
.testimonials-strip.is-carousel .testimonial-slide {
  /* Performance patch: keep fade/slide animations on the compositor. */
  will-change: opacity, transform;
}


.experience-cards {
  margin-top: 12px;
  display: none;
  gap: 12px;
}

.experience-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(7, 3, 11, 0.97);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.experience-card:active,
.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
}

.experience-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.experience-card-text {
  padding: 10px 12px 12px;
}

.experience-card-text h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.experience-card-text p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}
.insta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.insta-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}

.insta-tile {
  border-radius: 12px;
  background: rgba(var(--card-soft-rgb), 0.96);
  border: 1px solid rgba(255, 214, 170, 0.18);
  aspect-ratio: 1 / 1;
}

.enquiry-form {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(var(--card-rgb), 0.95);
  padding: 14px 14px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 170, 0.38);
  background: rgba(5, 3, 10, 0.95);
  color: var(--text-main);
  padding: 6px 8px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 214, 170, 0.6);
}

.children-ages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.children-ages-list select {
  min-width: 70px;
}

.form-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-soft);
  cursor: pointer;
}

.checkbox-row input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.checkbox-row span {
  line-height: 1.45;
}

.btn-full-width {
  width: 100%;
  margin-top: 10px;
}

.hero-newsletter {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 214, 170, 0.2);
}

.hero-newsletter-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.hero-newsletter-copy {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.newsletter-form {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(var(--card-rgb), 0.95);
  padding: 12px 14px;
}

.hero-newsletter .newsletter-form {
  margin-top: 0;
  background: rgba(var(--card-rgb), 0.7);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 10px;
  align-items: flex-end;
}

.newsletter-submit {
  height: 34px;
  padding-inline: 18px;
}

.site-footer {
  padding: 20px 16px 26px;
  border-top: 1px solid rgba(255, 214, 170, 0.18);
  background: radial-gradient(circle at top, rgba(18, 7, 24, 0.9), rgba(5, 3, 8, 1));
}

.footer-inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-small {
  margin: 2px 0;
}

.footer-inner a {
  color: var(--accent);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

.partners-strip-container {
  margin-top: 20px;
}

.partners-strip-label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.partners-strip-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 0;
  background: transparent;
  padding: 2px 0;
  cursor: default;
  isolation: isolate;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.partners-strip-viewport::before,
.partners-strip-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 2;
}

.partners-strip-viewport::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(var(--card-rgb), 0.98),
    rgba(var(--card-rgb), 0)
  );
}

.partners-strip-viewport::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(var(--card-rgb), 0.98),
    rgba(var(--card-rgb), 0)
  );
}

.partners-strip {
  display: flex;
  gap: 28px;
  padding: 6px 24px;
  align-items: center;
  --marquee-duration: 54s;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}

.partner-chip:hover {
  transform: translateY(-1px);
}

.partner-logo-img {
  height: 28px;
  max-width: 120px;
  object-fit: contain;
  display: block;
  opacity: 1;
  filter: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.partner-chip:hover .partner-logo-img {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* ===========================
   Marquee helper (logos + cards)
   =========================== */

@keyframes marquee-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-strip {
  display: inline-flex;
  width: max-content;
  animation: marquee-loop var(--marquee-duration, 46s) linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-strip {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .marquee-strip [data-marquee-clone="true"] {
    display: none;
  }
}

/* ===========================
   Testimonials (fade, not nested “box in box”)
   =========================== */

.testimonials-strip-viewport {
  margin-top: 14px;
  overflow: hidden;

  /* IMPORTANT: make viewport a "wrapper", not another card */
  border: 0;
  background: transparent;
  padding: 0;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-strip {
  position: relative;
  gap: 20px;
  align-items: stretch;
  padding: 6px 10px;
  --marquee-duration: 54s;
}

/* Fade slides */
.testimonial-slide {
  position: relative;
  flex: 0 0 clamp(280px, 42vw, 440px);
  display: flex;
}

.testimonials-strip.is-carousel .testimonial-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.testimonials-strip.is-carousel .testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.testimonial-pill {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.26);
  background: radial-gradient(
    circle at top left,
    rgba(255, 214, 170, 0.12),
    rgba(5, 3, 10, 0.98)
  );
  padding: 14px 14px 14px;
  font-size: 0.9rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.testimonial-quote {
  margin: 0 0 10px;
  color: var(--text-main);
  white-space: pre-wrap;
  line-height: 1.55;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: auto;
}

.testimonial-author {
  font-weight: 700;
  color: var(--title-pop);
}

.testimonial-location {
  opacity: 0.9;
}

/* ===========================
   Hot Deals (full width + layout respected)
   =========================== */

#hotDealsList,
.hot-deals-list,
.hot-deals-hero-wrapper {
  width: 100%;
  margin-top: 14px;
  position: relative;
}

.hot-deals-empty {
  margin-top: 12px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(var(--card-soft-rgb), 0.96);
  border: 1px dashed rgba(255, 214, 170, 0.35);
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hot-deal-slide {
  position: relative;
}

.hot-deals-hero-wrapper.is-carousel .hot-deal-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.hot-deals-hero-wrapper.is-carousel .hot-deal-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.hot-deal-pill {
  width: 100%;
  box-sizing: border-box;
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
  background: rgba(var(--card-soft-rgb), 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hot-deal-title {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hot-deal-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hot-deal-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.hot-deal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
}


.hot-deal-content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hot-deal-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--text-soft);
}

.hot-deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-size: 0.82rem;
  opacity: 0.9;
  color: var(--text-soft);
}

.hot-deal-expiry-date {
  font-weight: 600;
}

.hot-deal-countdown {
  font-style: italic;
}

/* Standardised image-top layout */
.hot-deal-pill.layout-text_only .hot-deal-image-wrapper {
  display: none;
}

@media (min-width: 900px) {
  .hot-deal-pill {
    padding: 1.6rem 1.4rem;
  }

  .hot-deal-image {
    max-height: 420px;
  }
}

/* ===========================
   Carousel controls (hot deals + testimonials)
   =========================== */

.carousel-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-btn {
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 214, 170, 0.4);
  background: transparent;
  color: var(--text-main);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(255, 214, 170, 0.12);
  color: var(--accent);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 170, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent);
  border-color: rgba(255, 214, 170, 0.8);
}

/* ===========================
   Aurora refinement
   =========================== */

body[data-visual="aurora"] {
  --accent: #ffe2b8;
}

/* Theme lock: sorbet background + blush panels. */
body[data-bg="sorbet"] {
  --bg-grad-a: #2f1620;
  --bg-grad-b: #0c070b;
}

body[data-panel="blush"] {
  --panel-a-rgb: 44, 28, 36;
  --panel-b-rgb: 20, 12, 18;
  --panel-dark-a-rgb: 34, 20, 26;
  --panel-dark-b-rgb: 16, 10, 14;
  --card-rgb: 28, 16, 22;
  --card-soft-rgb: 36, 20, 30;
}

body[data-bg="sorbet"]::before {
  content: "";
  position: fixed;
  inset: -18%;
  background: radial-gradient(
      circle at 20% 22%,
      rgba(255, 170, 210, 0.6),
      transparent 58%
    ),
    radial-gradient(circle at 82% 30%, rgba(255, 214, 170, 0.5), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(200, 170, 255, 0.4), transparent 55%);
  opacity: 0.6;
  filter: blur(28px);
  animation: ambient-drift 34s ease-in-out infinite;
  pointer-events: none;
  z-index: -3;
}

body[data-bg="sorbet"]::after {
  content: "";
  position: fixed;
  inset: -28%;
  background: linear-gradient(
    120deg,
    transparent 18%,
    rgba(255, 230, 245, 0.24),
    transparent 60%
  );
  opacity: 0.35;
  filter: blur(46px);
  animation: ambient-sweep 56s ease-in-out infinite;
  pointer-events: none;
  z-index: -3;
}

body[data-visual="aurora"] .site-header {
  background: linear-gradient(
    90deg,
    rgba(8, 10, 14, 0.96),
    rgba(8, 10, 14, 0.75)
  );
  position: sticky;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 214, 170, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
}

body[data-visual="aurora"] .site-header::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(160, 240, 223, 0.4),
    transparent
  );
  pointer-events: none;
}

body[data-visual="aurora"] .glass-panel {
  background: radial-gradient(
    circle at top left,
    rgba(var(--panel-a-rgb), 0.75),
    rgba(var(--panel-b-rgb), 0.9)
  );
  border: 1px solid rgba(255, 214, 170, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

body[data-visual="aurora"] .btn-primary {
  background: linear-gradient(135deg, #ffe2b8, #9ef0df);
  box-shadow: 0 0 24px rgba(160, 240, 223, 0.35);
}

body[data-visual="aurora"] .hero-portrait-oval {
  width: 250px;
  border-color: rgba(255, 214, 170, 0.4);
  box-shadow: 0 0 28px rgba(160, 240, 223, 0.25);
}

body[data-visual="aurora"] .scroll-dot {
  box-shadow: 0 0 8px rgba(160, 240, 223, 0.6);
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1.04);
  }
  50% {
    transform: translate3d(6%, 4%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-4%, 5%, 0) scale(1.05);
  }
}

@keyframes ambient-sweep {
  0% {
    transform: translate3d(-8%, -4%, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(6%, 3%, 0);
    opacity: 0.35;
  }
  100% {
    transform: translate3d(-4%, 4%, 0);
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .fade-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .section-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .experience-slide,
  .hot-deal-slide,
  .testimonial-slide {
    transition: none;
    transform: none;
  }

  body[data-bg="sorbet"]::before,
  body[data-bg="sorbet"]::after {
    animation: none;
  }
}
