/* ============================================================
   SPA 7 AUSTIN — Global Stylesheet
   Design: Luxury Med Spa | Minimalism + Depth Effects
   Palette: Charcoal, Gold, Rose, Cream
   Fonts: Cormorant Garamond + Jost
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ────────────────────────────── */
:root {
  --black:          #0D0D0D;
  --charcoal:       #1C1C1E;
  --charcoal-mid:   #2A2A2C;
  --gold:           #C9A96E;
  --gold-light:     #E8D5B0;
  --gold-dark:      #A07840;
  --rose:           #B76E79;
  --cream:          #F9F4EE;
  --cream-dark:     #EFE8DC;
  --white:          #FFFFFF;
  --text:           #1C1C1E;
  --text-light:     #4A4A4C;
  --text-muted:     #7A7A7C;
  --border:         rgba(201,169,110,.22);
  --border-light:   rgba(201,169,110,.10);

  --glass-bg:       rgba(255,255,255,.06);
  --glass-bg-light: rgba(255,255,255,.75);
  --glass-blur:     blur(18px);
  --glass-border:   rgba(201,169,110,.20);

  --shadow-gold:    0 4px 24px rgba(201,169,110,.18),0 1px 4px rgba(0,0,0,.10);
  --shadow-deep:    0 24px 64px rgba(0,0,0,.32),0 4px 16px rgba(0,0,0,.14);
  --shadow-card:    0 8px 32px rgba(0,0,0,.08),0 2px 8px rgba(0,0,0,.05);
  --shadow-hover:   0 20px 48px rgba(0,0,0,.15),0 4px 16px rgba(0,0,0,.10);

  --font-serif:     'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:      'Jost', system-ui, -apple-system, sans-serif;

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;

  --transition:     all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow:all .6s cubic-bezier(.4,0,.2,1);

  --nav-height:     80px;
  --topbar-height:  40px;

  /* Aliases for pages that use --color-* naming */
  --color-black:      var(--black);
  --color-charcoal:   var(--charcoal);
  --color-gold:       var(--gold);
  --color-gold-light: var(--gold-light);
  --color-gold-dark:  var(--gold-dark);
  --color-rose:       var(--rose);
  --color-cream:      var(--cream);
  --color-cream-dark: var(--cream-dark);
  --color-white:      var(--white);
  --color-text:       var(--text);
  --color-text-light: var(--text-light);
  --color-text-muted: var(--text-muted);
  --color-border:     var(--border);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem,6vw,6rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem,4vw,3.5rem); }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem,1.5vw,1.25rem); font-weight: 600; }
p  { font-size: 1rem; max-width: 70ch; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 60ch;
}

/* ── 4. LAYOUT UTILITIES ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 {
  color: var(--cream);
}

.section-black {
  background: var(--black);
  color: var(--cream);
}

.section-cream {
  background: var(--cream-dark);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.section-header {
  margin-bottom: 56px;
}

.section-header .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  margin: 0 auto;
}

/* ── 5. ANIMATION CLASSES ────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
  }
  [data-delay="100"] { transition-delay: .1s; }
  [data-delay="200"] { transition-delay: .2s; }
  [data-delay="300"] { transition-delay: .3s; }
  [data-delay="400"] { transition-delay: .4s; }
  [data-delay="500"] { transition-delay: .5s; }
  [data-delay="600"] { transition-delay: .6s; }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,169,110,.4); }
  50%      { box-shadow: 0 0 0 12px rgba(201,169,110,0); }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slideDown {
  from { opacity:0; transform:translateY(-10px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes scrollIndicator {
  0%,100% { transform: translateY(0); opacity:1; }
  50%     { transform: translateY(10px); opacity:.4; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.floating { animation: float 5s ease-in-out infinite; }
.pulse-gold { animation: pulse-gold 2s ease infinite; }

/* ── 6. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% auto;
  animation: shimmer 1.8s linear infinite;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.btn-ghost:hover::after { width: 100%; }

.btn svg { width: 18px; height: 18px; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .8rem; }

/* ── 7. CARDS ────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.card-glass:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.card-3d {
  transform-style: preserve-3d;
  transition: transform .4s ease, box-shadow .4s ease;
}
.card-3d:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* ── 8. TOP BAR ──────────────────────────────────────────── */
#top-bar {
  width: 100%;
  height: var(--topbar-height);
  background: var(--charcoal);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  z-index: 200;
  position: relative;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  transition: color .2s;
}
.top-bar-left a:hover { color: var(--gold); }

