/* =============================================
   WE NAILS AND SPA — Elegant Theme
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:     #191944;
  --charcoal-2:   #22255a;
  --cream:        #fdf6ee;
  --cream-mid:    #f0e6d6;
  --gold:         #c9a84c;
  --gold-dark:    #9e7c25;
  --gold-light:   #faf0d7;
  --rose:         #c4856e;
  --rose-light:   #fceee8;
  --white:        #ffffff;
  --text:         #191944;
  --text-mid:     #52525b;
  --text-soft:    #a1a1aa;
  --radius:       12px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
  --shadow:       0 6px 32px rgba(0,0,0,.10);
  --shadow-lg:    0 16px 56px rgba(0,0,0,.14);
  --transition:   .3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.section-sub {
  color: var(--text);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
}
/* Sweep-shimmer — travels left to right, then pauses */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.26) 50%, transparent 100%);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%   { left: -100%; }
  35%  { left: 150%;  }
  100% { left: 150%;  }
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}
.btn-primary:hover::after { animation: none; }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* =============================================
   HEADER — two-row layout
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ---- Top bar ---- */
.header-topbar {
  background: var(--charcoal);
  padding: 7px 0;
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-tagline {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(253,246,238,.4);
}
.header-top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-top-right a {
  font-size: 1rem;
  color: rgba(253,246,238,.65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
  font-weight: 500;
}
.header-top-right a:hover { color: var(--gold); }

/* ---- Main bar ---- */
.header-main {
  background: rgba(253,246,238,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-mid);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.header-book-btn { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav — offset accounts for topbar (~34px) + main bar (68px) */
.mobile-nav {
  display: none;
  position: fixed;
  top: 102px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-mid);
  padding: 20px 24px 28px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--cream-mid);
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 18px; width: 100%; text-align: center; }

/* =============================================
   HERO — Two-panel split (desktop/tablet) | stacked (mobile)
   ============================================= */
#home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ── Left panel: dark background + content ── */
.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 48px 80px 20%;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(100,80,220,0.30) 0%, transparent 55%),
    var(--charcoal);
  overflow: hidden;
  z-index: 1;
}

/* ── Right panel: image only ── */
.hero-right {
  position: relative;
  overflow: hidden;
}
/* Glare sweep — diagonal light reflection over the photo */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255,255,255,0.10) 40%,
    rgba(255,255,255,0.22) 47%,
    rgba(255,255,255,0.10) 54%,
    transparent 69%
  );
  animation: imageGlare 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
/* Slideshow slides — stack on top of each other, cross-fade */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Ken Burns fires fresh on each active slide — starts zoomed OUT */
.hero-slide.active img {
  animation: heroKenBurns 7s ease-in forwards;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1); /* default: zoomed out */
  transform-origin: center;
  display: block;
}

/* Cinematic zoom — more noticeable range */
@keyframes heroKenBurns {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.18); }
}

/* Glare sweep across the right image panel */
@keyframes imageGlare {
  0%, 30%  { transform: translateX(-160%) skewX(-18deg); opacity: 0; }
  38%       { opacity: 1; }
  58%       { transform: translateX(160%) skewX(-18deg); opacity: 1; }
  65%, 100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}

/* Keyframes must live at top level — cannot be inside @media */
@keyframes leftOrb1 {
  0%   { transform: translate(0,0);          opacity: 0.70; }
  50%  { transform: translate(100px,120px);  opacity: 1;    }
  100% { transform: translate(30px,-60px);   opacity: 0.75; }
}
@keyframes leftOrb2 {
  0%   { transform: translate(0,0);          opacity: 0.60; }
  50%  { transform: translate(-80px,-100px); opacity: 1;    }
  100% { transform: translate(55px,40px);    opacity: 0.65; }
}

/* Animated aurora orbs — desktop only */
@media (min-width: 921px) {
  .hero-left::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: transparent;
    border: 5px solid rgba(100,80,220,0.55);
    top: -100px; left: -80px;
    pointer-events: none;
    z-index: 0;
    animation: leftOrb1 10s ease-in-out infinite alternate;
  }
  .hero-left::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: transparent;
    border: 5px solid rgba(201,168,76,0.50);
    bottom: -60px; right: -20px;
    pointer-events: none;
    z-index: 0;
    animation: leftOrb2 13s ease-in-out infinite alternate;
  }
}

