/* ============================================================
   HANNA NAILS — LUXURY IVORY PALETTE — SHARED STYLESHEET
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Gold palette */
  --gold:        #B8912A;
  --gold-light:  #D4AB4E;
  --gold-pale:   #E8C97A;
  --gold-dim:    #8a6f2e;

  /* Light / ivory palette */
  --ivory:       #FAF7F2;
  --ivory-deep:  #F2EDE4;
  --champagne:   #F5EDD8;
  --beige:       #EDE3D2;
  --pearl:       #FDFBF8;
  --warm-white:  #FFFDF9;

  /* Dark text */
  --charcoal:    #2C2A26;
  --text-dark:   #3D3A34;
  --text-mid:    #6B6456;
  --text-light:  #9C8F7E;

  /* Borders & glass */
  --border:      rgba(184,145,42,0.2);
  --border-mid:  rgba(184,145,42,0.35);
  --shadow-gold: 0 0 30px rgba(184,145,42,0.12);

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle marble texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  mix-blend-mode: multiply;
}

/* Warm ambient glow */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(184,145,42,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 75%, rgba(212,171,78,0.04) 0%, transparent 55%);
  animation: ambientGlow 20s ease-in-out infinite alternate;
}
@keyframes ambientGlow {
  0%   { opacity: 0.7; }
  50%  { opacity: 1;   }
  100% { opacity: 0.85; }
}

::selection { background: var(--gold-pale); color: var(--charcoal); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

img { display: block; width: 100%; }
a  { text-decoration: none; color: inherit; }

/* All content above fixed layers */
nav, main, section, footer, .page-transition, #back-top {
  position: relative; z-index: 1;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4%;
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(184,145,42,0.1), 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(184,145,42,0.2);
  transition: text-shadow 0.3s;
}
.nav-logo:hover { text-shadow: 0 0 20px rgba(184,145,42,0.5); }
.nav-logo span { font-style: italic; font-weight: 400; }

.nav-links {
  display: flex; gap: 2.4rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.35s ease, right 0.35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }

.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(184,145,42,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:hover { background: var(--gold); color: var(--warm-white); }
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.97); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-mid);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed; inset: 0; z-index: 998;
  background: var(--ivory);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* ===== LAYOUT UTILITIES ===== */
.section    { padding: 100px 6%; }
.section-sm { padding: 70px 6%; }
.container  { max-width: 1300px; margin: 0 auto; }
.text-center { text-align: center; }

.section-label {
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { max-width: 600px; }
.section-header.center { margin: 0 auto; text-align: center; }

.gold-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.2s;
}
.gold-divider.center { margin: 1.5rem auto; transform-origin: center; }
.gold-divider.revealed,
.reveal.revealed .gold-divider,
.reveal.revealed > .gold-divider { transform: scaleX(1); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  border-radius: 2px;
  padding: 1rem 2.4rem;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: var(--warm-white);
  box-shadow: 0 4px 20px rgba(184,145,42,0.25);
}
.btn-gold:hover {
  background-position: 100% 100%;
  box-shadow: 0 8px 30px rgba(184,145,42,0.4), 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,145,42,0.3);
}
.btn-hero {
  padding: 1.15rem 3.2rem;
  font-size: 0.82rem;
  animation: heroPulse 3s ease-in-out infinite;
  position: relative; overflow: visible;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,145,42,0.3); }
  50%       { box-shadow: 0 6px 40px rgba(184,145,42,0.55), 0 0 60px rgba(184,145,42,0.15); }
}
.btn-hero::before, .btn-hero::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 4px; border: 1px solid rgba(184,145,42,0.35);
  animation: ringExpand 2.5s ease-out infinite;
  pointer-events: none;
}
.btn-hero::after { animation-delay: 1.25s; }
@keyframes ringExpand {
  0%   { inset: -3px; opacity: 0.8; }
  100% { inset: -14px; opacity: 0; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }

/* ===== DECORATIVE ===== */
.corner-deco {
  position: absolute; width: 60px; height: 60px;
  border-top: 1px solid rgba(184,145,42,0.4);
  border-left: 1px solid rgba(184,145,42,0.4);
  top: 2rem; left: 2rem; z-index: 4; pointer-events: none;
}
.corner-deco.br {
  border-top: none; border-left: none;
  border-bottom: 1px solid rgba(184,145,42,0.4);
  border-right: 1px solid rgba(184,145,42,0.4);
  top: auto; left: auto; bottom: 2rem; right: 2rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 6% 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,145,42,0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero p {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.9;
}

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 650px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,8,5,0.15) 0%,
      rgba(10,8,5,0.28) 45%,
      rgba(10,8,5,0.62) 80%,
      rgba(10,8,5,0.78) 100%),
    url('./hero-bg.jpg') center 30%/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 15s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
