/* ============================================ */
/*           LOCAL.LESS — PAGE SECTIONS         */
/*   Imports: root.less → critical.less → here  */
/* ============================================ */
/* ============================================ */
/*               ROOT VARIABLES                 */
/* ============================================ */
:root {
  /* Color Palette */
  --primary: #a08c7a;
  /* Neon Pink */
  --primaryLight: #d22b2b;
  --secondary: #d22b2b;
  /* Neon Gold */
  --headerColor: #fff8f0;
  /* Warm White */
  --bodyTextColor: #a08c7a;
  /* Muted Warm */
  --bodyTextColorWhite: #f5ead8;
  /* Cream */
  /* Background */
  --bg: #0a0808;
  /* Deep Black */
  --bgDark: #120e0e;
  --bgCard: #1a1414;
  --bgBorder: #2e2020;
  /* Accent */
  --accent: #00e5c8;
  /* Neon Teal */
  /* Glow Effects */
  --glowPink: 0 0 20px #d22b2b, 0 0 60px rgba(255, 45, 45, 0.2);
  --glowGold: 0 0 20px #d22b2b, 0 0 60px rgba(255, 209, 71, 0.2);
  /* Typography */
  --bodyFontSize: 1rem;
  --topper: 0.72rem;
  --topperFontSize: 0.72rem;
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontFamily: "DM Sans", sans-serif;
  --headerFontFamily: "Playfair Display", serif;
  --displayFontFamily: "Bebas Neue", sans-serif;
  /* Spacing */
  --sectionPadding: 6rem 1rem;
}
/* ============================================ */
/*                BASE RESET                    */
/* ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  background: var(--bg);
  color: var(--bodyTextColorWhite);
  font-family: var(--bodyFontFamily);
  font-size: var(--bodyFontSize);
  overflow-x: hidden;
  /* Grain texture overlay — desktop only (compositing is expensive on mobile) */
}
@media only screen and (min-width: 48rem) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }
}
img,
picture {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
/* ============================================ */
/*             UTILITY CLASSES                  */
/* ============================================ */
.cs-topper {
  font-size: var(--topperFontSize);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: var(--glowPink);
  display: block;
  margin-bottom: 1rem;
}
.cs-title {
  font-family: var(--headerFontFamily);
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.1;
  color: var(--headerColor);
  margin-bottom: 1.2rem;
}
.cs-title em {
  font-style: italic;
  color: var(--secondary);
  text-shadow: var(--glowGold);
}
.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.75;
  color: var(--bodyTextColor);
  max-width: 40ch;
}
.cs-button-solid {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  padding: 1rem 2.4rem;
  font-family: var(--bodyFontFamily);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.cs-button-solid:hover {
  box-shadow: var(--glowPink);
  transform: translateY(-2px);
}
.cs-button-outline {
  display: inline-block;
  border: 1px solid rgba(245, 234, 216, 0.3);
  color: var(--bodyTextColorWhite);
  padding: 1rem 2.4rem;
  font-family: var(--bodyFontFamily);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.cs-button-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
/* Scroll Reveal */
.cs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cs-reveal.cs-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Skip link */
.skip {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 999;
  background: var(--primary);
  color: var(--bg);
  padding: 0.5rem 1rem;
}
.skip:focus {
  top: 0;
}
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
}
/* ============================================ */
/*                NAVIGATION                    */
/* ============================================ */
#cs-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bgBorder);
  transition: box-shadow 0.3s ease;
  /* Mobile toggle */
  /* Mobile Menu Open */
}
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation {
    backdrop-filter: none;
  }
}
#cs-navigation.cs-scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
#cs-navigation .cs-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
#cs-navigation .cs-logo .cs-logo-img {
  height: 3.5rem;
  width: auto;
  display: block;
}
#cs-navigation .cs-logo .cs-logo-text {
  font-family: var(--displayFontFamily);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--secondary);
  text-shadow: var(--glowGold);
}
#cs-navigation .cs-logo .cs-logo-text em {
  font-style: normal;
  color: var(--primary);
  text-shadow: var(--glowPink);
}
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-ul-wrapper {
    display: block;
  }
}
#cs-navigation .cs-ul {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
#cs-navigation .cs-li-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
  transition: color 0.2s ease;
}
#cs-navigation .cs-li-link:hover,
#cs-navigation .cs-li-link.cs-active {
  color: var(--bodyTextColorWhite);
}
#cs-navigation .cs-button-solid {
  background: var(--primary);
  color: var(--bg);
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
#cs-navigation .cs-button-solid:hover {
  background: var(--primaryLight);
  box-shadow: var(--glowPink);
  transform: none;
}
#cs-navigation .cs-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
}
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#cs-navigation .cs-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.5rem;
}
#cs-navigation .cs-line {
  display: block;
  height: 2px;
  background: var(--bodyTextColorWhite);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
