/* ============================================================
   EDEN NAILS – Premium Hebrew RTL Landing Page
   style.css
   ============================================================ */

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:         #f8f5f1;
  --color-cream:      #f2ece6;
  --color-white:      #ffffff;
  --color-charcoal:   #1f1f1f;
  --color-gray:       #6b6460;
  --color-gray-light: #9e9590;
  --color-nude:       #c9a99a;
  --color-nude-dark:  #a87a6a;
  --color-rose:       #d4a5a5;
  --color-gold:       #c9a97a;
  --color-gold-light: #e8d5b7;

  /* Typography */
  --font-display: 'Secular One', 'Heebo', sans-serif;
  --font-body:    'Heebo', Arial, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  9rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  /* Shadows */
  --shadow-xs:  0 2px 8px rgba(31,31,31,0.05);
  --shadow-sm:  0 4px 20px rgba(31,31,31,0.07);
  --shadow-md:  0 10px 40px rgba(31,31,31,0.10);
  --shadow-lg:  0 20px 60px rgba(31,31,31,0.12);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s var(--ease);
  --trans-med:  0.4s var(--ease);
  --trans-slow: 0.8s var(--ease-out);

  /* Nav height */
  --nav-h: 70px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

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

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb {
  background: var(--color-nude);
  border-radius: 3px;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-pad {
  padding-block: var(--space-xl);
}

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

/* ── TYPOGRAPHY SYSTEM ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-nude-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-charcoal);
  letter-spacing: 0;
}

.section-title em {
  font-style: italic;
  color: var(--color-nude-dark);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.body-text {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition:
    transform var(--trans-fast),
    box-shadow var(--trans-fast),
    background-color var(--trans-fast),
    color var(--trans-fast);
  position: relative;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* Light (hero) */
.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--color-charcoal);
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: var(--color-white);
}

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

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* Gold (booking CTA) */
.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 1rem;
  padding: 1.1rem 2.8rem;
}

.btn-gold:hover {
  background: var(--color-nude-dark);
  color: var(--color-white);
}

/* Dark (final CTA) */
.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-dark:hover {
  background: #333;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Pulse glow on booking CTA */
.pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,122,0); }
  50% { box-shadow: 0 0 0 12px rgba(201,169,122,0.20); }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--trans-med), box-shadow var(--trans-med);
  /* transparent on hero */
  background: transparent;
}

.nav.scrolled {
  background: rgba(248,245,241,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xs);
}

/* Logo + links white on hero, charcoal when scrolled */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.08em;
  transition: opacity var(--trans-fast), color var(--trans-med);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.nav.scrolled .nav-logo {
  color: var(--color-charcoal);
  text-shadow: none;
}

.nav-logo:hover { opacity: 0.75; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 2rem;
  max-width: 1300px;
  margin-inline: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  transition: color var(--trans-fast);
  position: relative;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.nav.scrolled .nav-links a {
  color: var(--color-gray);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width var(--trans-fast);
}

.nav.scrolled .nav-links a::after {
  background: var(--color-nude-dark);
}

.nav-links a:hover { color: var(--color-white); }
.nav.scrolled .nav-links a:hover { color: var(--color-charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: rgba(255,255,255,0.18) !important;
  color: var(--color-white) !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  backdrop-filter: blur(8px);
  transition: all var(--trans-fast) !important;
}

.nav.scrolled .nav-cta {
  background: var(--color-charcoal) !important;
  border-color: var(--color-charcoal) !important;
  color: var(--color-white) !important;
}

.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none !important; }

/* Burger lines white on hero */
.nav-burger span {
  background: var(--color-white);
}
.nav.scrolled .nav-burger span {
  background: var(--color-charcoal);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-charcoal);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(248,245,241,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: var(--space-lg) var(--space-md);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-med);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* New redesigned hero */
.hero-redesign {
  background: var(--color-bg);
  align-items: center;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,154,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201,169,122,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-redesign-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  padding-block: calc(var(--nav-h) + 2rem) 3rem;
  padding-inline: 1.5rem;
  width: 100%;
}

/* Circle portrait */
.hero-circle-wrap {
  position: relative;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  flex-shrink: 0;
}

.hero-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(31,31,31,0.15);
  position: relative;
  z-index: 1;
}

.hero-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  transition: transform 0.8s var(--ease);
}

