/* =========================================
   AMRAN THE BARBER — Premium Luxury Dark
   ========================================= */

:root {
  /* Brand Palette — Old Money Luxury */
  --bg: #0a0807;
  --bg-elev: #141110;
  --bg-elev-2: #1c1816;
  --surface: #1f1a17;
  --border: #2a2421;
  --border-light: #3d342e;

  --text: #efe6d8;
  --text-muted: #a89e8e;
  --text-dim: #6b6258;

  --gold: #c9a961;
  --gold-bright: #e5c989;
  --gold-deep: #8a7240;
  --gold-rgb: 201, 169, 97;

  --leather: #5a3d28;
  --cream: #f3ead8;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Heebo', -apple-system, sans-serif;
  --font-he: 'Heebo', 'Inter', sans-serif;

  /* Spacing */
  --section: clamp(80px, 12vw, 160px);
  --container: 1320px;

  /* Easing */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--gold); color: var(--bg); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: var(--font-he); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}

.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
}

.section-header.centered {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 760px;
}
.section-header.centered .section-lead { margin: 0 auto; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; }

/* =========================================
   LANG SWITCHER
   ========================================= */
.lang-switcher {
  position: fixed;
  bottom: 32px;
  inset-inline-start: 32px;
  z-index: 200;
  display: flex;
  background: rgba(20, 17, 16, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lang-btn {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--gold);
  color: var(--bg);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 8, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.logo-mark { width: 44px; height: 44px; color: var(--gold); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text);
}
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0 auto;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 8, 7, 0.85) 100%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.4) 0%, rgba(10, 8, 7, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1.2s var(--ease-out) both;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 132px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-title-line { display: block; }
.hero-title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* =========================================
   TICKER
   ========================================= */
.ticker {
  background: var(--gold);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}
.ticker-dot { color: var(--bg); opacity: 0.6; font-size: 12px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
[dir="rtl"] .ticker-track {
  animation: scrollRtl 40s linear infinite;
}
@keyframes scrollRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* =========================================
   EXPERIENCE
   ========================================= */
.experience {
  padding: var(--section) 0;
  background: var(--bg);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.experience-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 1.2s var(--ease-out);
}
.experience-image:hover img { transform: scale(1.05); }
.image-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.4;
}

.experience-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.feature svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: var(--section) 0;
  background: var(--bg-elev);
}

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

.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px 36px;
  transition: all 0.5s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, transparent 30%, rgba(var(--gold-rgb), 0.3) 50%, transparent 70%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover {
  background: var(--bg-elev-2);
  transform: translateY(-6px);
  border-color: var(--gold-deep);
}
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  background: linear-gradient(180deg, var(--bg-elev-2) 0%, var(--bg) 100%);
  border-color: var(--gold-deep);
}
.service-card-premium {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08) 0%, var(--bg) 100%);
  border-color: var(--gold);
}

.service-tag {
  position: absolute;
  top: -1px;
  inset-inline-end: 24px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.service-tag-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text);
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 70px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-time {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.service-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

/* =========================================
   SHOWCASE
   ========================================= */
.showcase {
  padding: 0;
  background: var(--bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  min-height: 700px;
}

.showcase-large {
  position: relative;
  overflow: hidden;
}
.showcase-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 1.5s var(--ease-out);
}
.showcase-large:hover img { transform: scale(1.05); }

.showcase-caption {
  position: absolute;
  bottom: 60px;
  inset-inline-start: 60px;
  z-index: 2;
  color: var(--text);
  max-width: 500px;
}
.showcase-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.showcase-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
}

.showcase-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.showcase-small {
  position: relative;
  overflow: hidden;
}
.showcase-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}
.showcase-small:hover img { transform: scale(1.05); }

.showcase-text {
  background: var(--bg-elev);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-inline-start: 1px solid var(--border);
}
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 24px;
}
.quote-author {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: var(--section) 0 80px;
  background: var(--bg);
}

.gallery-strip {
  display: flex;
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 64px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-tall {
  width: 320px;
  height: 480px;
}
.gallery-item-wide {
  width: 600px;
  height: 480px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--section) 0;
  background: var(--bg-elev);
}

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

.testimonial {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
}

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

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  min-height: 120px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.author-meta {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* =========================================
   BOOKING
   ========================================= */
.booking {
  padding: var(--section) 0;
  background: var(--bg);
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.booking-info { padding-top: 20px; }
.booking-info .section-title { margin-bottom: 32px; }

.booking-contacts {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.contact-link:not(.contact-static):hover {
  border-color: var(--gold-deep);
  background: var(--bg-elev-2);
  transform: translateX(4px);
}
[dir="rtl"] .contact-link:not(.contact-static):hover { transform: translateX(-4px); }

.contact-link svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-link > div { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.contact-whatsapp svg { color: #25D366; }

.booking-form-wrapper {
  background: var(--bg-elev);
  padding: 48px;
  border: 1px solid var(--border-light);
  position: relative;
}
.booking-form-wrapper::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-deep);
  pointer-events: none;
  opacity: 0.3;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-form span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}
[dir="rtl"] .booking-form input,
[dir="rtl"] .booking-form select,
[dir="rtl"] .booking-form textarea { font-family: var(--font-he); }

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking-form select option { background: var(--bg); color: var(--text); }

.form-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* =========================================
   MAP
   ========================================= */
.map-section {
  background: var(--bg);
  padding: 0;
  border-top: 1px solid var(--border);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-elev-2);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}

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

.footer-brand .logo-mark { color: var(--gold); margin-bottom: 16px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--text);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li, .footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.social {
  display: flex;
  gap: 12px;
}
.social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.social svg { width: 16px; height: 16px; }
.social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 32px;
  inset-inline-end: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  animation: pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.wa-float svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* =========================================
   MODAL
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.active { display: flex; opacity: 1; }

.modal-content {
  background: var(--bg-elev);
  border: 1px solid var(--gold-deep);
  padding: 60px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: scaleIn 0.4s var(--ease-out);
}
.modal-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  color: var(--text-muted);
}
.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: var(--gold);
}
.modal-icon svg { width: 100%; height: 100%; }
.modal-content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text);
}
.modal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.modal-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold) !important;
  margin: 24px 0 32px !important;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .experience-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .showcase-large { aspect-ratio: 16 / 10; }
  .showcase-stack { grid-template-rows: auto auto; }
  .showcase-small { aspect-ratio: 4 / 3; }
  .showcase-text { aspect-ratio: auto; }

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

@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 28px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }

  .ticker-track { font-size: 14px; gap: 20px; }

  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrapper { padding: 32px 24px; }

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

  .lang-switcher { bottom: 100px; }
  .gallery-item-tall { width: 240px; height: 360px; }
  .gallery-item-wide { width: 380px; height: 360px; }
}