.hero-inner { max-width: 520px; width: 100%; position: relative; z-index: 1; }

.hero-inner .section-label { color: var(--gold); }
.hero-inner .section-label::before,
.hero-inner .section-label::after { background: var(--gold); }

.hero-title {
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-title .ht-white      { color: #ffffff; }
.hero-title .ht-gold-light { color: #f2e8c8; }
.hero-title .ht-gold       { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(253,246,238,.92);
  font-weight: 450;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
  margin-bottom: 40px;
  line-height: 1.85;
}

/* Thin gold accent line under headline */
.hero-title-line {
  width: 64px; height: 2px;
  background: var(--gold);
  margin: 20px 0 22px;
  border-radius: 2px;
}

/* Star rating row — sits between subtitle and CTA buttons */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 24px;
}
.hero-rating i { color: var(--gold); font-size: .85rem; }
.hero-rating span {
  color: rgba(253,246,238,0.70);
  font-size: .8rem;
  font-family: 'Lato', sans-serif;
  margin-left: 6px;
  letter-spacing: .04em;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-divider {
  width: 48px; height: 1px;
  background: rgba(201,168,76,.4);
  margin: 36px 0;
}

/* Horizontal trust-badge row */
.hero-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,.2);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(253,246,238,.92);
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
  padding-right: 22px;
  position: relative;
}
.hero-badge:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 8px;
  color: rgba(201,168,76,.5);
  font-size: 1.1rem;
  line-height: 1;
}
.hero-badge i { color: var(--gold); font-size: .85rem; }

/* Scroll-down indicator — left panel, desktop only */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 25%; /* centre of left panel */
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(253,246,238,.45);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  z-index: 2;
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}
.hero-scroll i { font-size: .9rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .45; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: .85; }
}
@media (max-width: 920px) { .hero-scroll { display: none; } }

/* =============================================
   DIFFERENCE
   ============================================= */
#difference {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    #1e2455 0%,
    #252b6e 45%,
    #1e2455 100%
  );
}
#difference .section-label { color: var(--gold); }
#difference .section-label::before,
#difference .section-label::after { background: var(--gold); }
#difference .section-title  { color: var(--cream); }
#difference .section-sub    { color: var(--cream); }
#difference .diff-feature         { box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.10); }
#difference .diff-feature:hover   { box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.16); }
#difference .diff-img             { box-shadow: 0 6px 28px rgba(0,0,0,.35); }

/* Centred header above the two-column grid */
.difference-header {
  text-align: left;
  margin-bottom: 52px;
}
.difference-header .section-sub { max-width: none; }

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start; /* both columns top-flush */
}

.difference-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.diff-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.diff-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.diff-img:hover img { transform: scale(1.05); }
.diff-img.tall { grid-row: span 2; aspect-ratio: unset; }


.diff-features { display: flex; flex-direction: column; gap: 14px; }

.diff-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 22px 20px 22px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.diff-feature:hover {
  background: rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  border-left-color: var(--gold);
}
.diff-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--gold);
  border: none;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--charcoal);
  font-size: 1.22rem;
}
.diff-text h4 { font-size: 1rem; margin-bottom: 5px; font-family: 'Lato', sans-serif; font-weight: 700; color: var(--cream); }
.diff-text p  { font-size: .9rem; color: rgba(253,246,238,0.72); line-height: 1.7; }

/* =============================================
   SERVICES MENU
   ============================================= */
#services {
  padding: 110px 0;
  background: var(--white);
}

.services-header { margin-bottom: 52px; }
.services-header .section-sub { max-width: none; }

/* Tabs — pill-button group */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  padding: 8px;
  background: var(--cream);
  border-radius: 16px;
  border: 1.5px solid var(--cream-mid);
}
.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--cream-mid);
  padding: 11px 18px;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 10px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.menu-tab i { font-size: .88rem; }
.menu-tab:hover {
  background: var(--cream-mid);
  color: var(--charcoal);
  border-color: rgba(201,168,76,.3);
}
.menu-tab.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201,168,76,.38);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}

.menu-panel-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-mid);
}
.menu-panel-img {
  width: 99px; height: 99px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--cream-mid);
}
.menu-panel-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-panel-header h3 { font-size: 1.5rem; margin-bottom: 4px; }
.menu-panel-header p  { font-size: 1.2rem; color: var(--text-mid); }

.service-table { width: 100%; border-collapse: collapse; }

