/*
Theme Name: ShishaDelivery.ca
Theme URI: https://shishadelivery.ca
Author: ShishaDelivery.ca
Author URI: https://shishadelivery.ca
Description: Premium luxury shisha delivery service theme for Mississauga, ON. Editorial dark aesthetic with warm gold accents.
Version: 3.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://shishadelivery.ca
Text Domain: shishadeliveryca
Tags: luxury, dark, delivery, service, one-page
*/

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */

:root {
  --bg:          #0d0b09;
  --bg-2:        #131108;
  --bg-card:     #1b1814;
  --gold:        #E8B84B;
  --gold-dark:   #C4921E;
  --gold-dim:    rgba(232,184,75,0.18);
  --gold-line:   rgba(232,184,75,0.35);
  --cream:       #f3ede2;
  --cream-2:     rgba(243,237,226,0.52);
  --cream-3:     rgba(243,237,226,0.28);
  --border:      rgba(232,184,75,0.14);
  --border-dim:  rgba(255,255,255,0.05);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Space Grotesk', system-ui, -apple-system, sans-serif;

  --gap-xs:   0.5rem;
  --gap-sm:   1rem;
  --gap-md:   2rem;
  --gap-lg:   3.5rem;
  --gap-xl:   6rem;
  --gap-2xl: 10rem;

  --header-h: 130px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
}

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

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--cream);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--gold-line);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::before,
.eyebrow--center::after {
  max-width: 60px;
}

.h-display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 10rem);
  font-weight: 300;
}

.h-xl {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
}

.h-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 300;
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ==========================================================================
   4. UTILITY
   ========================================================================== */

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container--narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container--wide {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.rule {
  height: 1px;
  background-color: var(--gold-line);
  border: none;
}

.rule--short {
  width: 48px;
  height: 1px;
  background-color: var(--gold-line);
  border: none;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  background: transparent;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.btn-gold:hover {
  background-color: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--cream);
  background: transparent;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--cream-2);
}

/* ==========================================================================
   6. SITE HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(13, 11, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
}

.header-logo {
  grid-column: 1;
  justify-self: start;
  margin-top: 12px;
}

.header-logo img {
  height: 110px;
  width: auto;
}

.header-logo svg {
  height: 110px;
  width: auto;
  display: block;
}

.header-nav {
  grid-column: 2;
  justify-self: center;
}


.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-nav .nav-menu > li {
  position: relative;
}

.header-nav .nav-menu > li > a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-2);
  text-decoration: none;
  transition: color 0.25s ease;
  display: block;
  padding: 0.25rem 0;
}

.header-nav .nav-menu > li > a:hover {
  color: var(--gold);
}

.header-call {
  color: var(--gold);
  border: 1px solid rgba(232,184,75,0.6);
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 12px rgba(232,184,75,0.35), 0 0 28px rgba(232,184,75,0.15);
  animation: book-now-glow 2.4s ease-in-out infinite;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

@keyframes book-now-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(232,184,75,0.35), 0 0 28px rgba(232,184,75,0.15); }
  50%       { box-shadow: 0 0 22px rgba(232,184,75,0.70), 0 0 50px rgba(232,184,75,0.30); }
}

.header-call:hover {
  background-color: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(232,184,75,0.8), 0 0 60px rgba(232,184,75,0.4);
  animation: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--cream-2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Dropdown submenu */
.header-nav .nav-menu > li > ul.sub-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 180px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

.header-nav .nav-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-nav .nav-menu > li > ul.sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-2);
  text-decoration: none;
  transition: color 0.25s ease;
}

.header-nav .nav-menu > li > ul.sub-menu a:hover {
  color: var(--gold);
}

/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 12vw, 12rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 360px;
  margin: 0 auto 2rem;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--gold-line);
}

.hero-divider span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.60);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Star of Ishtar (8-pointed Venus star) — decorative gold accent */
.star-ishtar {
  width: 9px;
  height: 9px;
  fill: var(--gold);
  opacity: 0.75;
  flex-shrink: 0;
  display: inline-block;
  animation: star-pulse 4s ease-in-out infinite;
}

@keyframes star-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.15); }
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(243,237,226,0.82);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.72);
}

.hero-meta__dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  clip-path: polygon(50% 8.3%,56.4% 34.6%,79.5% 20.5%,65.4% 43.6%,91.7% 50%,65.4% 56.4%,79.5% 79.5%,56.4% 65.4%,50% 91.7%,43.6% 65.4%,20.5% 79.5%,34.6% 56.4%,8.3% 50%,34.6% 43.6%,20.5% 20.5%,43.6% 34.6%);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-3);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll__arrow {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-line), transparent);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.8);
  }
}

/* ==========================================================================
   8. EXPERIENCE SECTION
   ========================================================================== */

.section-experience {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.experience-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto var(--gap-lg);
  line-height: 1.45;
  text-align: center;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
  padding: var(--gap-md) 0;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-unit {
  font-size: 0.45em;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: block;
}

/* ==========================================================================
   9. SERVICES SECTION
   ========================================================================== */

.section-services {
  padding: var(--gap-xl) 0;
}

.services-eyebrow {
  text-align: center;
  margin-bottom: var(--gap-md);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-right: none;
  overflow: hidden;
}

.service-card {
  position: relative;
  border-right: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.service-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.9s var(--ease-out);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.92) 0%, transparent 55%);
}

.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.service-card__num {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.service-card p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--cream-2);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 240px;
}

.service-card__link {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.service-card__link::after {
  content: '\2192';
}

.service-card:hover .service-card__link {
  gap: 0.8rem;
}

/* ==========================================================================
   10. PROCESS SECTION
   ========================================================================== */

.section-process {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--gap-lg);
  gap: 2rem;
}

.process-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.1;
}

.process-header p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--cream-2);
  max-width: 280px;
  text-align: right;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.process-step {
  padding: var(--gap-md) var(--gap-md) var(--gap-md) 0;
  border-right: 1px solid var(--border);
}

.process-step:last-child {
  border-right: none;
}

.process-step::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.process-step p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: var(--cream-2);
  line-height: 1.75;
}

/* ==========================================================================
   11. INCLUDED SECTION
   ========================================================================== */

.section-included {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.included-content {
  padding: var(--gap-lg) var(--gap-lg) var(--gap-lg) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
}

.included-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}

.included-content > p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--cream-2);
  line-height: 1.75;
  max-width: 400px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--cream-2);
  line-height: 1.6;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-dim);
}

.checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 2px;
}

.included-cta {
  margin-top: auto;
}

.included-media {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.included-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.included-media:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   12. REVIEWS SECTION
   ========================================================================== */

.section-reviews {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--gap-lg);
  gap: 2rem;
}

.reviews-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.reviews-rating .stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.reviews-rating .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
}

