/* ==============================================
   THE ALMA EFFECT HAIR STUDIO
   Main Stylesheet — Luxury Salon Website
   ============================================== */

/* -----------------------------------------------
   1. CSS Custom Properties (Design Tokens)
----------------------------------------------- */
:root {
  /* Colors */
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --charcoal:    #2d2d2d;
  --gold:        #c9a96e;
  --gold-light:  #e8c98a;
  --gold-dark:   #a07840;
  --cream:       #faf6f0;
  --white:       #ffffff;
  --off-white:   #f5f0e8;
  --pink-blush:  #f0ddd4;
  --text-muted:  #888888;
  --text-light:  #bbbbbb;
  --border:      rgba(201, 169, 110, 0.2);
  --border-light:rgba(255,255,255,0.08);

  /* Gradients */
  --grad-gold:        linear-gradient(135deg, #c9a96e 0%, #e8c98a 50%, #c9a96e 100%);
  --grad-dark:        linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  --grad-overlay:     linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
  --grad-hero:        linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(20,10,5,0.7) 100%);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  1200px;
  --gutter:     clamp(20px, 4vw, 40px);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   0.2s;
  --dur-mid:    0.4s;
  --dur-slow:   0.7s;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.15);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.25);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold:0 8px 32px rgba(201,169,110,0.25);

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  32px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--dark);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(201,169,110,0.08), transparent 28%),
    radial-gradient(circle at 85% 78%, rgba(201,169,110,0.06), transparent 32%),
    linear-gradient(180deg, #0f0f0f 0%, #121212 45%, #0d0d0d 100%);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol { list-style: none; }

/* -----------------------------------------------
   3. Typography
----------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}

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

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

/* -----------------------------------------------
   4. Layout Utilities
----------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* -----------------------------------------------
   5. Buttons
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}

.btn:hover::before { opacity: 1; }

/* Primary – Gold fill */
.btn-primary {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.45);
}

.btn-primary:active { transform: translateY(0); }

/* Outline – light border */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}

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

/* Outline dark */
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Nav CTA */
.btn-nav-cta {
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.75rem;
  padding: 12px 24px;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile CTA */
.btn-mobile-cta {
  background: var(--grad-gold);
  color: var(--black);
  margin: 16px 24px 8px;
  text-align: center;
}

/* Instagram button */
.btn-instagram {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold-light);
  font-size: 0.85rem;
  padding: 18px 40px;
}

.btn-instagram:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Full width */
.btn-full { width: 100%; }

/* -----------------------------------------------
   7. Navbar
----------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), top var(--dur-mid) var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color var(--dur-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-mid) var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--dur-mid) var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-link {
  display: block;
  padding: 14px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}

.mobile-link:hover {
  color: var(--gold);
  padding-left: 32px;
}

/* -----------------------------------------------
   8. Hero Section
----------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroParallax 20s ease-in-out infinite alternate;
}

@keyframes heroParallax {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.05) translateY(-3%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.4) 70%,
    rgba(10,10,10,0.95) 100%
  );
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
  display: block;
}

.hero-studio-name {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* -----------------------------------------------
   10. About Section
----------------------------------------------- */
.about {
  padding: var(--section-py) 0;
  background: var(--dark);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* Visual Side */
.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
}

.about-frame-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.about-logo-large {
  width: 60%;
  max-width: 280px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.85;
  filter: brightness(0.9);
}

.about-frame-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,169,110,0.12) 0%, transparent 60%);
}

.about-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.about-tag-icon { font-size: 0.6rem; }

/* Text Side */
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-body {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 40px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* -----------------------------------------------
   11. Services Section
----------------------------------------------- */
.services {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

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

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,169,110,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.5);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,169,110,0.2);
}

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

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color var(--dur-mid), background var(--dur-mid);
}

.service-card:hover .service-icon-wrap {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.service-icon {
  width: 28px;
  height: 28px;
}

.service-name {
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 600;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--dur-fast), color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* -----------------------------------------------
   12. Why Choose Us
----------------------------------------------- */
.why-us {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: 'THE ALMA EFFECT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  line-height: 1;
}

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

.why-card {
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: background var(--dur-mid), border-color var(--dur-mid);
  background: rgba(255,255,255,0.01);
}

.why-card:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.25);
}

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -----------------------------------------------
   13. Gallery Section
----------------------------------------------- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--dark-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  aspect-ratio: 1;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item--large img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 400px;
}

.gallery-item--tall img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 200px;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

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

.gallery-zoom {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 10px 20px;
  border-radius: 2px;
  transform: translateY(8px);
  transition: transform var(--dur-mid) var(--ease);
}

.gallery-item:hover .gallery-zoom { transform: translateY(0); }

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxIn 0.3s var(--ease-out);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--dur-fast), transform var(--dur-fast);
  backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