/* Warm vignette */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 85% 85% at 50% 50%, transparent 45%, rgba(8,6,3,0.32) 100%),
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(184,145,42,0.06) 0%, transparent 60%);
  animation: heroAtmosphere 12s ease-in-out infinite alternate;
}
@keyframes heroAtmosphere {
  0%   { opacity: 0.7; } 50% { opacity: 1; } 100% { opacity: 0.85; }
}

.hero-content {
  position: relative; z-index: 4;
  max-width: 760px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid rgba(184,145,42,0.45);
  padding: 0.4rem 1.4rem; margin-bottom: 1.6rem;
  background: rgba(8,6,3,0.38); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeUp 1s ease 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 700; line-height: 1.08;
  color: #FEFCF8;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.4s both;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    0 3px 14px rgba(0,0,0,0.38),
    0 8px 32px rgba(0,0,0,0.18);
}
.hero-title .gold-text { color: var(--gold-pale); font-style: italic; }
.hero-subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(253,248,240,0.82);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.32);
  animation: fadeUp 1s ease 0.6s both;
}
.hero-cta { animation: fadeUp 1s ease 0.8s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.45; animation: fadeUp 1s ease 1.2s both; z-index: 4;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(253,248,240,0.52); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================================
   HOME — ABOUT
   ============================================================ */
.about-section {
  background:
    radial-gradient(ellipse 55% 70% at 95% 50%, rgba(184,145,42,0.06) 0%, transparent 55%),
    linear-gradient(165deg, var(--pearl) 0%, var(--ivory-deep) 50%, var(--champagne) 100%);
  overflow: hidden; position: relative;
}
/* subtle marble vein */
.about-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(108deg,
      transparent 0px, transparent 200px,
      rgba(184,145,42,0.025) 200px, rgba(184,145,42,0.025) 201.5px,
      transparent 201.5px, transparent 380px
    );
}
.about-section > * { position: relative; z-index: 1; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px;
  border: 1px solid var(--border-mid); border-radius: 2px; z-index: 0;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.about-image-wrap:hover::before {
  border-color: rgba(184,145,42,0.55);
  box-shadow: 0 0 25px rgba(184,145,42,0.1);
}
.about-image-wrap img {
  border-radius: 2px; position: relative; z-index: 1;
  object-fit: cover; height: 500px;
  filter: brightness(0.95) saturate(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.02); filter: brightness(1) saturate(1.1); }
.about-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--warm-white); padding: 1.2rem 1.5rem; z-index: 2;
  font-family: var(--font-display); font-size: 0.85rem; font-style: italic;
  text-align: center; line-height: 1.4; border-radius: 2px;
}
.about-tag strong { display: block; font-size: 1.5rem; font-style: normal; font-weight: 600; }
.about-text p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.9; }
.about-features { display: flex; gap: 2.5rem; margin: 2rem 0 2.5rem; }
.feat { text-align: center; }
.feat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--gold); display: block; }
.feat-label { font-size: 0.69rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }

/* ============================================================
   HOME — FEATURED SERVICES
   ============================================================ */
.services-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(184,145,42,0.07) 0%, rgba(184,145,42,0.02) 50%, transparent 70%),
    linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 50%, var(--ivory-deep) 100%);
  position: relative; overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(130deg,
      transparent 0px, transparent 90px,
      rgba(184,145,42,0.015) 90px, rgba(184,145,42,0.015) 91px,
      transparent 91px, transparent 180px
    );
}
.services-section > * { position: relative; z-index: 1; }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 4rem auto 0;
}
.service-card {
  background: linear-gradient(160deg, var(--pearl) 0%, rgba(245,237,216,0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.45s ease, border-color 0.45s ease;
  cursor: default; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(184,145,42,0.06), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(184,145,42,0.05), transparent);
  transition: left 0.6s ease; pointer-events: none;
}
.service-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 20px 45px rgba(184,145,42,0.12), 0 4px 15px rgba(0,0,0,0.05); border-color: rgba(184,145,42,0.45); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { left: 150%; }

.service-icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(184,145,42,0.08), rgba(184,145,42,0.03));
  border: 1px solid var(--border-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.service-card h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.8rem; }