.hero-circle-img:hover img {
  transform: scale(1.04);
}

/* Decorative rings */
.hero-circle-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: var(--color-nude);
  pointer-events: none;
  animation: ringFloat 5s ease-in-out infinite;
}

.hero-circle-ring--outer {
  inset: -14px;
  border-width: 1px;
  opacity: 0.45;
  animation-delay: 0s;
}

.hero-circle-ring--inner {
  inset: -5px;
  border-width: 1.5px;
  opacity: 0.25;
  animation-delay: 0.6s;
}

@keyframes ringFloat {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50%       { transform: scale(1.015); opacity: 0.2; }
}

/* Text below circle */
.hero-redesign-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-nude-dark);
}

.hero-redesign-text .btn {
  font-size: 1rem;
  padding: 1rem 2.8rem;
  animation: heroBtn 1s 0.5s var(--ease-out) both;
}

/* Legacy hero classes kept for safety */
.hero-image-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(31,31,31,0.05) 0%, rgba(31,31,31,0.10) 35%, rgba(31,31,31,0.55) 65%, rgba(31,31,31,0.82) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding-inline: 1.5rem; max-width: 800px; }
.hero-content--bottom { width: 100%; display: flex; flex-direction: column; align-items: center; padding-bottom: 0; }
.hero-content--bottom .btn { margin-top: 0; margin-bottom: 3rem; font-size: 1.1rem; font-weight: 600; padding: 1.1rem 3.2rem; border-radius: var(--radius-xl); box-shadow: 0 12px 40px rgba(0,0,0,0.22); letter-spacing: 0.03em; animation: heroBtn 1s 0.4s var(--ease-out) both; }
.hero-content--bottom .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0,0,0,0.28); }
.hero-eyebrow { display:none; }
.hero-heading { display:none; }
.hero-sub { display:none; }

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(31,31,31,0.05) 0%,
    rgba(31,31,31,0.10) 35%,
    rgba(31,31,31,0.55) 65%,
    rgba(31,31,31,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 1.5rem;
  max-width: 800px;
}

.hero-content--bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}

/* CTA button - large, centered, elegant */
.hero-content--bottom .btn {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.1rem 3.2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  letter-spacing: 0.03em;
  animation: heroBtn 1s 0.4s var(--ease-out) both;
}

@keyframes heroBtn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Blinking glow on hover */
.hero-content--bottom .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.28);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

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

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.about-image-frame:hover img {
  transform: scale(1.04);
}

.about-image-deco {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid var(--color-nude);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.02); opacity: 0.4; }
}
  opacity: 0.6;
}

.about-text-col {
  padding-block: var(--space-md);
}

.about-divider {
  width: 50px;
  height: 1px;
  background: var(--color-nude);
  margin-block: 1.5rem;
}

/* ── WHY SECTION ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(201,169,154,0.15);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  text-align: center;
}

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

.why-icon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  margin-bottom: 1.2rem;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-nude-dark);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ── GALLERY SECTION ─────────────────────────────────────────── */
.gallery-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-gray);
  margin-top: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-cream);
}

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

.gallery-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 220px;
}

.gallery-item.tall .gallery-frame {
  min-height: 460px;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

/* ── SERVICES SECTION ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,154,0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, var(--color-nude), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--trans-med);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,154,0.20);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.service-icon {
  width: 42px;
  height: 42px;
  color: var(--color-nude-dark);
  margin-bottom: 1.2rem;
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.service-divider {
  width: 36px;
  height: 1px;
  background: var(--color-nude);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-gray);
  line-height: 1.8;
}

/* ── BOOKING CTA SECTION ─────────────────────────────────────── */
.booking-cta {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.booking-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(31,31,31,0.78) 0%,
    rgba(31,31,31,0.65) 100%
  );
}

.booking-content {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
  max-width: 720px;
}

.booking-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.booking-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 2.5rem;
}

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

/* ── SECTION INTRO (shared) ──────────────────────────────────── */
.section-intro {
  font-size: 1rem;
  color: var(--color-gray);
  margin-top: 0.8rem;
  max-width: 500px;
  margin-inline: auto;
}

/* ── WORK VIDEO SECTION ──────────────────────────────────────── */
.work-video-section {
  background: var(--color-charcoal);
  padding-block: var(--space-xl);
  overflow: hidden;
}

.work-video-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.work-video-header {
  text-align: center;
}

