/* ==========================================================================
   Atelier Noire — Dark Luxury Salon Template
   A reusable demo concept. Replace all placeholder content before use.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   Edit these variables to rebrand colours, typography, spacing and radii.
   -------------------------------------------------------------------------- */
:root {
  /* Colour palette */
  --clr-bg:           #1a1a1a;
  --clr-bg-elevated:  #222222;
  --clr-bg-card:      #262626;
  --clr-surface:      #2e2e2e;
  --clr-border:       rgba(255, 255, 255, 0.08);
  --clr-border-hover: rgba(255, 255, 255, 0.15);

  --clr-text:         #f0ece4;
  --clr-text-muted:   #a8a29e;
  --clr-text-dim:     #8d8680;

  --clr-accent:       #c9b99a;
  --clr-accent-hover: #d8ccb0;
  --clr-accent-glow:  rgba(201, 185, 154, 0.25);

  /* Typography */
  --ff-heading:       'Playfair Display', 'Georgia', serif;
  --ff-body:          'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs:   clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm:   clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-md:   clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --fs-lg:   clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --fs-xl:   clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-hero: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold:   700;

  --lh-tight:  1.2;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  --ls-wide:   0.12em;
  --ls-wider:  0.2em;

  /* Spacing */
  --sp-xs:  clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --sp-sm:  clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --sp-md:  clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --sp-lg:  clamp(3rem, 2rem + 5vw, 6rem);
  --sp-xl:  clamp(4rem, 3rem + 5vw, 8rem);
  --sp-section: clamp(4rem, 3rem + 5vw, 7rem);

  /* Border radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 72px;
  --mobile-cta-height: 56px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--clr-accent);
  color: var(--clr-bg);
}

:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 1rem + 2vw, 2.5rem);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
}

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: var(--lh-loose);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

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

/* --------------------------------------------------------------------------
   5. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--duration-base) var(--ease-out);
}

.nav--scrolled {
  background: rgba(26, 26, 26, 0.96);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 1rem + 2vw, 2.5rem);
}

.nav__wordmark {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  color: var(--clr-text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  transition: color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--clr-text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.3rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-bg);
  background: var(--clr-accent);
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--clr-accent-hover);
  box-shadow: 0 0 20px var(--clr-accent-glow);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  z-index: 1002;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav__overlay {
  display: none;
}

@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-base) var(--ease-out),
                visibility var(--duration-base);
    z-index: 1001;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: var(--fs-md);
    color: var(--clr-text);
  }

  .nav__cta {
    font-size: var(--fs-base);
    padding: 0.75rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.85) 100%),
    linear-gradient(to bottom, transparent 60%, var(--clr-bg) 100%);
  z-index: 1;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #2a2520 0%, #1f1d1a 40%, #2c2824 70%, #1a1816 100%);
}

/* Decorative glow orbs */
.hero__bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--clr-accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__tagline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-sm);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: var(--sp-md);
}

.hero__title em {
  font-style: italic;
  color: var(--clr-accent);
}

.hero__desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-md);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  padding: 0.85rem 2rem;
  font-size: var(--fs-base);
  color: var(--clr-bg);
  background: var(--clr-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--clr-accent-hover);
  box-shadow: 0 4px 24px var(--clr-accent-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  padding: 0.85rem 2rem;
  font-size: var(--fs-base);
  color: var(--clr-text);
  border: 1px solid var(--clr-border-hover);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-md);
}

/* --------------------------------------------------------------------------
   7. TRUST BAR
   -------------------------------------------------------------------------- */
.trust {
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--clr-border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  text-align: center;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: var(--sp-sm) var(--sp-xs);
}

.trust__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
}

.trust__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.trust__text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
}

@media (max-width: 480px) {
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --------------------------------------------------------------------------
   8. SERVICES
   -------------------------------------------------------------------------- */
.services {
  padding: var(--sp-section) 0;
}

.services__header {
  margin-bottom: var(--sp-lg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-sm);
}

.service-card {
  position: relative;
  padding: var(--sp-md) var(--sp-sm);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.service-card:hover {
  border-color: var(--clr-border-hover);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
  color: var(--clr-accent);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-sm);
}

.service-card__price {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
}

.service-card__price strong {
  color: var(--clr-accent);
  font-weight: var(--fw-bold);
}

/* --------------------------------------------------------------------------
   9. FEATURED SERVICE (Editorial)
   -------------------------------------------------------------------------- */
.featured {
  padding: var(--sp-section) 0;
  background: var(--clr-bg-elevated);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.featured__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.featured__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2c2824 0%, #1f1d1a 50%, #2a2520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured__image-placeholder::after {
  content: '';
  width: 80px;
  height: 80px;
  border: 1px solid var(--clr-border-hover);
  border-radius: 50%;
}

.featured__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.3), transparent 40%);
  pointer-events: none;
}