.service-card p  { font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; }
.service-card .service-link {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.69rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.service-card:hover .service-link { border-bottom-color: var(--gold); }

/* ============================================================
   HOME — GALLERY PREVIEW
   ============================================================ */
.gallery-preview-section {
  background:
    radial-gradient(ellipse 80% 55% at 50% 50%, rgba(184,145,42,0.05) 0%, transparent 65%),
    linear-gradient(180deg, var(--ivory-deep) 0%, var(--beige) 50%, var(--ivory-deep) 100%);
  position: relative; overflow: hidden;
}
.gallery-preview-section > * { position: relative; z-index: 1; }

.gallery-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; max-width: 1300px; margin: 3.5rem auto 3rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 3px;
  cursor: pointer; aspect-ratio: 3/4;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.gallery-item:hover { box-shadow: 0 16px 40px rgba(184,145,42,0.15); transform: translateY(-4px); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.97) saturate(1.05);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.03) saturate(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(184,145,42,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.gallery-overlay {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 2; opacity: 0; transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; background: rgba(250,247,242,0.85); display: inline-block; padding: 0.25rem 0.75rem; }

/* ============================================================
   HOME — CTA BOOKING STRIP
   ============================================================ */
.cta-section {
  padding: 100px 6%;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184,145,42,0.1) 0%, transparent 65%),
    linear-gradient(135deg, var(--champagne) 0%, var(--beige) 50%, var(--champagne) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    repeating-linear-gradient(155deg,
      transparent 0px, transparent 150px,
      rgba(184,145,42,0.02) 150px, rgba(184,145,42,0.02) 151px,
      transparent 151px, transparent 300px
    );
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(2rem, 5vw, 3.5rem); }
.cta-section p { color: var(--text-mid); font-size: 0.95rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.9; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 6% 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(184,145,42,0.09) 0%, transparent 55%),
    linear-gradient(180deg, var(--beige) 0%, var(--ivory-deep) 100%);
  border-top: 1px solid var(--border-mid);
  position: relative; overflow: hidden;
}
/* animated top shimmer */
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,145,42,0.15), var(--gold-pale), rgba(184,145,42,0.15), transparent);
  animation: footerBeam 5s ease-in-out infinite; z-index: 2;
}
@keyframes footerBeam { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.footer > * { position: relative; z-index: 1; }

.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem; max-width: 1300px; margin: 0 auto; padding-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1.2rem;
}
.footer-logo span { font-style: italic; }
.footer-about { font-size: 0.84rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px; background: rgba(184,145,42,0.08);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.social-link:hover { transform: translateY(-4px) scale(1.1); background: var(--gold); color: var(--warm-white); border-color: var(--gold); box-shadow: 0 6px 16px rgba(184,145,42,0.3); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 1.5rem; letter-spacing: 0.04em;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.84rem; color: var(--text-mid); margin-bottom: 0.9rem; line-height: 1.6;
}
.contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.map-container {
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; height: 180px;
  transition: box-shadow 0.4s, border-color 0.4s;
}
.map-container:hover { box-shadow: 0 8px 25px rgba(184,145,42,0.12); border-color: var(--border-mid); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  font-size: 0.78rem; color: var(--text-light);
  text-align: center; letter-spacing: 0.05em;
}
.footer-bottom span { color: var(--gold); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page { background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 50%, var(--ivory) 100%); }

.filter-bar { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.55rem 1.6rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: var(--text-mid);
  border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.filter-btn:hover { transform: translateY(-2px); color: var(--gold); border-color: var(--gold); }
.filter-btn.active {
  background: var(--gold); color: var(--warm-white); border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(184,145,42,0.3);
}

.masonry-grid {
  columns: 3; column-gap: 1.4rem;
  max-width: 1300px; margin: 0 auto;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 1.4rem;
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 4px;
  cursor: pointer;
  transition: box-shadow 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}
.masonry-item:hover { box-shadow: 0 16px 40px rgba(184,145,42,0.14); transform: translateY(-4px); border-color: var(--border-mid); }
.masonry-item img { width: 100%; display: block; filter: brightness(0.97); transition: transform 0.6s ease, filter 0.6s ease; }
.masonry-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
.item-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.2rem;
  background: linear-gradient(to top, rgba(184,145,42,0.12) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
}
.masonry-item:hover .item-overlay { opacity: 1; }
.item-overlay span {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--charcoal); background: rgba(250,247,242,0.9);
  padding: 0.25rem 0.8rem; border-radius: 1px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%); }