.top-bar-center {
  font-size: .75rem;
  color: rgba(232,213,176,.7);
  letter-spacing: .06em;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-social a {
  color: var(--gold-light);
  font-size: .85rem;
  transition: color .2s, transform .2s;
}
.top-bar-social a:hover { color: var(--gold); transform: translateY(-1px); }

#top-bar-dismiss {
  color: rgba(232,213,176,.5);
  font-size: .9rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
  background: none;
  border: none;
}
#top-bar-dismiss:hover { color: var(--gold); }

/* ── 9. NAVIGATION ───────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease;
  background: rgba(28,28,30,.0);
}

#navbar.scrolled {
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(232,213,176,.8);
  border-radius: 4px;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .4s ease, transform .4s ease;
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

#mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  padding: 10px 24px;
  letter-spacing: .04em;
  transition: color .2s;
}

#mobile-menu a:hover { color: var(--gold); }

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 20px;
}

.mobile-menu-footer a {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  color: var(--gold-light) !important;
}

/* ── 10. HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,.85) 0%,
    rgba(28,28,30,.70) 50%,
    rgba(13,13,13,.60) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow::before,.hero-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

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

.hero .lead {
  color: rgba(249,244,238,.75);
  margin-bottom: 40px;
  max-width: 52ch;
}

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

.hero-badge {
  position: absolute;
  bottom: 100px;
  right: 60px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 12px;
}

.hero-badge strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  display: block;
  color: var(--gold);
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(232,213,176,.5);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  animation: scrollIndicator 2s ease-in-out infinite;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 120px 0 64px;
  background: var(--charcoal);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.08) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(232,213,176,.6);
  margin-top: 12px;
}

.breadcrumb a { color: var(--gold); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb span { color: rgba(232,213,176,.4); }

/* ── 11. TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  padding: 32px 0;
  border-bottom: 1px solid rgba(201,169,110,.12);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(201,169,110,.12);
}

.trust-item:last-child { border-right: none; }

.trust-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232,213,176,.6);
}

/* ── 12. SERVICE CARDS ───────────────────────────────────── */
.services-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 48px;
}

.tab-btn {
  padding: 12px 32px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--charcoal);
  color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: none;
}

.service-link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ── 13. SERVICE DETAIL CARDS (Services Page) ────────────── */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  margin-bottom: 48px;
  background: var(--white);
}

.service-detail-card:nth-child(even) .service-detail-image {
  order: 2;
}
.service-detail-card:nth-child(even) .service-detail-body {
  order: 1;
}

.service-detail-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.service-detail-body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-body .eyebrow { margin-bottom: 10px; }

.service-detail-body h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-detail-body p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: none;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-light);
}

.service-benefit svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── 14. REVIEWS / TESTIMONIALS ──────────────────────────── */
.reviews-section {
  background: var(--cream-dark);
  padding: 96px 0;
}

.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.reviews-meta .stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.reviews-meta span {
  font-size: .9rem;
  color: var(--text-muted);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.review-card {
  min-width: 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
}

.review-meta h4 {
  font-size: .95rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.review-meta .review-date {
  font-size: .78rem;
  color: var(--text-muted);
}

.review-stars {
  color: #F59E0B;
  font-size: .9rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  max-width: none;
}

.review-text::before { content: '\201C'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }

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

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gold);
}

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

.carousel-btn svg { width: 18px; height: 18px; }

.reviews-link {
  text-align: center;
  margin-top: 28px;
}

/* ── 15. WHY CHOOSE US ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-item {
  padding: 48px 36px;
  position: relative;
  background: rgba(255,255,255,.03);
  transition: background .3s ease;
}

.feature-item:hover { background: rgba(201,169,110,.06); }

.feature-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201,169,110,.12);
}

.feature-item:last-child::after { display: none; }

.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.feature-item p {
  font-size: .9rem;
  color: rgba(232,213,176,.6);
  max-width: none;
  line-height: 1.7;
}

/* ── 16. INQUIRY FORM ────────────────────────────────────── */
.inquiry-section {
  background: var(--cream-dark);
  padding: 96px 0;
}

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

.inquiry-info {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--cream);
}