.reviews-rating .count {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* Carousel */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
}

.carousel__slide {
  flex-shrink: 0;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 3px;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  flex: 1;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.testimonial-card__author span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--cream-3);
  letter-spacing: 0.08em;
}

.carousel__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.carousel__btn svg {
  width: 18px;
  height: 18px;
}

.carousel__dots {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
  align-items: center;
}

.carousel__dot {
  width: 22px;
  height: 1px;
  background-color: var(--border-dim);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
  padding: 0;
}

.carousel__dot--active {
  background-color: var(--gold);
  width: 38px;
}

/* Video Carousel */
.video-carousel {
  margin-top: var(--gap-lg);
}

.video-carousel .carousel__track {
  gap: 0;
}

.video-card {
  padding: 0 0.6rem;
  box-sizing: border-box;
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: filter 0.4s ease;
}

.video-card:hover .video-card__thumb img {
  filter: brightness(0.45);
}

.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.video-card__play:hover {
  border-color: var(--gold);
  background-color: var(--gold);
  color: var(--bg);
}

.video-card__play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  margin-left: 3px;
}

.video-card__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 0.6rem;
  text-align: center;
}

/* Social icons */
.social-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-2);
  transition: border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.social-icon:nth-child(4) svg,
.social-icon:nth-child(5) svg {
  stroke: none;
  fill: currentColor;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--gap-lg);
}

/* Video stories heading */
.video-stories-header {
  margin-bottom: var(--gap-md);
  margin-top: var(--gap-xl);
}

/* ==========================================================================
   13. COMPARISON SECTION
   ========================================================================== */

.section-comparison {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.comparison-header {
  margin-bottom: var(--gap-lg);
}

.comparison-header .eyebrow {
  margin-bottom: var(--gap-sm);
}

.comparison-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}

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

.comparison-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.82rem;
}

.comparison-table th {
  text-align: left;
  padding: 0.85rem 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-3);
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table__us {
  color: var(--gold);
  font-weight: 600;
}

.comparison-table td {
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid var(--border-dim);
  color: var(--cream-2);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.cmp-yes {
  color: var(--gold);
  font-size: 1rem;
}

.cmp-no {
  color: var(--cream-3);
  font-size: 1rem;
}

/* ==========================================================================
   14. FAQ SECTION
   ========================================================================== */

.section-faq {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--gap-md);
}

.faq-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
}

.faq-header p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--cream-2);
  line-height: 1.75;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.1rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.accordion__trigger:hover {
  color: var(--gold);
}

.accordion__trigger[aria-expanded="true"] {
  color: var(--gold);
}

.accordion__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.accordion__icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 1px;
  background-color: currentColor;
  border-radius: 1px;
  transition: opacity 0.25s ease;
}

.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 10px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__panel {
  padding: 0 0 1.5rem;
}

.accordion__panel p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: var(--cream-2);
  line-height: 1.8;
}

.faq-media {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.faq-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.faq-image-grid__item {
  overflow: hidden;
}

.faq-image-grid__item:first-child {
  grid-column: 1 / -1;
}

.faq-image-grid__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.75);
}

.faq-image-grid__item:first-child img {
  aspect-ratio: 2 / 1;
}

.faq-image-grid__item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ==========================================================================
   15. CTA BOOKING SECTION
   ========================================================================== */

.section-cta {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  background-color: var(--bg-2);
}

.cta-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.cta-header .eyebrow {
  margin-bottom: var(--gap-sm);
}

.cta-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1rem;
}

.cta-header p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--cream-2);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

.multistep-form {
  max-width: 620px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
}

.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.form-progress__num {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--cream-3);
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.form-progress__step--active .form-progress__num {
  border-color: var(--gold);
  color: var(--gold);
}

.form-progress__step--done .form-progress__num {
  background-color: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.form-progress__label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color 0.3s ease;
}

.form-progress__step--active .form-progress__label {
  color: var(--gold);
}

.form-progress__line {
  flex: 1;
  height: 1px;
  background-color: var(--border-dim);
  margin: 0 0.6rem 1.2rem;
}

.form-step {
  border: none;
  padding: 0;
  margin: 0;
}

.form-step__legend {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border-dim);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--cream-2);
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.radio-option:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}

.radio-option:has(input:checked) {
  border-color: var(--gold);
  color: var(--cream);
  background-color: var(--gold-dim);
}

.radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.form-label span {
  color: var(--gold);
}

.form-input {
  background-color: var(--bg);
  border: 1px solid var(--border-dim);
  padding: 0.8rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.form-input::placeholder {
  color: var(--cream-3);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim);
}

.form-field__hint {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--cream-3);
}

.form-step__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.form-success {
  text-align: center;
  padding: var(--gap-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success[hidden] { display: none !important; }

.form-success__icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}

.form-success p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--cream-2);
  max-width: 320px;
  line-height: 1.7;
}

.cta-social {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: var(--gap-lg);
}

/* ==========================================================================
   16. SITE FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--bg);
}

.footer-top {
  padding: var(--gap-lg) 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.footer-logo svg {
  height: 64px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-logo:hover svg {
  opacity: 1;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.footer-middle {
  padding: var(--gap-lg) 0;
  border-bottom: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.footer-col__heading {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--cream-3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
}

.footer-nav ul a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--cream-3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav ul a:hover {
  color: var(--cream);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--cream-3);
}

.footer-contact__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact a {
  color: var(--cream-3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}

.footer-social .social-icon {
  border-color: rgba(232, 184, 75, 0.4);
  color: rgba(232, 184, 75, 0.55);
}

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--cream-3);
  letter-spacing: 0.04em;
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--cream-3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom__links a:hover {
  color: var(--cream);
}

/* ==========================================================================
   17. GRAIN OVERLAY
   ========================================================================== */

body::after {
  content: '';
  position: fixed;
  inset: -200px;
  z-index: 9500;
  pointer-events: none;
  width: calc(100% + 400px);
  height: calc(100% + 400px);
  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.70' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px;
  opacity: 0.034;
  animation: grainShift 0.65s steps(3) infinite;
  mix-blend-mode: overlay;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, -5%); }
  50%  { transform: translate(5%, 2%); }
  75%  { transform: translate(-2%, 5%); }
  100% { transform: translate(4%, -3%); }
}

/* ==========================================================================
   18. CURSOR — glowing charcoal ember, driven by main.js
   ========================================================================== */

@media (hover: hover) {
  * { cursor: none !important; }
}

#smoke-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 99999;
}

/* Background atmospheric smoke */
#bg-smoke {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

