/* ==========================================================================
   HAYAL MASAJ SPA - LUXURY DESIGN SYSTEM & STYLESHEET
   Location: Ceylanpınar / Şanlıurfa
   Aesthetic: Dark Luxury, Champagne Gold, Minimal Warmth, Editorial Typography
   ========================================================================== */

/* --- 1. CSS VARIABLES & TOKENS --- */
:root {
  /* Color Palette */
  --bg-primary: #11100f;
  --bg-secondary: #181614;
  --bg-card: #201c19;
  --bg-card-hover: #26221e;
  --bg-overlay: rgba(14, 13, 12, 0.78);
  --bg-glass: rgba(24, 22, 20, 0.75);

  --text-main: #f5f1eb;
  --text-muted: #b8afa6;
  --text-dim: #827b73;

  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #997d26;
  --gold-gradient: linear-gradient(135deg, #f7e7b4 0%, #d4af37 50%, #aa820a 100%);
  --gold-glow: rgba(212, 175, 55, 0.22);
  --gold-border: rgba(212, 175, 55, 0.35);

  --accent-warm: #33261f;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(212, 175, 55, 0.25);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation / Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.18);

  /* Layout */
  --container-max: 1200px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. BASE & RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--bg-primary);
  color: var(--text-main);
  position: relative;
  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;
  transition: color var(--tr-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* --- 3. AMBIENT GLOWS & UTILITIES --- */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.glow-top {
  top: -150px;
  right: -100px;
}

.glow-middle {
  top: 45%;
  left: -200px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 12px;
  position: relative;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

/* --- 4. BUTTONS & CTA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--tr-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0d0c0b;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.btn-gold-solid {
  background: var(--gold-gradient);
  color: #12100d;
  font-weight: 700;
}

.btn-gold-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.btn-xl {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn:hover .btn-shine {
  left: 150%;
}

/* --- 5. HEADER & NAVBAR --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--tr-smooth);
}

.site-header.scrolled {
  padding: 14px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-main);
}

.brand-logo .logo-symbol {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.brand-logo .logo-text span {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-left: 4px;
}

.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--tr-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--tr-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone-btn {
  font-size: 0.82rem;
  padding: 10px 18px;
}

.header-cta-btn {
  font-size: 0.82rem;
  padding: 10px 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--gold-primary);
  transition: transform var(--tr-fast), opacity var(--tr-fast);
}

/* --- 6. MOBILE OFF-CANVAS DRAWER --- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--border-gold-subtle);
  transition: right var(--tr-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.drawer-close {
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 400;
  display: block;
  padding: 6px 0;
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-contact-info {
  margin-bottom: 16px;
}

.drawer-loc {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.drawer-tel {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- 7. HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroSubtleZoom 20s infinite alternate ease-in-out;
}

@keyframes heroSubtleZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(17, 16, 15, 0.72) 0%, 
    rgba(17, 16, 15, 0.86) 60%, 
    rgba(17, 16, 15, 1) 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.hero-brand-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-phone-highlight {
  display: inline-block;
  margin-top: 10px;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--tr-smooth);
}

.hero-phone-link:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.phone-ring-icon {
  color: var(--gold-primary);
  display: flex;
  align-items: center;
}

.phone-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.phone-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity var(--tr-fast);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--gold-light);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheelAnim 2s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

.scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- 8. EDITORIAL ABOUT SECTION --- */
.about-section {
  background: var(--bg-primary);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.editorial-media {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.editorial-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.image-frame:hover .editorial-img {
  transform: scale(1.04);
}

.frame-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 16, 15, 0.85);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold-subtle);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
}

.floating-stat-card {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 200px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.editorial-content .lead-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
}

.editorial-content .body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.check-title {
  font-size: 0.95rem;
  color: var(--text-main);
}

/* --- 9. SERVICES & PRICING SECTION --- */
.services-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--tr-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-subtle);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

.card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

.service-card:hover .card-media img {
  transform: scale(1.08);
}

.card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(32, 28, 25, 1) 100%);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header-group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #ffffff;
  font-weight: 600;
}

.service-price {
  text-align: right;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.service-price .currency {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
}

.service-price .amount {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.card-features span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.btn-card-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--tr-fast);
}

.btn-card-action:hover {
  background: var(--gold-gradient);
  color: #0d0c0b;
  border-color: transparent;
}