.work-video-header .section-tag {
  color: var(--color-gold-light);
}

.work-video-header .section-title {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.work-video-header .section-title em {
  color: var(--color-gold-light);
}

/* The video frame with decorative borders */
.work-video-frame {
  position: relative;
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.work-video-player {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 70vh;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Decorative corner accents */
.work-video-deco {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--color-gold);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.work-video-deco--tr {
  top: -12px;
  left: -12px;
  border-width: 2px 0 0 2px;
  border-radius: 6px 0 0 0;
}

.work-video-deco--bl {
  bottom: -12px;
  right: -12px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 6px 0;
}

/* Floating "live" badge */
.work-video-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.work-video-badge-dot {
  width: 7px;
  height: 7px;
  background: #ff5e5e;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Caption below video */
.work-video-caption {
  text-align: center;
  color: rgba(255,255,255,0.65);
}

.work-video-caption p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.80);
}

.work-video-caption span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── RESPONSIVE updates ───────────────────────────────────────── */

/* ── FINAL CTA SECTION ───────────────────────────────────────── */
.final-cta-inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.final-logo {
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.final-logo-en {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
}

.final-logo-deco {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-nude), transparent);
}

.final-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 1.2rem;
}

.final-heading em {
  font-style: italic;
  color: var(--color-nude-dark);
}

.final-sub {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--color-charcoal);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.9rem;
  transition: color var(--trans-fast);
}

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

.footer-instagram svg {
  width: 18px;
  height: 18px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ── WHATSAPP FLOAT BUTTON ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.4rem 0.75rem 1rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.35);
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(37,211,102,0.45);
  animation: none;
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── INSTAGRAM FLOAT BUTTON ──────────────────────────────────── */
.instagram-float {
  position: fixed;
  bottom: 5.2rem;
  left: 1.8rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.4rem 0.75rem 1rem;
  box-shadow: 0 6px 30px rgba(220,39,67,0.30);
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  animation: igBounce 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.instagram-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.instagram-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(220,39,67,0.40);
  animation: none;
}

@keyframes igBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

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

.revealed {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Hero reveal (JS adds class) */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-hero.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }

/* Hero specific delays */
.hero .reveal-hero.delay-1 { transition-delay: 0.3s; }
.hero .reveal-hero.delay-2 { transition-delay: 0.6s; }
.hero .reveal-hero.delay-3 { transition-delay: 0.9s; }

/* Fade-in keyframe */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── GALLERY CAROUSEL ────────────────────────────────────────── */
.gallery-carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  user-select: none;
}

.gallery-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
  cursor: grab;
}

.gallery-carousel-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.gallery-carousel-slide {
  flex: 0 0 calc(33.333% - 0.67rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-cream);
  flex-shrink: 0;
}

.gallery-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
  display: block;
}

.gallery-carousel-slide:hover img {
  transform: scale(1.04);
}

/* Navigation arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--color-nude);
  background: var(--color-white);
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-white);
  transform: scale(1.05);
}

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

/* Dots */
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-nude);
  opacity: 0.4;
  transition: all var(--trans-fast);
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  opacity: 1;
  background: var(--color-nude-dark);
  width: 22px;
  border-radius: 4px;
}

/* Mobile: show 1.2 slides */
@media (max-width: 768px) {
  .gallery-carousel-slide {
    flex: 0 0 calc(80% - 0.5rem);
    aspect-ratio: 3/4;
  }
}

@media (max-width: 480px) {
  .gallery-carousel-slide {
    flex: 0 0 85%;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col { order: -1; }

  .about-image-frame {
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.tall .gallery-frame {
    min-height: 280px;
  }

  .gallery-grid-uniform {
    grid-template-rows: repeat(2, 260px);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .nav-links { display: none; }

  .nav-burger {
    display: flex;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .why-card {
    padding: 1.6rem 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .gallery-grid-uniform {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 0.6rem;
  }

  .booking-cta { min-height: 480px; }

  .whatsapp-float {
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  }
}

@media (max-width: 560px) {
  .hero-circle-wrap {
    width: min(320px, 85vw);
    height: min(320px, 85vw);
  }
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

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

  .gallery-grid-uniform {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .work-video-player {
    max-height: 55vh;
  }

  .hero-heading { letter-spacing: -0.01em; }

  .br-desktop { display: none; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