/* ==========================================================================
   19. SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.process-step:nth-child(2).reveal {
  transition-delay: 0.12s;
}

.process-step:nth-child(3).reveal {
  transition-delay: 0.24s;
}

.video-card:nth-child(2).reveal {
  transition-delay: 0.08s;
}

.video-card:nth-child(3).reveal {
  transition-delay: 0.16s;
}

.video-card:nth-child(4).reveal {
  transition-delay: 0.24s;
}

.checklist li:nth-child(2).reveal {
  transition-delay: 0.07s;
}

.checklist li:nth-child(3).reveal {
  transition-delay: 0.14s;
}

.checklist li:nth-child(4).reveal {
  transition-delay: 0.21s;
}

.checklist li:nth-child(5).reveal {
  transition-delay: 0.28s;
}

.faq-image-grid__item:nth-child(2).reveal {
  transition-delay: 0.06s;
}

.faq-image-grid__item:nth-child(3).reveal {
  transition-delay: 0.12s;
}

.faq-image-grid__item:nth-child(4).reveal {
  transition-delay: 0.18s;
}

.faq-image-grid__item:nth-child(5).reveal {
  transition-delay: 0.24s;
}

/* ==========================================================================
   20. RESPONSIVE — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--border);
  }

  .service-card {
    border-right: none;
  }

  .service-card__img {
    aspect-ratio: 16 / 9;
  }

  .service-card__overlay {
    background: linear-gradient(to top, rgba(13, 11, 9, 0.96) 0%, rgba(13, 11, 9, 0.4) 55%, transparent 100%);
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-media {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-image-grid {
    display: none;
  }
}

/* ==========================================================================
   21. RESPONSIVE — 768px
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --gap-xl: 4rem;
    --gap-lg: 2.5rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 1.25rem;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background-color: rgba(13, 11, 9, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 999;
  }

  .header-nav.nav-open {
    display: block;
  }

  .header-nav .nav-menu {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .header-nav .nav-menu > li {
    width: 100%;
  }

  .header-nav .nav-menu > li > a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-dim);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 6rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .experience-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-header p {
    text-align: left;
    max-width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: var(--gap-md) 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-content {
    padding: var(--gap-md) 0;
    border-right: none;
  }

  .included-media {
    min-height: 280px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .multistep-form {
    padding: 1.5rem;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-media {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-image-grid {
    display: none;
  }
}


/* =============================================
   PAGE TEMPLATES — shared
   ============================================= */

.page-hero {
  padding: calc(var(--header-h) + 5rem) 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 1.25rem; }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.page-hero__sub {
  font-size: 1rem;
  color: var(--cream-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.hiw-cta { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); background: var(--bg-2); }
.hiw-cta__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.hiw-cta__inner .eyebrow { justify-content: center; }
.hiw-cta__inner h2 { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.05; }
.hiw-cta__inner p { font-size: 0.92rem; color: var(--cream-2); max-width: 420px; line-height: 1.75; }
.hiw-cta__actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }


/* =============================================
   HOW IT WORKS PAGE
   ============================================= */

.hiw-steps { padding: var(--gap-xl) 0; }
.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  padding: var(--gap-lg) 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step--reverse .hiw-step__media { order: 2; }
.hiw-step--reverse .hiw-step__content { order: 1; }
.hiw-step__media { overflow: hidden; }
.hiw-step__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.hiw-step:hover .hiw-step__media img { transform: scale(1.03); }
.hiw-step__content { display: flex; flex-direction: column; gap: 1rem; }
.hiw-step__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  display: block;
}
.hiw-step__content h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.1; }
.hiw-step__content p { font-size: 0.9rem; color: var(--cream-2); line-height: 1.8; }
.hiw-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; border-top: 1px solid var(--border-dim); padding-top: 1rem; }
.hiw-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--cream-2); }
.hiw-list li::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hiw-included { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); background: var(--bg-2); }
.hiw-included__header { text-align: center; margin-bottom: var(--gap-lg); }
.hiw-included__header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.hiw-included__header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; margin-bottom: 0.75rem; }
.hiw-included__header p { font-size: 0.9rem; color: var(--cream-2); max-width: 480px; margin: 0 auto; line-height: 1.75; }
.hiw-included__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.hiw-included__item { padding: var(--gap-md); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw-included__icon { display: block; color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; }
.hiw-included__item h3 { font-size: 1rem; font-weight: 500; color: var(--cream); margin-bottom: 0.6rem; }
.hiw-included__item p { font-size: 0.82rem; color: var(--cream-2); line-height: 1.75; }

.hiw-faq { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); }
.hiw-faq__header { text-align: center; margin-bottom: var(--gap-lg); }
.hiw-faq__header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.hiw-faq__header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
.hiw-accordion { max-width: 780px; margin: 0 auto; }


/* =============================================
   FLAVOURS PAGE
   ============================================= */

.flavours-category { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); }
.flavours-category--alt { background: var(--bg-2); }
.flavours-category__header { margin-bottom: var(--gap-lg); }
.flavours-category__meta { display: flex; align-items: flex-start; gap: var(--gap-md); }
.flavour-cat-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: var(--gold-dim); line-height: 1; flex-shrink: 0; margin-top: -0.2rem; }
.flavours-category__meta h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; margin-bottom: 0.4rem; }
.flavours-category__meta p { font-size: 0.88rem; color: var(--cream-2); line-height: 1.6; }

.flavours-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-right: none; }
.flavours-grid--half { grid-template-columns: repeat(2, 1fr); }
.flavours-grid--signature { grid-template-columns: 1fr 1fr; }

.flavour-card { border-right: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.flavour-card--wide { flex-direction: row; }
.flavour-card__img { overflow: hidden; flex-shrink: 0; }
.flavour-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.78);
}
.flavour-card--wide .flavour-card__img { width: 45%; }
.flavour-card--wide .flavour-card__img img { height: 100%; }
.flavour-card:hover .flavour-card__img img { transform: scale(1.05); filter: brightness(0.6); }

.flavour-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.flavour-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.2rem; }
.flavour-tag { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-3); border: 1px solid var(--border-dim); padding: 0.2rem 0.55rem; }
.flavour-tag--premium { border-color: rgba(201,168,76,0.3); color: var(--gold); }
.flavour-tag--signature { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.flavour-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--cream); line-height: 1.15; }
.flavour-card p { font-size: 0.8rem; color: var(--cream-2); line-height: 1.7; }

.flavours-custom { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); background: var(--bg-card); }
.flavours-custom__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.flavours-custom__inner .eyebrow { justify-content: center; }
.flavours-custom__inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
.flavours-custom__inner p { font-size: 0.92rem; color: var(--cream-2); max-width: 520px; line-height: 1.8; }