/* SIGNATURE CARD: Padişah Masajı (Special 5th card spans 2 columns or stands out) */
.service-card-signature {
  grid-column: span 2;
  border: 1px solid var(--gold-primary);
  background: linear-gradient(145deg, #231e1a 0%, #1a1613 100%);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
}

.service-card-signature:hover {
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.28);
}

.signature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: var(--gold-gradient);
  color: #12100d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.card-sub-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.signature-price .amount {
  font-size: 1.8rem;
}

/* --- 10. CINEMATIC MID-PAGE CTA --- */
.cinematic-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-backdrop-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-backdrop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(18, 16, 14, 0.82) 0%, rgba(18, 16, 14, 0.95) 100%);
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-buttons-wrap {
  margin-bottom: 16px;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* --- 11. WHY US SECTION --- */
.why-us-section {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  transition: all var(--tr-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-subtle);
  background: var(--bg-card-hover);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
}

.why-card:hover .why-icon-box {
  background: var(--gold-primary);
  color: #12100d;
  box-shadow: 0 0 20px var(--gold-glow);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- 12. PREMIUM MASONRY GALLERY --- */
.gallery-section {
  background: var(--bg-secondary);
}

.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.gallery-item.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.item-tall {
  grid-row: span 2;
}

.gallery-item.item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.65);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity var(--tr-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-brand {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.gallery-sub {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
}

.zoom-btn {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-content-box {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  transition: color var(--tr-fast);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

/* --- 13. TESTIMONIALS SECTION --- */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-highlight {
  border-color: var(--border-gold-subtle);
  background: linear-gradient(160deg, #26211c 0%, #1e1916 100%);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.guest-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.guest-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #12100d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.guest-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.guest-service {
  font-size: 0.78rem;
  color: var(--gold-light);
}

/* --- 14. CONTACT & LOCATION SECTION --- */
.contact-section {
  background: var(--bg-secondary);
}

.contact-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}

.contact-details-col {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.info-val {
  font-size: 0.95rem;
  color: var(--text-main);
}

.info-phone-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.03em;
}

.info-phone-link:hover {
  text-decoration: underline;
}

.contact-map-col {
  position: relative;
  min-height: 420px;
}

.map-embed-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(17, 16, 15, 0.88);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold-subtle);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  pointer-events: none;
}

.map-pin-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pinPulse 1.8s infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* --- 15. MOBILE STICKY BOTTOM BAR --- */
.mobile-sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  background: rgba(18, 16, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold-subtle);
  padding: 10px 16px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-cta-btn.cta-call {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-light);
}

.mobile-cta-btn.cta-book {
  background: var(--gold-gradient);
  color: #12100d;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

/* --- 16. LUXURY FOOTER --- */
.site-footer {
  background: #0d0c0b;
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-logo .logo-symbol {
  color: var(--gold-primary);
}

.footer-logo .logo-text span {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  color: var(--gold-primary);
  letter-spacing: 0.18em;
  margin-left: 4px;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-nap p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-tel {
  color: var(--gold-primary);
  font-weight: 700;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: all var(--tr-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.hours-text {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.hours-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-book-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- 17. SCROLL ANIMATIONS (INTERSECTION OBSERVER) --- */
.reveal-fade,
.reveal-fade-up,
.reveal-fade-left,
.reveal-fade-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-up {
  transform: translateY(35px);
}

.reveal-fade-left {
  transform: translateX(35px);
}

.reveal-fade-right {
  transform: translateX(-35px);
}

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- 18. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-phone-btn {
    display: none;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-img {
    height: 380px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-signature {
    grid-column: span 2;
  }

  .editorial-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-details-col {
    padding: 36px 24px;
  }

  .contact-map-col {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  body {
    padding-bottom: 70px; /* Space for bottom mobile bar */
  }

  .mobile-sticky-cta-bar {
    display: grid;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-signature {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .editorial-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.item-large,
  .gallery-item.item-tall,
  .gallery-item.item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .floating-stat-card {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

/* --- 19. LEGAL POLICIES & MODALS (GOOGLE ADS COMPLIANCE) --- */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-link-btn {
  font-size: 0.78rem;
  color: var(--text-dim);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--tr-fast);
}

.legal-link-btn:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

.footer-legal-links .sep {
  color: var(--border-subtle);
  font-size: 0.7rem;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.policy-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.policy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.policy-modal-container {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.policy-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.policy-close-btn {
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
  transition: color var(--tr-fast);
}

.policy-close-btn:hover {
  color: var(--gold-primary);
}

.policy-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.policy-modal-body h4 {
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 1rem;
}

.policy-modal-body p {
  margin-bottom: 12px;
}