.service-table tr {
  border-bottom: 1px solid #ede8e0;
  transition: background var(--transition), transform var(--transition);
}
.service-table tr:nth-child(even) { background: rgba(253,246,238,0.55); }
.service-table tr:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}
.service-table tr:hover td:first-child {
  box-shadow: inset 3px 0 0 var(--gold);
}

.service-table td { padding: 16px 18px; font-size: 1.12rem; vertical-align: middle; }
.service-table td:first-child { font-weight: 700; color: var(--text); }
.service-table td:nth-child(2) { color: var(--text-mid); font-size: .98rem; }
.service-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  font-family: ui-monospace;
  font-size: 1.2rem;
  background: rgba(201,168,76,0.08);
  padding-left: 24px;
  padding-right: 20px;
  min-width: 90px;
  border-left: 1px solid rgba(201,168,76,0.18);
}

/* Book CTA inside services */
.services-book-cta {
  margin-top: 52px;
  background: var(--charcoal);
  border-radius: 20px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.services-book-cta h3 { color: var(--cream); font-size: 1.7rem; margin-bottom: 8px; }
.services-book-cta p  { color: rgba(253,246,238,.6); font-size: .95rem; }
.services-book-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* =============================================
   ABOUT
   ============================================= */
#about {
  padding: 110px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(24,24,27,.3), transparent);
  border-radius: 0 0 20px 20px;
}

.about-content .section-sub { margin-bottom: 28px; }

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 32px 0;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; }
.stat h3 {
  font-family: 'Lato', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}
.stat p   { font-size: .8rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  padding: 60px 0;
  background: linear-gradient(135deg, #1e2455 0%, #252b6e 45%, #1e2455 100%);
}

#testimonials .section-label { color: var(--gold); }
#testimonials .section-label::before { background: var(--gold); }
#testimonials .section-title { color: var(--cream); }
#testimonials .section-sub   { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.22);
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.16);
}

.stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(253,246,238,.75);
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--charcoal);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .95rem; color: var(--cream); }
.author-info span   { font-size: .8rem; color: var(--text-soft); }

/* =============================================
   PROMOTIONS
   ============================================= */
#promotions {
  padding: 110px 0;
  background: var(--cream);
}

.promotions-header { text-align: center; margin-bottom: 56px; }
.promotions-header .section-label { justify-content: center; }
.promotions-header .section-label::before { display: none; }
.promotions-header .section-sub { margin: 0 auto; }

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--cream-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}
.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.promo-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: var(--gold);
}

.promo-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.promo-card p  { font-size: .9rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.75; }

.promo-code {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px dashed var(--gold);
  text-transform: uppercase;
}

/* =============================================
   GALLERY
   ============================================= */
#gallery {
  padding: 110px 0;
  background: var(--white);
}

.gallery-header { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,24,27,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--gold); font-size: 1.8rem; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* =============================================
   FAQ
   ============================================= */
#faq {
  padding: 110px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.faq-left .section-sub { margin-bottom: 36px; }

.faq-list { margin-top: 8px; }

.faq-item { border-bottom: 1px solid var(--cream-mid); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: .97rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i {
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--gold-dark); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-answer p { font-size: .93rem; color: var(--text-mid); line-height: 1.85; }

/* =============================================
   CONTACT
   ============================================= */
#contact {
  padding: 110px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-header { margin-bottom: 44px; }
.contact-header .section-sub { max-width: none; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

/* Grouped card — Phone, Email, Follow Us share one box */
.contact-item-group {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07), 0 8px 28px rgba(0,0,0,.10);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.contact-item-group:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.09), 0 14px 40px rgba(201,168,76,.18);
}
/* Strip individual card styles from items inside the group */
.contact-item-group .contact-item {
  border: none;
  border-left: none;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  border-radius: 0;
  box-shadow: none;
  padding: 14px 18px 14px 16px;
  background: transparent;
}
.contact-item-group .contact-item:last-child { border-bottom: none; }
.contact-item-group .contact-item:hover {
  transform: none;
  box-shadow: none;
  background: var(--cream);
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 18px 18px 18px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07), 0 8px 28px rgba(0,0,0,.10);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.09), 0 14px 40px rgba(201,168,76,.18);
  transform: translateY(-2px);
}
/* Let the text column grow to fill available space — fixes hours layout */
.contact-item > div:not(.contact-icon) {
  flex: 1;
  min-width: 0;
}
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--gold);
  border: none;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.22rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: .75rem;
  color: var(--text-soft);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 3px;
}
.contact-item p, .contact-item a { font-size: .97rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--gold-dark); }