/* =============================================
   PAGE TEMPLATES — RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .flavours-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-included__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 3rem) 0 2.5rem; }
  .hiw-step { grid-template-columns: 1fr; gap: var(--gap-md); }
  .hiw-step--reverse .hiw-step__media,
  .hiw-step--reverse .hiw-step__content { order: 0; }
  .hiw-step__num { font-size: 2.5rem; }
  .hiw-included__grid { grid-template-columns: 1fr; }
  .flavours-grid,
  .flavours-grid--half,
  .flavours-grid--signature { grid-template-columns: 1fr; border-right: 1px solid var(--border); }
  .flavour-card--wide { flex-direction: column; }
  .flavour-card--wide .flavour-card__img { width: 100%; }
  .flavour-card--wide .flavour-card__img img { height: 220px; }
  .flavours-category__meta { flex-direction: column; gap: var(--gap-sm); }
  .flavour-cat-num { font-size: 2.5rem; }
  .hiw-cta__actions { flex-direction: column; align-items: stretch; text-align: center; }
}


/* =============================================
   ADD-ONS SECTION
   ============================================= */

.section-addons {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.addons-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.addons-header .eyebrow { justify-content: center; margin-bottom: 1rem; }

.addons-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.addons-header p {
  font-size: 0.9rem;
  color: var(--cream-2);
  line-height: 1.7;
}

/* Base package bar */
.addons-base {
  border: 1px solid var(--border);
  margin-bottom: var(--gap-md);
}

.addons-base__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  gap: 2rem;
}

.addons-base__label .eyebrow { margin-bottom: 0.5rem; }

.addons-base__label h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.addons-base__label p {
  font-size: 0.82rem;
  color: var(--cream-2);
  line-height: 1.6;
  max-width: 420px;
}

.addons-base__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-shrink: 0;
}

.addon-price-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.addon-price-cur {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* Add-on cards grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
}

.addon-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.3s;
}

.addon-card:hover { background: var(--bg-card); }

.addon-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.25rem;
}

.addon-card__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.addon-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.addon-card p {
  font-size: 0.8rem;
  color: var(--cream-2);
  line-height: 1.75;
  flex: 1;
}

.addon-card__note {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
  border-top: 1px solid var(--border-dim);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* Footer note */
.addons-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--cream-3);
  letter-spacing: 0.04em;
  margin-top: var(--gap-md);
  padding-top: var(--gap-md);
  border-top: 1px solid var(--border-dim);
}

.addons-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.addons-note a:hover { opacity: 0.75; }

/* Responsive */
@media (max-width: 1024px) {
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .addons-base__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .addons-grid { grid-template-columns: 1fr; border-right: 1px solid var(--border); }
}


/* =============================================
   HOMEPAGE PACKAGES SECTION
   ============================================= */

.section-packages {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.packages-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.packages-header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.packages-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; margin-bottom: 0.6rem; }
.packages-header p { font-size: 0.9rem; color: var(--cream-2); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* All included bar */
.packages-allincl {
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin-bottom: var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.allincl-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}
.allincl-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--cream-2);
}
.allincl-check { color: var(--gold); font-size: 0.7rem; }
.packages-minimum {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
  white-space: nowrap;
}

/* 4 package cards grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-right: none;
  margin-bottom: var(--gap-md);
}

.pkg-card {
  border-right: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: background 0.3s;
}

.pkg-card:hover { background: var(--bg-card); }

.pkg-card--popular {
  background: var(--bg-card);
  border-right-color: var(--gold);
  border-left: 1px solid var(--gold);
  margin-left: -1px;
}

.pkg-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: -0.25rem;
  align-self: flex-start;
}

.pkg-card__head { display: flex; flex-direction: column; gap: 0.4rem; }

.pkg-card__head h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}

.pkg-price { display: flex; align-items: baseline; gap: 0.2rem; }
.pkg-price__from { font-size: 0.7rem; color: var(--cream-3); letter-spacing: 0.06em; }
.pkg-price__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.pkg-price--vip { flex-direction: column; gap: 0.1rem; }
.pkg-price--vip .pkg-price__num { font-size: clamp(1.8rem, 2.5vw, 2.2rem); }

.pkg-for {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pkg-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--cream-2);
  line-height: 1.4;
}

.pkg-includes li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.pkg-includes--vip li { font-size: 0.82rem; }

.pkg-upgrade {
  border-top: 1px solid var(--border-dim);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pkg-upgrade__label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.pkg-upgrade__detail {
  font-size: 0.78rem;
  color: var(--cream-2);
  line-height: 1.5;
}

.pkg-upgrade__detail strong { color: var(--gold); }

/* VIP wide card */
.pkg-vip {
  border: 1px solid var(--gold);
  background: var(--bg-card);
  margin-bottom: var(--gap-md);
}

.pkg-vip__content { padding: 2.5rem; }

.pkg-vip .pkg-price--vip { margin: 0.5rem 0; }

.pkg-vip__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

.pkg-vip__note {
  font-size: 0.82rem;
  color: var(--cream-2);
  line-height: 1.7;
  max-width: 360px;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

.pkg-vip__content { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--gap-lg); align-items: start; }

.pkg-vip__right .btn-gold { margin-top: 2rem; }

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


/* =============================================
   PACKAGES PAGE (page-packages.php)
   ============================================= */

.pkgp-allincl {
  padding: var(--gap-md) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.pkgp-allincl__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
  margin-bottom: 0.75rem;
}

.pkgp-allincl__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--cream-2);
}

.pkgp-allincl__list span { color: var(--gold); }

.pkgp-minimum {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* Package sections */
.pkgp-section { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); }
.pkgp-section--alt { background: var(--bg-2); }

.pkgp-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap-xl);
  align-items: start;
}

.pkgp-row__head { display: flex; flex-direction: column; gap: 0.75rem; position: sticky; top: calc(var(--header-h) + 2rem); }

.pkgp-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  display: block;
}

.pkgp-row__head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }

.pkgp-price { display: flex; flex-direction: column; gap: 0.1rem; margin: 0.25rem 0; }
.pkgp-price__from { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-3); }
.pkgp-price__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.pkgp-price--vip .pkgp-price__num { font-size: clamp(2rem, 3vw, 2.8rem); }

.pkgp-for {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.pkgp-perfect { margin-top: 0.5rem; }
.pkgp-perfect__label { display: block; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 0.5rem; }
.pkgp-perfect ul { display: flex; flex-direction: column; gap: 0.3rem; }
.pkgp-perfect li { font-size: 0.78rem; color: var(--cream-2); }
.pkgp-perfect li::before { content: '· '; color: var(--gold); }

.pkgp-popular-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.25rem;
  align-self: flex-start;
}

.pkgp-row__body { display: flex; flex-direction: column; gap: var(--gap-md); }

.pkgp-included h3,
.pkgp-upgrade h3 {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.pkgp-list { display: flex; flex-direction: column; gap: 0.65rem; }
.pkgp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--cream-2);
  line-height: 1.5;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-dim);
}
.pkgp-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pkgp-list li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 2px; }