#cs-navigation.cs-active .cs-line1 {
  transform: translateY(7px) rotate(45deg);
}
#cs-navigation.cs-active .cs-line2 {
  opacity: 0;
}
#cs-navigation.cs-active .cs-line3 {
  transform: translateY(-7px) rotate(-45deg);
}
#cs-navigation.cs-active .cs-ul-wrapper {
  max-height: 100vh;
  opacity: 1;
  pointer-events: all;
}
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-ul-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bgDark);
    border-bottom: 1px solid var(--bgBorder);
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  #cs-navigation .cs-ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem 1.5rem;
  }
  #cs-navigation .cs-li {
    width: 100%;
    border-bottom: 1px solid var(--bgBorder);
    padding: 0.9rem 0;
  }
  #cs-navigation .cs-li-link {
    font-size: 0.9rem;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
  #cs-navigation .cs-mobile-book {
    display: block;
    margin: 1.25rem 2rem 1.5rem;
    text-align: center;
  }
}
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-mobile-book {
    display: none;
  }
}
/* ============================================ */
/*                    HERO                      */
/* ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 1rem 4rem;
  overflow: hidden;
  /* Background radial glows */
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 45, 120, 0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 20% 70%, rgba(255, 209, 71, 0.05) 0%, transparent 60%), radial-gradient(ellipse 40% 30% at 80% 20%, rgba(0, 229, 200, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
#hero .cs-container {
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#hero .cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 209, 71, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  animation: cs-fadeUp 0.8s ease both;
}
#hero .cs-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--glowPink);
  animation: cs-pulse 1.8s ease-in-out infinite;
}
#hero .cs-eyebrow {
  font-family: var(--displayFontFamily);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.4em;
  color: var(--primary);
  text-shadow: var(--glowPink);
  margin-bottom: 1rem;
  animation: cs-fadeUp 0.8s 0.1s ease both;
}
#hero .cs-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  margin-bottom: 1.5rem;
  /* No opacity animation — keeps element visible for LCP measurement */
  animation: cs-slideUp 0.7s ease both;
}
#hero .cs-text {
  max-width: 36ch;
  font-size: 1.15rem;
  margin: 0 auto 3rem;
  animation: cs-fadeUp 0.9s 0.35s ease both;
}
#hero .cs-text strong {
  color: var(--bodyTextColorWhite);
}
#hero .cs-button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: cs-fadeUp 0.9s 0.5s ease both;
}
#hero .cs-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--bgBorder);
  animation: cs-fadeUp 0.9s 0.65s ease both;
}
@media only screen and (max-width: 36rem) {
  #hero .cs-stats {
    gap: 1.5rem;
  }
}
#hero .cs-stat {
  text-align: center;
}
#hero .cs-stat .cs-stat-num {
  font-family: var(--displayFontFamily);
  font-size: 2.8rem;
  color: var(--secondary);
  text-shadow: var(--glowGold);
  line-height: 1;
}
#hero .cs-stat .cs-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
  margin-top: 0.3rem;
}
/* ============================================ */
/*              HERO ANIMATIONS                 */
/* ============================================ */
@keyframes cs-fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* LCP-safe version — no opacity, always visible */
@keyframes cs-slideUp {
  from {
    transform: translateY(24px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes cs-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
/* ============================================ */
/*                TRUST BAR                     */
/* ============================================ */
#trust-bar {
  background: var(--bgDark);
  border-top: 1px solid var(--bgBorder);
  border-bottom: 1px solid var(--bgBorder);
  padding: 1.3rem 1rem;
}
#trust-bar .cs-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
#trust-bar .cs-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
}
#trust-bar .cs-divider {
  color: var(--bodyTextColor);
  opacity: 0.4;
}
@media only screen and (max-width: 36rem) {
  #trust-bar .cs-divider {
    display: none;
  }
}
/* ============================================ */
/*                  SERVICES                    */
/* ============================================ */
#services {
  background: var(--bgDark);
  padding: var(--sectionPadding);
}
#services .cs-container {
  max-width: 80rem;
  margin: 0 auto;
}
#services .cs-content {
  margin-bottom: 4rem;
}
#services .cs-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5px;
  background: var(--bgBorder);
}
#services .cs-item {
  background: var(--bgCard);
  padding: 2.8rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  /* Top line reveal on hover */
}
#services .cs-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
#services .cs-item:hover {
  background: #1f1818;
}
#services .cs-item:hover::before {
  transform: scaleX(1);
}
#services .cs-item:hover .cs-number {
  color: rgba(255, 45, 120, 0.15);
}
#services .cs-number {
  font-family: var(--displayFontFamily);
  font-size: 3.5rem;
  color: rgba(255, 45, 120, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
#services .cs-icon {
  margin-bottom: 1rem;
}
#services .cs-icon img {
  width: 2.5rem;
  height: 2.5rem;
}
#services .cs-h3 {
  font-family: var(--headerFontFamily);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 0.8rem;
}
#services .cs-item-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--bodyTextColor);
}
#services .cs-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 200, 0.25);
  padding: 0.25rem 0.7rem;
}
/* ============================================ */
/*                  PACKAGES                    */
/* ============================================ */
#packages {
  background: var(--bg);
  padding: var(--sectionPadding);
}
#packages .cs-container {
  max-width: 80rem;
  margin: 0 auto;
}
#packages .cs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 48rem) {
  #packages .cs-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#packages .cs-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}