.featured__content {
  padding: var(--sp-md) 0;
}

.featured__label {
  margin-bottom: var(--sp-sm);
}

.featured__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-sm);
}

.featured__text {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-md);
}

.featured__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--sp-md);
}

.featured__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.featured__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .featured__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .featured__image-wrap {
    aspect-ratio: 16 / 10;
  }
}

/* --------------------------------------------------------------------------
   10. ABOUT
   -------------------------------------------------------------------------- */
.about {
  padding: var(--sp-section) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(200deg, #2e2a26 0%, #1a1816 60%, #2c2824 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-placeholder::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 1px dashed var(--clr-border-hover);
  border-radius: 50%;
}

.about__content {
  padding: var(--sp-md) 0;
}

.about__text {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-sm);
}

.about__signature {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--clr-accent);
  margin-top: var(--sp-sm);
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .about__image-wrap {
    aspect-ratio: 16 / 10;
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   11. TEAM
   -------------------------------------------------------------------------- */
.team {
  padding: var(--sp-section) 0;
  background: var(--clr-bg-elevated);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.team__header {
  margin-bottom: var(--sp-lg);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
  justify-items: center;
}

.team-card {
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.team-card__image-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto var(--sp-sm);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--clr-border);
}

.team-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2e2a26, #1f1d1a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__image-placeholder::after {
  content: '';
  width: 48px;
  height: 48px;
  border: 1px dashed var(--clr-border-hover);
  border-radius: 50%;
}

.team-card__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  margin-bottom: var(--sp-xs);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* --------------------------------------------------------------------------
   12. REVIEWS
   -------------------------------------------------------------------------- */
.reviews {
  padding: var(--sp-section) 0;
}

.reviews__header {
  margin-bottom: var(--sp-lg);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-sm);
}

.review-card {
  padding: var(--sp-md);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.review-card__demo-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-text-dim);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-sm);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-xs);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-accent);
}

.review-card__text {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-sm);
  font-style: italic;
}

.review-card__author {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.review-card__date {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

/* --------------------------------------------------------------------------
   13. CTA BOOKING
   -------------------------------------------------------------------------- */
.cta-booking {
  padding: var(--sp-xl) 0;
  background: var(--clr-bg-elevated);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-booking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clr-accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.cta-booking__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-sm);
  position: relative;
}

.cta-booking__desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 500px;
  margin: 0 auto var(--sp-md);
  line-height: var(--lh-loose);
  position: relative;
}

.cta-booking .btn {
  position: relative;
}

/* --------------------------------------------------------------------------
   14. CONTACT
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--sp-section) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact__group-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

.contact__detail svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.5;
}

.contact__social {
  display: flex;
  gap: 0.75rem;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text-muted);
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.contact__social-link:hover,
.contact__social-link:focus-visible {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.contact__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Map placeholder */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-bg-card) 100%);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__map svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-text-dim);
  fill: none;
  stroke-width: 1.5;
}

.contact__map span {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  padding: var(--sp-lg) 0 var(--sp-md);
  border-top: 1px solid var(--clr-border);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.footer__brand-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.footer__brand-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  line-height: var(--lh-loose);
  max-width: 320px;
}

.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__col a {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--clr-accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--clr-border);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

.footer__demo-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  padding: 0.2rem 0.6rem;
  border: 1px dashed var(--clr-border-hover);
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   16. MOBILE STICKY CTA
   -------------------------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.6rem var(--sp-sm);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--clr-border);
}

.mobile-cta .btn {
  width: 100%;
  height: var(--mobile-cta-height);
  font-size: var(--fs-base);
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }

  /* Prevent footer from being hidden behind sticky CTA */
  .footer {
    padding-bottom: calc(var(--sp-md) + var(--mobile-cta-height) + 1rem);
  }
}

/* --------------------------------------------------------------------------
   17. MISC / DECORATIVE
   -------------------------------------------------------------------------- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--clr-accent);
  margin: var(--sp-sm) 0;
}

.divider--center {
  margin-inline: auto;
}

/* Fine decorative line above sections */
.decorative-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border-hover), transparent);
}

/* Price tag */
.price-tag {
  display: inline-block;
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  font-weight: var(--fw-medium);
}

.price-tag__note {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  display: block;
  margin-top: 0.25rem;
}