.pkgp-upgrade {
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.pkgp-upgrade p { font-size: 0.82rem; color: var(--cream-2); margin-bottom: 1rem; }
.pkgp-upgrade__offer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pkgp-upgrade__what { font-size: 0.9rem; font-weight: 500; color: var(--cream); flex: 1; }
.pkgp-upgrade__plus {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
}
.pkgp-upgrade__total { font-size: 0.75rem; color: var(--cream-3); letter-spacing: 0.06em; }

/* VIP section */
.pkgp-vip {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.pkgp-vip__header { text-align: center; margin-bottom: var(--gap-lg); }
.pkgp-vip__header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.pkgp-vip__header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; margin-bottom: 0.75rem; }
.pkgp-vip__header p { font-size: 0.9rem; color: var(--cream-2); max-width: 640px; margin: 0 auto; line-height: 1.8; }

.pkgp-vip__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold);
  border-right: none;
}

.pkgp-vip-tier {
  border-right: 1px solid var(--gold);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pkgp-vip-tier__head { display: flex; flex-direction: column; gap: 0.4rem; }
.pkgp-vip-tier__head h3 { font-size: 1.4rem; font-weight: 300; }

.pkgp-vip-badge {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* Add-ons */
.pkgp-addons { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); }
.pkgp-addons__header { text-align: center; margin-bottom: var(--gap-lg); }
.pkgp-addons__header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.pkgp-addons__header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }

.pkgp-addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
}

.pkgp-addon {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkgp-addon__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.pkgp-addon__head h3 { font-size: 0.92rem; font-weight: 500; color: var(--cream); line-height: 1.3; flex: 1; }

.pkgp-addon__price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.pkgp-addon__price span { font-size: 0.62rem; color: var(--cream-3); font-family: var(--font-sans); font-weight: 400; }

.pkgp-addon__note {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.pkgp-addon p { font-size: 0.8rem; color: var(--cream-2); line-height: 1.7; }

.pkgp-addon__list { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.25rem; }
.pkgp-addon__list li { font-size: 0.75rem; color: var(--cream-2); }
.pkgp-addon__list li::before { content: '✓ '; color: var(--gold); font-size: 0.65rem; }

/* Deposits */
.pkgp-deposits {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.pkgp-deposits__header { text-align: center; margin-bottom: var(--gap-lg); }
.pkgp-deposits__header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.pkgp-deposits__header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; margin-bottom: 0.75rem; }
.pkgp-deposits__header p { font-size: 0.88rem; color: var(--cream-2); max-width: 580px; margin: 0 auto; line-height: 1.8; }

.pkgp-deposits__table { border: 1px solid var(--border); }
.pkgp-deposit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.88rem;
  color: var(--cream-2);
}
.pkgp-deposit-row:last-child { border-bottom: none; }
.pkgp-deposit-row span:last-child {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  text-align: right;
}
.pkgp-deposit-row--vip span:last-child { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.pkgp-deposit-row--vip em { font-family: var(--font-sans); font-size: 0.65rem; font-style: normal; color: var(--cream-3); letter-spacing: 0.04em; }


/* =============================================
   FLAVOURS PAGE — list layout
   ============================================= */

.flavours-list {
  border-top: 1px solid var(--border);
}

.flavour-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.2s;
  position: relative;
}

.flavour-item:last-child { border-bottom: 1px solid var(--border); }

.flavour-item--sig .flavour-item__name,
.flavour-item--prem .flavour-item__name { color: var(--cream); }

.flavour-item__tag {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.flavour-item__tag--premium {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.flavour-item__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.flavour-item__desc {
  font-size: 0.82rem;
  color: var(--cream-2);
  line-height: 1.7;
}

/* Flavour item with tag — 3-col layout */
.flavour-item--sig,
.flavour-item--prem {
  grid-template-columns: 100px 200px 1fr;
}

/* Enhance section */
.flavours-enhance {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.flavours-enhance__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.flavours-enhance__inner .eyebrow { justify-content: center; }

.flavours-enhance__inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }

.flavours-enhance__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.flavours-enhance__list li {
  font-size: 0.82rem;
  color: var(--cream-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.flavours-enhance__list li::before { content: '—'; color: var(--gold); }


/* =============================================
   RESPONSIVE — PACKAGES + FLAVOURS PAGES
   ============================================= */

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card--popular { border-left: none; margin-left: 0; }
  .pkgp-row { grid-template-columns: 1fr; gap: var(--gap-md); }
  .pkgp-row__head { position: static; }
  .pkgp-vip__tiers { grid-template-columns: 1fr; border-right: 1px solid var(--gold); }
  .pkgp-vip-tier { border-bottom: 1px solid var(--gold); }
  .pkgp-addons__grid { grid-template-columns: repeat(2, 1fr); }
  .flavour-item { grid-template-columns: 200px 1fr; }
  .flavour-item--sig, .flavour-item--prem { grid-template-columns: 80px 180px 1fr; }
}

@media (max-width: 768px) {
  .packages-allincl { flex-direction: column; }
  .packages-grid { grid-template-columns: 1fr; border-right: 1px solid var(--border); }
  .pkg-vip__content { grid-template-columns: 1fr; }
  .pkgp-addons__grid { grid-template-columns: 1fr; border-right: 1px solid var(--border); }
  .pkgp-deposit-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .pkgp-deposit-row span:last-child { align-self: flex-end; }
  .flavour-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .flavour-item--sig, .flavour-item--prem { grid-template-columns: 1fr; }
  .flavours-enhance__list { flex-direction: column; align-items: center; }
}


/* ==========================================================================
   22. BOOKING FORM PAGE
   ========================================================================== */

.book-page { padding: var(--gap-xl) 0; border-top: 1px solid var(--border); }

.book-form { display: flex; flex-direction: column; gap: 0; }

.book-section {
  border: none;
  border-top: 1px solid var(--border);
  padding: var(--gap-lg) 0;
  margin: 0;
}

.book-section__title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.book-section__note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
}

.book-flavour-group {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dim);
}

.book-flavour-group:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.radio-group--three { grid-template-columns: repeat(3, 1fr); }

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.checkbox-group--three { grid-template-columns: repeat(3, 1fr); }

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border-dim);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--cream-2);
  line-height: 1.45;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.checkbox-option:has(input:checked) {
  border-color: var(--gold);
  color: var(--cream);
  background-color: var(--gold-dim);
}

.checkbox-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.book-terms { border-top: 1px solid var(--border-dim); }

.book-terms__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-dim);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--cream-2);
  line-height: 1.65;
  cursor: pointer;
}

.book-terms__item:last-child { border-bottom: none; }

.book-terms__item input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
}