#packages .cs-item {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
#packages .cs-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 120, 0.3);
}
#packages .cs-item.cs-featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #1f1416 0%, #1a1414 100%);
}
#packages .cs-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--primary);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
#packages .cs-package-name {
  font-family: var(--displayFontFamily);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}
#packages .cs-tagline {
  font-size: 0.8rem;
  color: var(--bodyTextColor);
  margin-bottom: 1.5rem;
  font-style: italic;
}
#packages .cs-price {
  font-family: var(--headerFontFamily);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--headerColor);
  margin-bottom: 0.3rem;
}
#packages .cs-price span {
  font-size: 1rem;
  color: var(--bodyTextColor);
  font-family: var(--bodyFontFamily);
  font-weight: 400;
}
#packages .cs-duration {
  font-size: 0.78rem;
  color: var(--bodyTextColor);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
#packages .cs-ul {
  margin-bottom: 2rem;
}
#packages .cs-ul .cs-li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--bodyTextColorWhite);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#packages .cs-ul .cs-check {
  color: var(--primary);
  flex-shrink: 0;
}
#packages .cs-agents {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
#packages .cs-button-solid,
#packages .cs-button-outline {
  width: 100%;
  text-align: center;
  display: block;
}
/* ============================================ */
/*                  ADD-ONS                     */
/* ============================================ */
#addons {
  background: var(--bgDark);
  padding: var(--sectionPadding);
}
#addons .cs-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
@media only screen and (max-width: 48rem) {
  #addons .cs-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#addons .cs-content .cs-button-solid {
  margin-top: 2rem;
  display: inline-block;
}
#addons .cs-card-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media only screen and (max-width: 36rem) {
  #addons .cs-card-group {
    grid-template-columns: 1fr;
  }
}
#addons .cs-item {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  padding: 1.4rem;
  transition: border-color 0.3s ease;
}
#addons .cs-item:hover {
  border-color: rgba(255, 209, 71, 0.3);
}
#addons .cs-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
#addons .cs-h3 {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--headerColor);
  margin-bottom: 0.4rem;
}
#addons .cs-item-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--bodyTextColor);
}
/* ============================================ */
/*               HOW IT WORKS                   */
/* ============================================ */
#how-it-works {
  background: var(--bg);
  padding: var(--sectionPadding);
}
#how-it-works .cs-container {
  max-width: 80rem;
  margin: 0 auto;
}
#how-it-works .cs-content {
  text-align: center;
  margin-bottom: 4rem;
}
#how-it-works .cs-card-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
#how-it-works .cs-card-group::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
  opacity: 0.4;
}
@media only screen and (max-width: 48rem) {
  #how-it-works .cs-card-group {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  #how-it-works .cs-card-group::before {
    display: none;
  }
}
@media only screen and (max-width: 36rem) {
  #how-it-works .cs-card-group {
    grid-template-columns: 1fr;
  }
}
#how-it-works .cs-item {
  padding: 0 1.5rem;
  text-align: center;
}
#how-it-works .cs-number {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--bgBorder);
  background: var(--bgCard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--displayFontFamily);
  font-size: 1.8rem;
  color: var(--primary);
  text-shadow: var(--glowPink);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