.hours-list { font-size: .93rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--text-mid); flex-shrink: 0; padding-right: 6px; }
.hours-list li span:last-child  { font-weight: 600; color: var(--text); }

.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: .95rem;
  transition: var(--transition);
  border: 1px solid var(--cream-mid);
}
.social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid #b8a98a;
  height: 440px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--charcoal);
  color: rgba(253,246,238,.7);
  padding: 40px 0 20px;
}

.footer-top-bar {
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding-bottom: 32px;
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(253,246,238,.5);
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: .9rem;
  color: rgba(253,246,238,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(253,246,238,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(253,246,238,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   MISC COMPONENTS
   ============================================= */
.coming-soon-badge {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}


/* =============================================
   PAGE HERO (services.html)
   ============================================= */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 150px 0 90px;
  text-align: center;
}
.page-hero .section-label { color: var(--gold); justify-content: center; }
.page-hero .section-label::before { display: none; }
.page-hero h1 { color: var(--cream); margin-bottom: 16px; }
.page-hero p  { color: rgba(253,246,238,.7); font-size: 1.05rem; }

.services-page { padding: 80px 0; }

.service-category { margin-bottom: 64px; }

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream-mid);
}
.category-header i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.category-header h2 { font-size: 1.6rem; }

/* =============================================
   RESPONSIVE — TABLET (≤ 920px)
   ============================================= */
@media (max-width: 920px) {
  .nav-links, .header-book-btn { display: none; }
  .hamburger { display: flex; }
  .header-tagline { display: none; }
  /* Topbar on mobile: phone stays left, FB + IG pushed to the right */
  .header-top-right { width: 100%; }
  .header-top-right a:first-child { margin-right: auto; }

  /* Hero — single cinematic panel: image behind, content overlaid */
  #home {
    display: block;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  /* Cream fade at the very bottom — smooth transition into the next section */
  #home::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    z-index: 5;
    pointer-events: none;
  }
  /* Image becomes full-bleed background */
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  /* Content panel: transparent with top-down dark gradient */
  .hero-left {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 145px 24px 100px; /* extra bottom padding clears the cream fade */
    background: linear-gradient(
      to bottom,
      rgba(25,25,68,0.87) 0%,
      rgba(25,25,68,0.78) 35%,
      rgba(25,25,68,0.50) 60%,
      rgba(25,25,68,0.22) 80%,
      rgba(25,25,68,0.05) 100%
    );
  }
  .hero-inner { max-width: 100%; }

  /* Hide section label — logo already establishes the brand */
  .hero-inner .section-label { display: none; }

  /* Tighter title spacing — unbroken flow into subtitle */
  .hero-title      { font-size: 3.8rem; margin-bottom: 4px; }
  .hero-title-line { margin: 8px 0 10px; }

  /* Subtitle — more readable opacity + tighter bottom gap */
  .hero-sub {
    font-size: 1rem;
    color: rgba(253,246,238,0.88);
    margin-bottom: 28px;
  }

  /* Both CTA buttons equal width */
  .hero-cta { flex-wrap: wrap; gap: 8px; }
  .hero-cta .btn {
    flex: 1 1 auto;
    min-width: 0;
    font-size: .88rem;
    padding: 13px 18px;
    white-space: nowrap;
    text-align: center;
    letter-spacing: .04em;
  }

  /* Rating — separator sits above it, grouping rating + badges together */
  .hero-rating {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(201,168,76,.2);
    margin-bottom: 14px;
  }

  /* Trust badges — one per row, left-aligned, no extra separator */
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding-top: 0;
    border-top: none;
  }
  .hero-badge { padding-right: 0; font-size: .88rem; }
  .hero-badge::after { display: none; }

  .difference-grid    { grid-template-columns: 1fr; gap: 28px; }
  .difference-images  { order: 1; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
  .difference-content { order: 2; }
  .diff-img.tall { grid-row: span 2; aspect-ratio: unset; min-height: 280px; }
  .diff-img     { aspect-ratio: 1; }

  .about-grid        { grid-template-columns: 1fr; }
  .about-image       { order: 2; }
  .about-content     { order: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .promos-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .faq-grid          { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 28px; }
  .services-book-cta { flex-direction: column; text-align: center; }
}

/* --- Floating Book Now Button --- */
.float-book-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(201,168,76,.45);
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .2s ease, box-shadow .2s ease;
}
.float-book-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-book-btn:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(201,168,76,.55);
}
@media (max-width: 600px) {
  .float-book-btn { bottom: 18px; right: 16px; padding: 12px 18px; font-size: .88rem; }
}