.book-submit {
  padding: var(--gap-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.book-submit__btn { padding: 1rem 3rem; font-size: 0.75rem; }

.book-submit__note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--cream-3);
  line-height: 1.7;
  max-width: 420px;
}


/* ==========================================================================
   23. HOMEPAGE ADDITIONAL SECTIONS
   ========================================================================== */

/* --- Fix included-media empty-state --- */
.included-media {
  background:
    radial-gradient(ellipse 75% 65% at 55% 55%, rgba(232,184,75,0.07) 0%, transparent 68%),
    var(--bg-card);
}

/* --- Process 5-step variant --- */
.process-steps--five { grid-template-columns: repeat(5, 1fr); }
.process-step--last  { border-right: none; }

.process-cta {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: var(--gap-md);
  border-top: 1px solid var(--border);
  margin-top: var(--gap-md);
}

/* --- Why Clients Choose Us --- */
.section-why {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.why-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.why-header .eyebrow  { justify-content: center; margin-bottom: 1rem; }
.why-header h2        { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }

/* --- Service Areas --- */
.section-areas {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--border);
}

.areas-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.areas-header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.areas-header h2       { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
}

.area-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--gap-md);
}

.area-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.area-item p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--cream-2);
  line-height: 1.75;
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .process-steps--five { grid-template-columns: repeat(3, 1fr); }
  .areas-grid          { grid-template-columns: repeat(2, 1fr); }
  .radio-group--three  { grid-template-columns: 1fr 1fr; }
  .checkbox-group--three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .process-steps--five  { grid-template-columns: 1fr; border-right: none; }
  .areas-grid           { grid-template-columns: 1fr; border-right: 1px solid var(--border); }
  .radio-group--three   { grid-template-columns: 1fr; }
  .checkbox-group,
  .checkbox-group--three { grid-template-columns: 1fr; }
  .book-submit          { align-items: stretch; }
  .book-submit__btn     { text-align: center; justify-content: center; }
  .process-cta          { justify-content: flex-start; }
}


/* ==========================================================================
   24. HERO — 2-COLUMN SPLIT
   ========================================================================== */

/* Override centered single-column defaults */
.hero {
  display: block;
  padding: 0;
  text-align: left;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 4rem 4rem;
  min-height: 100svh;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1.5rem;
}

.hero__left .hero-label   { margin-bottom: 0; }
.hero__left .hero-title   { font-size: clamp(3rem, 5vw, 7rem); line-height: 0.9; text-align: right; }
.hero__left .hero-divider { margin: 0; }
.hero__left .hero-sub     { margin: 0; max-width: 380px; text-align: right; }
.hero__left .hero-actions { margin-bottom: 0; justify-content: flex-end; }
.hero__left .hero-meta    { justify-content: flex-end; }

/* Right column */
.hero__right {
  display: flex;
  align-items: center;
}

/* Quick booking form */
.hero-form {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.hero-form__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: right;
}

.hero-form__header .eyebrow {
  margin-bottom: 0.75rem;
  justify-content: flex-end;
}
.hero-form__header .eyebrow::before,
.hero-form__header .eyebrow::after { display: none; }

.hero-form__header h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1.1;
  text-align: right;
}

.hero-form__header p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--cream-2);
  line-height: 1.65;
  text-align: right;
}

.hero-form__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-form__body .form-field { margin-bottom: 0; }

/* Select styling */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(243%2C237%2C226%2C0.4)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}

.form-select option {
  background-color: #1b1814;
  color: #f3ede2;
}

.hero-form__submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  margin-top: 0.25rem;
  font-size: 0.72rem;
}

.hero-form__disclaimer {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: var(--cream-3);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
}

.hero-form__success {
  text-align: center;
  padding: var(--gap-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-form__success[hidden] { display: none !important; }

/* Override responsive hero rules that set padding on .hero directly */
@media (max-width: 1200px) {
  .hero__inner {
    gap: 3rem;
    padding: calc(var(--header-h) + 4rem) 2.5rem 4rem;
  }
  .hero__left .hero-title { font-size: clamp(2.5rem, 4.5vw, 5.5rem); }
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: calc(var(--header-h) + 3rem) 2rem 3rem;
    text-align: center;
  }
  .hero__left               { align-items: center; text-align: center; }
  .hero__left .hero-title   { font-size: clamp(3rem, 9vw, 7rem); text-align: center; }
  .hero__left .hero-meta    { justify-content: center; }
  .hero__left .hero-actions { justify-content: center; }
  .hero__left .hero-sub     { max-width: none; margin: 0 auto; text-align: center; }
  .hero__left .hero-divider { margin: 0 auto; }
  .hero__right              { justify-content: center; }
  .hero-form                { max-width: 540px; }
}

@media (max-width: 768px) {
  .hero { padding: 0 !important; }
  .hero__inner {
    padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
    gap: 2.5rem;
  }
}


/* ==========================================================================
   25. HERO BACKGROUND IMAGE
   ========================================================================== */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* Directional overlay:
   left column (text) — darker so cream text pops
   right column (form) — darker so the form box floats
   top edge — fades to near-black so header blends
   bottom edge — vignette for scroll indicator            */
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(13, 11, 9, 0.82) 0%,
      rgba(13, 11, 9, 0.45) 45%,
      rgba(13, 11, 9, 0.72) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(13, 11, 9, 0.55) 0%,
      transparent 18%,
      transparent 72%,
      rgba(13, 11, 9, 0.75) 100%
    );
}

/* Weaken the existing radial glow — real photo does the work now */
.hero::before {
  opacity: 0.35;
}