#how-it-works .cs-h3 {
  font-family: var(--headerFontFamily);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 0.6rem;
}
#how-it-works .cs-item-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--bodyTextColor);
}
/* ============================================ */
/*                    ABOUT                     */
/* ============================================ */
#about {
  background: var(--bgDark);
  padding: var(--sectionPadding);
}
#about .cs-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media only screen and (max-width: 48rem) {
  #about .cs-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#about .cs-visual {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  padding: 3rem;
  position: relative;
}
#about .cs-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.3), transparent, rgba(255, 209, 71, 0.2));
  z-index: -1;
}
#about .cs-neon-sign {
  font-family: var(--headerFontFamily);
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: var(--glowPink), 0 0 80px rgba(255, 45, 120, 0.3);
  line-height: 1.2;
  text-align: center;
}
#about .cs-neon-sub {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--displayFontFamily);
  letter-spacing: 0.3em;
  color: var(--secondary);
  text-shadow: var(--glowGold);
  font-size: 1.1rem;
}
#about .cs-badge-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}
#about .cs-badge {
  background: var(--bg);
  border: 1px solid var(--bgBorder);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bodyTextColorWhite);
}
#about .cs-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--bodyTextColor);
  margin-bottom: 1.2rem;
}
#about .cs-content p strong {
  color: var(--bodyTextColorWhite);
}
#about .cs-content .cs-button-solid {
  margin-top: 1.5rem;
  display: inline-block;
}
/* ============================================ */
/*                  REVIEWS                     */
/* ============================================ */
#reviews {
  background: var(--bg);
  padding: var(--sectionPadding);
}
#reviews .cs-container {
  max-width: 80rem;
  margin: 0 auto;
}
#reviews .cs-content {
  text-align: center;
  margin-bottom: 4rem;
}
#reviews .cs-card-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  #reviews .cs-card-group {
    grid-template-columns: 1fr;
  }
}
#reviews .cs-item {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  padding: 2rem;
  transition: border-color 0.3s ease;
}
#reviews .cs-item:hover {
  border-color: rgba(255, 45, 120, 0.25);
}
#reviews .cs-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
#reviews .cs-review-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--bodyTextColorWhite);
  margin-bottom: 1.5rem;
  font-style: italic;
}
#reviews .cs-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
}
#reviews .cs-name span {
  color: var(--primary);
}
/* ============================================ */
/*                    BLOG                      */
/* ============================================ */
#blog {
  background: var(--bgDark);
  padding: var(--sectionPadding);
}
#blog .cs-container {
  max-width: 80rem;
  margin: 0 auto;
}
#blog .cs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 48rem) {
  #blog .cs-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#blog .cs-card-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media only screen and (max-width: 48rem) {
  #blog .cs-card-group {
    grid-template-columns: 1fr;
  }
}
#blog .cs-item {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
#blog .cs-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 71, 0.25);
}
#blog .cs-picture {
  height: 10rem;
  overflow: hidden;
}
#blog .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
#blog .cs-link:hover .cs-picture img {
  transform: scale(1.05);
}
#blog .cs-body {
  padding: 1.5rem;
}
#blog .cs-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.7rem;
  display: block;
}
#blog .cs-h3 {
  font-family: var(--headerFontFamily);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--headerColor);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