/* --- Floating social icons (right side, above Book Now) --- */
.float-social {
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.float-social.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(201,168,76,.40);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.float-social-link:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,.55);
}
@media (max-width: 600px) {
  .float-social { right: 16px; bottom: 82px; }
  .float-social-link { width: 38px; height: 38px; font-size: 1rem; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  .promos-grid  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .about-stats  { flex-direction: column; gap: 16px; padding: 20px; }
  .header-actions .btn { display: none; }

  #difference, #services, #about, #testimonials,
  #promotions, #gallery, #faq, #contact { padding: 36px 0; }

  .menu-tab { padding: 10px 12px; font-size: .75rem; }
  .logo-title { font-size: 1.2rem; }
  .hero-title { font-size: 2.8rem; }    /* phone — smaller than tablet */
  .hero-sub   { font-size: .88rem; }    /* tighten slightly on very small phones */

  .service-table td:nth-child(2) { display: none; }
}

/* =============================================
   HERO — LOAD ANIMATIONS (on page open only)
   ============================================= */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Section label — fires first, top of the block */
#home .section-label {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 0.05s;
}

/* Book button — fires with the label */
#home .hero-cta a:nth-child(1) {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 0.05s;
}

/* Call button — one step after, same stagger as title lines */
#home .hero-cta a:nth-child(2) {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 0.3s;
}

/* Each badge staggers at same interval as title lines (0.25s apart) */
#home .hero-badges .hero-badge:nth-child(1) {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 0.3s;
}
#home .hero-badges .hero-badge:nth-child(2) {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 0.55s;
}
#home .hero-badges .hero-badge:nth-child(3) {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 0.8s;
}

/* Hero title lines — cascade down after label is visible */
#home .hero-title .ht-white {
  display: inline-block;
  animation: heroReveal 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

#home .hero-title .ht-gold-light {
  display: inline-block;
  animation: heroReveal 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.55s;
}

#home .hero-title .ht-gold {
  display: inline-block;
  animation: heroReveal 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.8s;
}

/* Subtitle — fills in last, between title and CTA */
#home .hero-sub {
  animation: heroFadeUp 0.35s ease both;
  animation-delay: 1.05s;
}

/* Hero photo panel */
#home .hero-right {
  animation: heroFadeIn 0.7s ease both;
  animation-delay: 0.05s;
}

/* =============================================
   PROMO POPUP
   =============================================
   These styles control the look of the popup.
   You generally do NOT need to edit this file
   between promos — all content changes live in
   index.html and the on/off switch is in main.js.

   If you want to resize the popup card:
     → change max-width on .promo-modal (default 480px)

   If you want to change the backdrop darkness:
     → change the rgba alpha on .promo-overlay
       (0.72 = 72% dark — higher = darker)

   If you want a different button colour:
     → the button uses the site's gold theme automatically.
       Edit .promo-book-btn only if you need a one-off colour.
   ============================================= */

/* Overlay backdrop — full-screen dark layer behind the card */
.promo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(25, 25, 68, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-overlay.active {
  display: flex;
  animation: promoFadeIn 0.4s ease both;
}

@keyframes promoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes promoSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Modal card */
.promo-modal {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  animation: promoSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

/* Close × button */
.promo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.promo-close:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* Promo image */
.promo-image-wrap {
  width: 100%;
  line-height: 0;
}
.promo-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Footer area */
.promo-footer {
  padding: 22px 28px 24px;
  text-align: center;
  background: var(--white);
}

.promo-book-btn {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.promo-book-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}

/* Countdown timer */
.promo-timer {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.promo-timer span {
  font-weight: 700;
  color: var(--rose);
}

/* Mobile */
@media (max-width: 520px) {
  .promo-modal { border-radius: 14px; }
  .promo-footer { padding: 18px 20px 20px; }
}

/* =============================================
   ACCESSIBILITY — Reduced motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