/* Form box: slight transparency so image bleeds through edges */
.hero-form {
  background-color: rgba(27, 24, 20, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* ==========================================================================
   26. HERO SWAP — form LEFT, text RIGHT + mobile audit fixes
   ========================================================================== */

/* Move form to left column visually (DOM order stays text-first for mobile) */
.hero__right { order: -1; }

/* Adjust overlay gradient: form is now LEFT, text is RIGHT */
.hero-bg__overlay {
  background:
    linear-gradient(
      to right,
      rgba(13, 11, 9, 0.78) 0%,
      rgba(13, 11, 9, 0.40) 45%,
      rgba(13, 11, 9, 0.80) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(13, 11, 9, 0.55) 0%,
      transparent 18%,
      transparent 72%,
      rgba(13, 11, 9, 0.75) 100%
    );
}

/* Mobile: reset order so text appears on top, form below */
@media (max-width: 960px) {
  .hero__right { order: 0; }
}

/* ── Mobile hero image focal point ── */
@media (max-width: 768px) {
  .hero-bg img { object-position: 68% 35%; }
}

/* ── Global mobile safety net ──────────────────────────────────────────── */

/* Prevent any element from causing horizontal scroll */
* { box-sizing: border-box; }

/* Containers never overflow viewport width */
.container,
.container--narrow,
.container--wide {
  max-width: min(100%, 1440px);
  overflow-x: clip;
}

/* Images never overflow their containers */
img { max-width: 100%; height: auto; }

/* ── Section-level mobile fixes ──────────────────────────────────────── */

@media (max-width: 768px) {

  /* Hero */
  .hero { padding: 0 !important; overflow: hidden; }
  .hero__inner {
    padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
    gap: 2rem;
    min-height: auto;
  }
  .hero__left .hero-title { font-size: clamp(2.6rem, 11vw, 5rem); }
  .hero-form { padding: 1.75rem 1.25rem; }
  .hero-form__header h3 { font-size: 1.5rem; }

  /* Process steps — ensure no right border bleeds */
  .process-steps--five {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--border);
  }
  .process-steps--five .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: var(--gap-md) 0;
  }
  .process-steps--five .process-step--last { border-bottom: none; }

  /* Why Us grid */
  .hiw-included__grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--border);
  }

  /* Service areas */
  .areas-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--border);
  }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Packages grid */
  .packages-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--border);
  }
  .pkg-card--popular { border-left: none; margin-left: 0; }

  /* VIP card inner grid */
  .pkg-vip__content { grid-template-columns: 1fr; }

  /* Included section */
  .included-grid { grid-template-columns: 1fr; }
  .included-content { border-right: none; padding: var(--gap-md) 0; }
  .included-media { min-height: 260px; }

  /* Reviews header */
  .reviews-header { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }

  /* CTA form */
  .multistep-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Booking form page */
  .radio-group--three { grid-template-columns: 1fr; }
  .checkbox-group,
  .checkbox-group--three { grid-template-columns: 1fr; }
  .book-submit__btn { justify-content: center; width: 100%; }

  /* Process CTA */
  .process-cta { justify-content: flex-start; flex-wrap: wrap; }

  /* Comparison table */
  .comparison-grid { grid-template-columns: 1fr; }

  /* Header nav */
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 1.25rem;
  }
}

/* Tablet (769px–1024px) tightening */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__inner {
    gap: 2.5rem;
    padding: calc(var(--header-h) + 3.5rem) 2rem 3.5rem;
  }
  .hero-form { padding: 2rem; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps--five { grid-template-columns: repeat(3, 1fr); }
}


/* ==========================================================================
   27. POLISH — stats, process centering, seamless blending
   ========================================================================== */

/* ── 2-stat layout ── */
.experience-stats--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.experience-stats--two .stat:last-child { border-right: none; }

@media (max-width: 768px) {
  .experience-stats--two {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
  .experience-stats--two .stat {
    border-right: none;
    border-bottom: none;
  }
}

/* ── Centered process steps (5-step variant) ── */
.process-steps--five .process-step {
  text-align: center;
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-steps--five .process-step::before {
  margin: 0 auto 1.5rem;
}

.process-steps--five .process-step__num {
  text-align: center;
}

.process-steps--five .process-step h3,
.process-steps--five .process-step p {
  text-align: center;
}

/* ── Seamless section blending ── */

/* Soften the hard horizontal borders between sections */
.section-experience,
.section-services,
.section-process,
.section-included,
.section-packages,
.section-reviews,
.section-why,
.section-areas,
.section-faq,
.section-cta {
  border-top-color: rgba(232, 184, 75, 0.10);
}

/* Service cards: tighter image overlay so photos are richer */
.service-card__img img {
  filter: brightness(0.72);
  transition: transform 1s var(--ease-out), filter 0.6s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

/* Included media: sharper with real photo */
.included-media img {
  filter: brightness(0.88);
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.included-media:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* Smooth scroll-reveal: slightly longer, feels cinematic */
.reveal {
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

/* Section transitions feel less abrupt at mobile */
@media (max-width: 768px) {
  .experience-stats--two {
    grid-template-columns: 1fr 1fr;
    border: none;
  }
  .experience-stats--two .stat {
    border: none;
    padding: var(--gap-sm) 0;
  }
  .process-steps--five .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(232, 184, 75, 0.10);
    padding: var(--gap-sm) 0;
  }
}


/* ==========================================================================
   28. ATMOSPHERIC SMOKE SYSTEM
   ========================================================================== */

/* ── Stacking context: smoke behind content in every section ── */
.section-experience,
.section-services,
.section-process,
.section-included,
.section-packages,
.section-reviews,
.section-why,
.section-areas,
.section-faq,
.section-cta {
  position: relative;
  isolation: isolate;
}

/* Lift all containers above smoke layer */
.section-experience > .container,
.section-process    > .container,
.section-included   > .container,
.section-packages   > .container,
.section-reviews    > .container,
.section-why        > .container,
.section-areas      > .container,
.section-faq        > .container,
.section-cta        > .container,
.services-grid {
  position: relative;
  z-index: 1;
}
.section-services > .container { position: relative; z-index: 1; }

/* ── Smoke keyframe animations (4 distinct drift patterns) ── */
@keyframes smokeA {
  0%   { transform: translate(0, 0) scale(1);     opacity: 0.65; }
  33%  { transform: translate(2%, -3%) scale(1.04); opacity: 1;    }
  66%  { transform: translate(-1%, 2%) scale(0.97); opacity: 0.75; }
  100% { transform: translate(3%, -1%) scale(1.05); opacity: 0.55; }
}
@keyframes smokeB {
  0%   { transform: translate(0, 0) scale(1);      opacity: 0.80; }
  40%  { transform: translate(-3%, 2%) scale(1.03); opacity: 0.50; }
  75%  { transform: translate(1%, -3%) scale(1.06); opacity: 1;    }
  100% { transform: translate(-2%, 1%) scale(0.96); opacity: 0.70; }
}
@keyframes smokeC {
  0%   { transform: translate(0, 0);               opacity: 0.55; }
  50%  { transform: translate(1.5%, -2.5%);        opacity: 1;    }
  100% { transform: translate(-2%, 1.5%);          opacity: 0.60; }
}
@keyframes smokeD {
  0%   { transform: translate(0, 0) scale(1);      opacity: 0.70; }
  30%  { transform: translate(3%, 1%)  scale(1.04); opacity: 0.90; }
  70%  { transform: translate(-1%, -2%) scale(1.02); opacity: 0.50; }
  100% { transform: translate(2%, 2%)  scale(0.98); opacity: 1;    }
}

/* ── Hero: extra smoke layer (::before taken by glow) ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 45% 60% at  8% 25%, rgba(255,255,255,0.055) 0%, transparent 68%),
    radial-gradient(ellipse 40% 50% at 92% 72%, rgba(255,255,255,0.045) 0%, transparent 68%),
    radial-gradient(ellipse 55% 38% at 52% 88%, rgba(232,184,75,0.065)  0%, transparent 62%);
  animation: smokeA 24s ease-in-out infinite alternate;
  will-change: transform;
}

/* ── Experience section ── */
.section-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 50% 70% at  4% 50%, rgba(255,255,255,0.042) 0%, transparent 65%),
    radial-gradient(ellipse 45% 60% at 96% 35%, rgba(255,255,255,0.036) 0%, transparent 65%),
    radial-gradient(ellipse 65% 45% at 50% 95%, rgba(232,184,75,0.050)  0%, transparent 68%);
  animation: smokeB 26s ease-in-out infinite alternate;
}

/* ── Services section ── */
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 28% 85% at  0% 50%, rgba(255,255,255,0.048) 0%, transparent 62%),
    radial-gradient(ellipse 28% 85% at 100% 50%, rgba(255,255,255,0.040) 0%, transparent 62%),
    radial-gradient(ellipse 70% 28% at 50%  0%, rgba(232,184,75,0.032)  0%, transparent 68%);
  animation: smokeC 20s ease-in-out infinite alternate;
}