.service-full {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto 6rem;
}
.service-full:nth-child(even) { direction: rtl; }
.service-full:nth-child(even) > * { direction: ltr; }
.service-full-img {
  overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border);
  transition: box-shadow 0.4s ease;
}
.service-full-img:hover { box-shadow: 0 12px 35px rgba(184,145,42,0.12); }
.service-full-img img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.service-full-img:hover img { transform: scale(1.04); filter: brightness(1.02); }
.service-full-text {}
.service-full-text .section-label { margin-bottom: 0.5rem; }
.service-list {
  list-style: none; margin: 1.8rem 0 2.5rem;
  border-top: 1px solid var(--border);
}
.service-list li {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-mid);
  transition: padding-left 0.25s, color 0.25s;
}
.service-list li:hover { padding-left: 0.6rem; color: var(--charcoal); }
.service-list li .price { color: var(--gold); font-weight: 500; }
.service-list li:hover .price { text-shadow: 0 0 10px rgba(184,145,42,0.4); }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page { background: linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 60%, var(--ivory-deep) 100%); }

.booking-hero {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  background:
    radial-gradient(ellipse 80% 80% at 50% 40%, rgba(184,145,42,0.1) 0%, transparent 65%),
    url('https://images.unsplash.com/photo-1519014816548-bf5fe059798b?w=1600&q=80') center/cover no-repeat;
}
.booking-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,247,242,0.75) 0%, rgba(250,247,242,0.9) 100%);
}
.booking-content { position: relative; z-index: 2; max-width: 640px; padding: 8rem 2rem 4rem; }
.booking-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.booking-content h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600; margin-bottom: 0.6rem; color: var(--charcoal);
}
.booking-content h1 em { font-style: italic; color: var(--gold); }
.booking-content p { color: var(--text-mid); margin-bottom: 2.5rem; font-size: 0.95rem; line-height: 1.85; }
.booking-note { margin-top: 2rem; font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.08em; }

.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1200px; margin: 0 auto;
}
.contact-card {
  background: linear-gradient(135deg, var(--pearl), rgba(245,237,216,0.6));
  border: 1px solid var(--border); border-radius: 4px;
  padding: 2rem; margin-bottom: 1rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  box-shadow: 0 2px 12px rgba(184,145,42,0.06);
}
.contact-card:hover { transform: translateX(4px); border-color: rgba(184,145,42,0.45); box-shadow: 0 8px 25px rgba(184,145,42,0.1), -4px 0 0 var(--gold); }
.contact-card:hover .contact-card-icon { background: rgba(184,145,42,0.12); box-shadow: 0 0 14px rgba(184,145,42,0.2); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(184,145,42,0.07); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: background 0.3s, box-shadow 0.3s;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 0.69rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

.contact-map { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; height: 320px; transition: box-shadow 0.4s, border-color 0.4s; }
.contact-map:hover { box-shadow: 0 8px 25px rgba(184,145,42,0.1); border-color: var(--border-mid); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

.hours-card {
  background: linear-gradient(135deg, var(--pearl), rgba(245,237,216,0.5));
  border: 1px solid var(--border); border-radius: 4px;
  padding: 2rem; margin-top: 1rem;
}
.hours-card h4 { font-size: 0.69rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .time { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--pearl); border: 1px solid var(--border-mid);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); cursor: pointer; z-index: 500;
  opacity: 0; transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(184,145,42,0.1);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold); color: var(--warm-white); border-color: var(--gold); transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px rgba(184,145,42,0.35); }
#back-top svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .masonry-grid { columns: 2; }
  .service-full { grid-template-columns: 1fr; gap: 3rem; }
  .service-full:nth-child(even) { direction: ltr; }
  .booking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .section { padding: 70px 5%; }
  .section-sm { padding: 50px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { gap: 1rem; }
  .masonry-grid { columns: 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