.inquiry-info h3 {
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.inquiry-info > p {
  color: rgba(249,244,238,.65);
  margin-bottom: 32px;
  max-width: none;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,169,110,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text { font-size: .88rem; line-height: 1.6; color: rgba(249,244,238,.75); }
.contact-detail-text strong { display: block; font-weight: 500; color: var(--gold-light); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }

.inquiry-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.inquiry-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .9rem;
  transition: var(--transition);
}

.inquiry-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Form */
.inquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
}

.inquiry-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.inquiry-form-wrap > p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 28px;
  max-width: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 6px;
  font-size: .92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-consent {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  font-size: .9rem;
  box-shadow: var(--shadow-deep);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── 17. SPECIALS OFFER CARDS ────────────────────────────── */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.offer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.offer-card-top {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  padding: 28px 28px 20px;
  position: relative;
}

.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.offer-card-top h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.offer-card-top p {
  color: rgba(232,213,176,.65);
  font-size: .88rem;
  max-width: none;
}

.offer-card-body {
  padding: 24px 28px 28px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.offer-price .price-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.offer-price .expiry {
  font-size: .78rem;
  color: var(--rose);
  margin-top: 4px;
  display: block;
}

/* ── 18. BLOG CARDS ──────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-card-body {
  padding: 24px 24px 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-meta i { color: var(--gold); font-size: .7rem; }

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--charcoal);
  transition: color .2s;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card:hover h3 { color: var(--gold-dark); }

.blog-card-body p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: none;
}

.blog-read-more {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.blog-card:hover .blog-read-more { gap: 10px; }

/* ── 19. FAQ ACCORDION ───────────────────────────────────── */
.faq-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.faq-pill {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.faq-pill.active,.faq-pill:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold);
}

.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}

.faq-question:hover,.faq-item.open .faq-question { color: var(--gold-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-icon svg { width: 14px; height: 14px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.75;
  max-width: none;
}

/* ── 20. GALLERY ─────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-pill {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.gallery-pill.active,.gallery-pill:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
  transition: var(--transition);
}

.gallery-item:nth-child(3n+1) { aspect-ratio: 4/3; }
.gallery-item:nth-child(5n+2) { aspect-ratio: 3/4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--cream);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.gallery-overlay-label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.lightbox-prev,.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,.lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── 21. INSTAGRAM TEASER ────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.instagram-item:hover img { transform: scale(1.08); }

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--black);
}

.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay i { font-size: 1.4rem; }
.instagram-overlay span { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }

/* ── 22. CHERRY BANNER ───────────────────────────────────── */
.cherry-banner {
  background: linear-gradient(90deg, var(--charcoal), var(--charcoal-mid));
  border-top: 1px solid rgba(201,169,110,.15);
  border-bottom: 1px solid rgba(201,169,110,.15);
  padding: 32px 0;
}

.cherry-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cherry-banner-text h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.cherry-banner-text p {
  color: rgba(232,213,176,.6);
  font-size: .88rem;
  max-width: none;
}

/* ── 23. CTA STRIP ───────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 50%, rgba(201,169,110,.08) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,169,110,.06) 0%, transparent 60%);
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

.cta-strip h2 { color: var(--cream); margin-bottom: 12px; position: relative; }
.cta-strip p { color: rgba(232,213,176,.65); margin: 0 auto 32px; position: relative; max-width: 50ch; }
.cta-strip .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── 24. MAP EMBED ───────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.map-wrap iframe { display: block; }

/* ── 25. NEWSLETTER ──────────────────────────────────────── */
.newsletter-strip {
  background: var(--charcoal);
  padding: 64px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: 6px; }
.newsletter-text p { color: rgba(232,213,176,.6); font-size: .9rem; max-width: none; }

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 14px 20px;
  border: 1.5px solid rgba(201,169,110,.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255,255,255,.05);
  color: var(--cream);
  font-size: .9rem;
  width: 280px;
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input::placeholder { color: rgba(232,213,176,.35); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form .btn {
  border-radius: 0 4px 4px 0;
  border-left: none;
}

/* ── 26. COUNTDOWN TIMER ─────────────────────────────────── */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 24px 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 64px;
  text-align: center;
}

.countdown-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(232,213,176,.5);
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  align-self: flex-start;
  padding-top: 2px;
}

/* ── 27. GIFT CARDS ──────────────────────────────────────── */
.gift-card-item {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(201,169,110,.15);
  transition: var(--transition);
}

.gift-card-item:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.gift-card-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 8px;
}