#blog .cs-item-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--bodyTextColor);
}
/* ============================================ */
/*               BLOG LIST PAGE                 */
/* ============================================ */
#blog-list {
  background: var(--bgDark);
  padding: var(--sectionPadding);
  padding-top: 10rem;
}
#blog-list .cs-container {
  max-width: 80rem;
  margin: 0 auto;
}
#blog-list .cs-content {
  margin-bottom: 4rem;
}
#blog-list .cs-content .cs-title {
  margin-bottom: 1rem;
}
#blog-list .cs-content .cs-text {
  max-width: 52ch;
}
#blog-list .cs-card-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media only screen and (max-width: 60rem) {
  #blog-list .cs-card-group {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 36rem) {
  #blog-list .cs-card-group {
    grid-template-columns: 1fr;
  }
}
#blog-list .cs-item {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
#blog-list .cs-item:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 43, 43, 0.3);
}
#blog-list .cs-picture {
  height: 11rem;
  overflow: hidden;
}
#blog-list .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
#blog-list .cs-link:hover .cs-picture img {
  transform: scale(1.05);
}
#blog-list .cs-body {
  padding: 1.5rem;
}
#blog-list .cs-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}
#blog-list .cs-h3 {
  font-family: var(--headerFontFamily);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--headerColor);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
#blog-list .cs-item-text {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--bodyTextColor);
  margin-bottom: 1rem;
}
#blog-list .cs-date {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
  opacity: 0.6;
  display: block;
}
/* ============================================ */
/*             BLOG POST — HERO                 */
/* ============================================ */
#blog-post-hero {
  background: var(--bgDark);
  padding: 8rem 1rem 0;
}
#blog-post-hero .cs-container {
  max-width: 52rem;
  margin: 0 auto;
  padding-bottom: 3rem;
}
#blog-post-hero .cs-content {
  text-align: center;
}
#blog-post-hero .cs-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
#blog-post-hero .cs-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
}
#blog-post-hero .cs-author {
  color: var(--bodyTextColorWhite);
  font-weight: 600;
}
#blog-post-hero .cs-picture {
  max-width: 80rem;
  margin: 0 auto;
  height: clamp(14rem, 35vw, 28rem);
  overflow: hidden;
}
#blog-post-hero .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ============================================ */
/*             BLOG POST — BODY                 */
/* ============================================ */
#blog-post-body {
  background: var(--bg);
  padding: var(--sectionPadding);
}
#blog-post-body .cs-container {
  max-width: 52rem;
  margin: 0 auto;
}
#blog-post-body .cs-content {
  /* Prose typography */
  color: var(--bodyTextColor);
  font-size: 1.02rem;
  line-height: 1.85;
}
#blog-post-body .cs-content h2 {
  font-family: var(--headerFontFamily);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--headerColor);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bgBorder);
}
#blog-post-body .cs-content h3 {
  font-family: var(--headerFontFamily);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--headerColor);
  margin: 2rem 0 0.75rem;
}
#blog-post-body .cs-content p {
  margin-bottom: 1.3rem;
}
#blog-post-body .cs-content strong {
  color: var(--bodyTextColorWhite);
  font-weight: 600;
}
#blog-post-body .cs-content em {
  color: var(--bodyTextColorWhite);
}
#blog-post-body .cs-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#blog-post-body .cs-content a:hover {
  color: var(--bodyTextColorWhite);
}
#blog-post-body .cs-content ul,
#blog-post-body .cs-content ol {
  margin: 0 0 1.3rem 1.4rem;
}
#blog-post-body .cs-content ul li,
#blog-post-body .cs-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
#blog-post-body .cs-content hr {
  border: none;
  border-top: 1px solid var(--bgBorder);
  margin: 2.5rem 0;
}
#blog-post-body .cs-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bgCard);
  font-style: italic;
  color: var(--bodyTextColorWhite);
}
#blog-post-body .cs-back {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bgBorder);
}
/* ============================================ */
/*                BOOKING CTA                   */
/* ============================================ */
#book {
  background: var(--bg);
  text-align: center;
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
}
#book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 45, 120, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
#book .cs-container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}
#book .cs-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}
#book .cs-text {
  max-width: 32ch;
  font-size: 1.1rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