/* ── Service card: gold smoke glow on hover ── */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    radial-gradient(ellipse 90% 55% at 50% 105%, rgba(232,184,75,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 70% 30% at 50%   0%, rgba(255,255,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.7s ease;
}

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

/* Enhanced service card overlay */
.service-card__overlay {
  background:
    linear-gradient(to top, rgba(13,11,9,0.96) 0%, rgba(13,11,9,0.55) 35%, transparent 62%),
    radial-gradient(ellipse 80% 45% at 50% 100%, rgba(232,184,75,0.07) 0%, transparent 65%);
}

.service-card:hover .service-card__overlay {
  background:
    linear-gradient(to top, rgba(13,11,9,0.97) 0%, rgba(13,11,9,0.62) 38%, rgba(13,11,9,0.08) 68%, transparent 78%),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(232,184,75,0.13) 0%, transparent 65%);
}

/* ── Service card gold top trace on hover ── */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.65s var(--ease-out);
  z-index: 10;
  pointer-events: none;
}
.service-card:hover::before { transform: scaleX(1); }

/* ── Process section ── */
.section-process::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 80% 38% at 50% 0%,  rgba(255,255,255,0.038) 0%, transparent 65%),
    radial-gradient(ellipse 32% 65% at  8% 65%, rgba(255,255,255,0.030) 0%, transparent 60%),
    radial-gradient(ellipse 32% 65% at 92% 35%, rgba(232,184,75,0.035)  0%, transparent 60%);
  animation: smokeD 30s ease-in-out infinite alternate;
}
.section-process > .container { position: relative; z-index: 1; }

/* ── Included section ── */
.section-included::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 38% 80% at  0% 50%, rgba(255,255,255,0.040) 0%, transparent 60%),
    radial-gradient(ellipse 38% 60% at 100% 30%, rgba(255,255,255,0.032) 0%, transparent 60%),
    radial-gradient(ellipse 80% 38% at 50% 100%, rgba(232,184,75,0.048)  0%, transparent 65%);
  animation: smokeA 29s ease-in-out infinite alternate;
}

/* ── Packages section ── */
.section-packages::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 60% 48% at 50%  0%, rgba(255,255,255,0.038) 0%, transparent 65%),
    radial-gradient(ellipse 32% 60% at  4% 72%, rgba(255,255,255,0.028) 0%, transparent 60%),
    radial-gradient(ellipse 32% 60% at 96% 28%, rgba(232,184,75,0.030)  0%, transparent 60%);
  animation: smokeB 32s ease-in-out infinite alternate;
}

/* ── Reviews section ── */
.section-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 70% 48% at 50%  0%, rgba(255,255,255,0.036) 0%, transparent 62%),
    radial-gradient(ellipse 38% 68% at  8% 60%, rgba(255,255,255,0.028) 0%, transparent 65%),
    radial-gradient(ellipse 48% 48% at 88% 38%, rgba(232,184,75,0.038)  0%, transparent 65%);
  animation: smokeC 25s ease-in-out infinite alternate;
}

/* ── Why / Areas / FAQ ── */
.section-why::before,
.section-areas::before,
.section-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 48% 60% at 12% 40%, rgba(255,255,255,0.034) 0%, transparent 65%),
    radial-gradient(ellipse 48% 60% at 88% 62%, rgba(255,255,255,0.028) 0%, transparent 65%),
    radial-gradient(ellipse 70% 35% at 50% 95%, rgba(232,184,75,0.040)  0%, transparent 68%);
  animation: smokeD 22s ease-in-out infinite alternate;
}

/* ── CTA section: most dramatic smoke ── */
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 55% 58% at 50% 50%, rgba(232,184,75,0.072) 0%, transparent 65%),
    radial-gradient(ellipse 38% 80% at  0% 50%, rgba(255,255,255,0.050) 0%, transparent 60%),
    radial-gradient(ellipse 38% 80% at 100% 50%, rgba(255,255,255,0.044) 0%, transparent 60%);
  animation: smokeA 19s ease-in-out infinite alternate;
  will-change: transform;
}

/* ── Section transition fogs (bottom-to-next fade) ── */
.section-experience::after,
.section-process::after,
.section-included::after,
.section-reviews::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(13,11,9,0.38));
}

/* ── Gold stat glow ── */
.stat-num {
  text-shadow:
    0 0 28px rgba(232,184,75,0.40),
    0 0 55px rgba(232,184,75,0.18);
}

/* ── VIP card pulsing gold glow ── */
.pkg-vip {
  box-shadow:
    0 0 35px rgba(232,184,75,0.12),
    0 0 70px rgba(232,184,75,0.06),
    inset 0 0 25px rgba(232,184,75,0.03);
}

/* ── Gold button glow on hover ── */
.btn-gold:hover {
  box-shadow:
    0 0 18px rgba(232,184,75,0.28),
    0 0 36px rgba(232,184,75,0.12);
}

/* ── Header call button glow on hover ── */
.header-call:hover {
  box-shadow: 0 0 16px rgba(232,184,75,0.25);
}

/* ── Testimonial card atmospheric border ── */
.testimonial-card {
  box-shadow: inset 0 0 35px rgba(255,255,255,0.012);
}

/* ── Accordion trigger gold line on active ── */
.accordion__trigger[aria-expanded="true"] {
  text-shadow: 0 0 20px rgba(232,184,75,0.20);
}

/* ── Included media: enhanced depth ── */
.included-media {
  box-shadow: inset 0 0 60px rgba(0,0,0,0.50);
}

/* ── Process step number: subtle gold glow ── */
.process-step__num {
  text-shadow: 0 0 30px rgba(232,184,75,0.22);
}

/* ── Smooth entrance: slightly slower + cinematic ── */
.reveal {
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