.gift-card-item h4 { color: var(--cream); margin-bottom: 8px; }
.gift-card-item p { color: rgba(232,213,176,.55); font-size: .88rem; max-width: none; margin-bottom: 20px; }

/* ── 28. BACK TO TOP ─────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border: 1.5px solid rgba(201,169,110,.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── 29. FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 0;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,169,110,.1);
}

.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(232,213,176,.65);
  margin-bottom: 16px;
  max-width: 30ch;
}

.footer-about {
  font-size: .88rem;
  color: rgba(232,213,176,.5);
  line-height: 1.7;
  max-width: none;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(232,213,176,.55);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: .8rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-text {
  font-size: .88rem;
  color: rgba(232,213,176,.55);
  line-height: 1.6;
}

.footer-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: .82rem;
  color: rgba(232,213,176,.5);
  margin-top: 8px;
}

.footer-hours-grid .day { color: rgba(232,213,176,.7); }
.footer-hours-grid .time { text-align: right; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(232,213,176,.35);
  max-width: none;
}

.footer-bottom a { color: var(--gold); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); }

.footer-credit {
  font-size: .78rem;
  color: rgba(232,213,176,.35);
}

.footer-credit a { color: rgba(201,169,110,.6); }
.footer-credit a:hover { color: var(--gold); }

/* ── 30. STICKY MOBILE BUTTONS ───────────────────────────── */
.sticky-mobile-buttons {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}

.sticky-mobile-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 50%;
  padding: 14px 12px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
}

.sticky-mobile-buttons a:hover { opacity: .9; }

.sticky-call {
  background: var(--charcoal);
  color: var(--gold-light);
}

.sticky-whatsapp {
  background: #25D366;
  color: var(--white);
}

.sticky-mobile-buttons svg {
  width: 18px;
  height: 18px;
}

/* ── 31. ABOUT PAGE ──────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.about-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
}

.about-image-accent img { width: 100%; height: 100%; object-fit: cover; }

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

.about-pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.about-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.about-pillar-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-pillar h4 { font-size: 1rem; margin-bottom: 8px; }
.about-pillar p { font-size: .88rem; color: var(--text-light); max-width: none; }

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.team-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(13,13,13,.6), transparent);
}

.team-card-body { padding: 20px 20px 24px; }
.team-card-body h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-body .role { font-size: .82rem; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.team-card-body p { font-size: .88rem; color: var(--text-light); max-width: none; }

/* ── 32. CONTACT PAGE ────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: .9rem; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table .today { color: var(--gold); font-weight: 500; }

/* ── 33. SPECIALS PAGE HERO ──────────────────────────────── */
.specials-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.specials-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,.08) 0%, transparent 70%);
}

.specials-hero h1 { color: var(--white); position: relative; }
.specials-hero .lead { color: rgba(232,213,176,.65); margin: 16px auto 36px; position: relative; }

/* ── 34. MEDIA QUERIES ───────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) .service-detail-image { order: 0; }
  .service-detail-card:nth-child(even) .service-detail-body { order: 0; }
  .service-detail-image { min-height: 300px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-image-accent { right: 0; bottom: -20px; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .trust-item { border-right: none; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --topbar-height: 36px;
  }

  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-badge { display: none; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .top-bar-center { display: none; }
  .top-bar-left .top-bar-email { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .team-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .cherry-banner-inner { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; border-right: 1.5px solid rgba(201,169,110,.2); border-bottom: none; border-radius: 4px; }
  .newsletter-form .btn { border-radius: 4px; border-left: 1.5px solid transparent; }

  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }

  .services-tabs { width: 100%; }
  .tab-btn { flex: 1; text-align: center; padding: 12px 16px; font-size: .76rem; }

  .review-card { min-width: 280px; }

  .about-image-accent { display: none; }

  /* Sticky mobile buttons: show on mobile */
  .sticky-mobile-buttons {
    display: flex;
  }

  /* Extra bottom padding so content doesn't hide behind sticky bar */
  body { padding-bottom: 54px; }

  .countdown { gap: 10px; }
  .countdown-num { font-size: 2rem; min-width: 48px; }

  .inquiry-form-wrap { padding: 28px 20px; }
  .inquiry-info { padding: 32px 24px; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}

/* ── 35. UTILITIES ───────────────────────────────────────── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.color-gold { color: var(--gold); }
.color-muted { color: var(--text-muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