#book .cs-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
#book .cs-form .cs-button-solid {
  flex-shrink: 0;
  white-space: nowrap;
}
@media only screen and (min-width: 48rem) {
  #book .cs-form {
    flex-wrap: nowrap;
  }
}
#book .cs-input {
  background: var(--bgCard);
  border: 1px solid var(--bgBorder);
  color: var(--bodyTextColorWhite);
  padding: 1rem 1.5rem;
  font-family: var(--bodyFontFamily);
  font-size: 0.9rem;
  width: 15rem;
  outline: none;
  transition: border-color 0.25s ease;
}
#book .cs-input:focus {
  border-color: rgba(255, 45, 120, 0.5);
}
#book .cs-input::placeholder {
  color: var(--bodyTextColor);
}
#book .cs-callout {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--bodyTextColor);
}
#book .cs-callout a {
  color: var(--primary);
  text-decoration: none;
}
/* ============================================ */
/*                   FOOTER                     */
/* ============================================ */
#cs-footer {
  background: var(--bgDark);
  border-top: 1px solid var(--bgBorder);
}
#cs-footer .cs-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid var(--bgBorder);
}
@media only screen and (max-width: 48rem) {
  #cs-footer .cs-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 36rem) {
  #cs-footer .cs-container {
    grid-template-columns: 1fr;
  }
}
#cs-footer .cs-logo {
  display: block;
  margin-bottom: 1rem;
}
#cs-footer .cs-logo .cs-logo-img {
  height: 3rem;
  width: auto;
  display: block;
}
#cs-footer .cs-logo .cs-logo-text {
  font-family: var(--displayFontFamily);
  font-size: 1.8rem;
  color: var(--secondary);
  text-shadow: var(--glowGold);
}
#cs-footer .cs-logo .cs-logo-text em {
  font-style: normal;
  color: var(--primary);
  text-shadow: var(--glowPink);
}
#cs-footer .cs-logo-group .cs-text {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
#cs-footer .cs-phone {
  display: block;
  font-family: var(--displayFontFamily);
  font-size: 1.4rem;
  color: var(--primary);
  text-shadow: var(--glowPink);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
#cs-footer .cs-email {
  font-size: 0.82rem;
  color: var(--bodyTextColor);
  transition: color 0.2s ease;
}
#cs-footer .cs-email:hover {
  color: var(--bodyTextColorWhite);
}
#cs-footer .cs-nav .cs-header {
  font-family: var(--displayFontFamily);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--bodyTextColorWhite);
  display: block;
  margin-bottom: 1.2rem;
}
#cs-footer .cs-nav .cs-nav-li {
  margin-bottom: 0.65rem;
}
#cs-footer .cs-nav .cs-nav-link {
  font-size: 0.85rem;
  color: var(--bodyTextColor);
  transition: color 0.2s ease;
}
#cs-footer .cs-nav .cs-nav-link:hover {
  color: var(--bodyTextColorWhite);
}
#cs-footer .cs-bottom .cs-container {
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  grid-template-columns: unset;
}
@media only screen and (max-width: 36rem) {
  #cs-footer .cs-bottom .cs-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
#cs-footer .cs-copyright {
  font-size: 0.75rem;
  color: var(--bodyTextColor);
}
#cs-footer .cs-social {
  display: flex;
  gap: 1.2rem;
}
#cs-footer .cs-social .cs-social-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bodyTextColor);
  transition: color 0.2s ease;
}
#cs-footer .cs-social .cs-social-link:hover {
  color: var(--primary);
}
/*# sourceMappingURL=local.css.map */