/* -----------------------------------------------
   14. Reviews Section
----------------------------------------------- */
.reviews {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 12px;
}

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

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--dur-mid) var(--ease), border-color var(--dur-mid);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.4);
}

.review-card--featured {
  border-color: rgba(201,169,110,0.35);
  background: linear-gradient(145deg, var(--dark-3) 0%, rgba(201,169,110,0.05) 100%);
}

.review-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  font-style: italic;
  margin-bottom: 8px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: normal;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
  font-style: normal;
}

.review-source {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.reviews-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* -----------------------------------------------
   15. Instagram Section
----------------------------------------------- */
.instagram-section {
  padding: var(--section-py) 0;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.instagram-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.instagram-overlay { position: absolute; inset: 0; }

.instagram-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.instagram-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  color: var(--gold);
  opacity: 0.8;
}

.instagram-icon svg {
  width: 100%;
  height: 100%;
}

.instagram-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* -----------------------------------------------
   16. Contact Section
----------------------------------------------- */
.contact {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Left contact showcase */
.contact-showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-showcase-card {
  background:
    linear-gradient(145deg, rgba(201,169,110,0.08) 0%, rgba(255,255,255,0.02) 38%, rgba(0,0,0,0.12) 100%),
    var(--dark-2);
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 42px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.contact-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 12%, rgba(232,201,138,0.16), transparent 42%);
  pointer-events: none;
}

.contact-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.contact-showcase-card h3 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.contact-showcase-card h3 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.contact-showcase-card p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 24px;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-quick-actions .btn {
  min-width: 210px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badges span {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--gold-light);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Info Card */
.info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 20px;
}

.info-title {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-icon svg { width: 100%; height: 100%; }

.info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.93rem;
  color: var(--cream);
  line-height: 1.5;
}

.info-link {
  transition: color var(--dur-fast);
}

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

/* Hours */
.hours-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hours-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.hours-day { color: var(--text-light); }
.hours-time { color: var(--cream); font-weight: 500; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--border);
  min-height: 140px;
  display: flex;
}

.map-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  transition: background var(--dur-mid);
}

.map-link:hover { background: rgba(201,169,110,0.06); }

.map-pin {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.map-pin svg { width: 100%; height: 100%; }

.map-link > span:not(.map-cta) {
  font-size: 0.88rem;
  color: var(--cream);
}

.map-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.contact .map-placeholder {
  min-height: 170px;
}

.map-embed {
  width: 100%;
  min-height: 280px;
  border: 0;
}

/* -----------------------------------------------
   17. Footer
----------------------------------------------- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-top {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-wrap {
  display: inline-block;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-tagline strong { color: var(--gold); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 100px;
  transition: all var(--dur-mid);
  width: fit-content;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-social:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact a {
  color: var(--text-muted);
  transition: color var(--dur-fast);
  line-height: 1.5;
}

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

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-made {
  color: var(--gold);
  opacity: 0.7;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--dur-mid) var(--ease);
  box-shadow: var(--shadow-gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.55);
}

/* -----------------------------------------------
   18. Reveal Animations
----------------------------------------------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.0s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.2s; }

.reviews-grid .review-card:nth-child(2) { transition-delay: 0.12s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.24s; }

.why-grid .why-card:nth-child(2) { transition-delay: 0.08s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.16s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.0s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.08s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.16s; }

.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.06s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.12s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.18s; }

/* -----------------------------------------------
   19. Glam Sparkle Accent
----------------------------------------------- */
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* -----------------------------------------------
   20. Responsive — Tablet (max 1024px)
----------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 480px;
    margin: 0 auto;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .gallery-item--large img { min-height: 280px; }
  .gallery-item--tall img { min-height: 180px; }

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

/* -----------------------------------------------
   21. Responsive — Mobile (max 768px)
----------------------------------------------- */
@media (max-width: 768px) {

  /* Nav */
  .nav-links,
  .btn-nav-cta { display: none; }

  .hamburger { display: flex; }

  .mobile-menu { display: flex; }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--large {
    grid-column: span 1;
  }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* About pillars */
  .about-pillars { grid-template-columns: 1fr; }

  .contact-showcase-card {
    padding: 28px 24px;
  }

  .contact-quick-actions {
    flex-direction: column;
  }

  .contact-quick-actions .btn {
    width: 100%;
    min-width: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Mobile menu visible when open */
  .mobile-menu { display: flex; }
}

/* -----------------------------------------------
   22. Responsive — Small Mobile (max 480px)
----------------------------------------------- */
@media (max-width: 480px) {

  .logo-text {
    font-size: 0.95rem;
  }

  .info-card { padding: 28px 20px; }
  .service-card { padding: 28px 24px; }
  .review-card { padding: 28px 24px; }
  .why-card { padding: 28px 24px; }
}

/* -----------------------------------------------
   23. Print / Reduced Motion
----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
