/* ============================================
   BUDDHA'S CUTS & SHAVES STUDIO — v58
   Editorial Luxury · Warm Brass · Premium Motion
   Refined by the Vanguard UI Architect protocol
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* Warm dark base — deeper, richer, more physical */
  --black: #050505;
  --black-light: #0a0908;
  --black-card: #12100e;
  --gray-dark: #1a1815;
  --gray-mid: #2a2622;

  /* Warm gray hierarchy (better body-text contrast on dark) */
  --gray: #8a8480;
  --gray-light: #c2bcb4;

  /* Warm off-white for headline body */
  --white: #f8f5f0;
  --white-dim: rgba(248, 245, 240, 0.78);
  --cream: #f5efe4;

  /* True refined brass — the actual "gold" of the brand */
  --accent: #c9a961;
  --gold: #c9a961;
  --brown: #c9a961;
  --brown-light: #d9bd7a;
  --brass-dim: #8a7548;

  /* Motion — cinematic exponential ease-out (premium tier) */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: all 0.5s var(--ease-out-expo);
  --transition-slow: all 0.8s var(--ease-out-expo);
  --transition-fast: all 0.3s var(--ease-out-quint);

  /* Typography — premium editorial pairing */
  --font-display: 'Playfair Display', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Warm-tinted shadows (never pure black) */
  --shadow-sm: 0 2px 8px rgba(20, 15, 10, 0.35);
  --shadow-md: 0 8px 24px rgba(20, 15, 10, 0.45);
  --shadow-lg: 0 20px 60px rgba(20, 15, 10, 0.55);
  --shadow-brass: 0 0 30px rgba(201, 169, 97, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Subtle grain overlay — adds analog/physical texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

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

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

ul {
  list-style: none;
}

/* Refined text selection */
::selection {
  background: var(--accent);
  color: var(--black);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-mid);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Global focus rings for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes lineExpand {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-6deg) scale(0.85);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
    filter: blur(0);
  }
}

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

@keyframes brassGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 97, 0.15); }
  50% { box-shadow: 0 0 30px rgba(201, 169, 97, 0.28); }
}

/* Scroll reveal classes — refined with blur for premium feel */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo),
              filter 0.9s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  filter: blur(6px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo),
              filter 1s var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  filter: blur(6px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo),
              filter 1s var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo),
              filter 0.9s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Stagger delays — exponential for cinematic cascade */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.26s; }
.stagger-4 { transition-delay: 0.38s; }
.stagger-5 { transition-delay: 0.52s; }
.stagger-6 { transition-delay: 0.68s; }
.stagger-7 { transition-delay: 0.86s; }
.stagger-8 { transition-delay: 1.06s; }
.stagger-9 { transition-delay: 1.28s; }
.stagger-10 { transition-delay: 1.52s; }

/* ============================================
   NAVBAR — Refined premium glass
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s var(--ease-out-expo),
              padding 0.5s var(--ease-out-expo),
              backdrop-filter 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(8, 7, 6, 0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  padding: 14px 5%;
  box-shadow: 0 1px 0 rgba(201, 169, 97, 0.08),
              0 12px 40px rgba(0, 0, 0, 0.5);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.logo-link:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.15);
}

.navbar.scrolled .logo-img {
  height: 42px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  transition: var(--transition);
  line-height: 1;
}

.navbar.scrolled .logo-text {
  font-size: 1.32rem;
}

.logo-text span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  display: block;
  color: var(--brown-light);
  font-weight: 500;
  margin-top: 2px;
  opacity: 0.85;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color 0.35s var(--ease-out-expo);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--brown-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--brown-light);
}

/* Book Button — Estilo idéntico a los nav-links (INICIO, NOSOTROS, etc.) */
.btn-book {
  padding: 4px 0;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  cursor: pointer;
  transition: color 0.35s var(--ease-out-expo);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-family: var(--font-body);
  position: relative;
  display: inline-block;
}

.btn-book::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out-expo);
}

.btn-book:hover {
  color: var(--brown-light);
}

.btn-book:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay — Premium fluid reveal */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-out-expo),
              visibility 0.55s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--white-dim);
  transition: color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.43s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.5s; }

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--brown-light);
  transform: translateY(0) scale(1.03);
}

.mobile-menu .btn-book {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--white-dim);
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0;
  text-transform: none;
  text-shadow: none;
  cursor: pointer;
  transition: color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.mobile-menu .btn-book::after {
  display: none;
}

.mobile-menu .btn-book:hover {
  color: var(--brown-light);
  transform: translateY(0) scale(1.03);
  box-shadow: none;
}

/* ============================================
   HERO SECTION — Refined cinematic
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 90px;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 10s var(--ease-out-expo) forwards;
  filter: brightness(0.32) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 5, 0.4) 70%, rgba(5, 5, 5, 0.85) 100%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.05) 40%, rgba(5, 5, 5, 0.55) 78%, rgba(5, 5, 5, 1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 5%;
  max-width: 900px;
}

.hero-logo {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  margin: 0 auto 26px;
  animation: rotateIn 1.4s var(--ease-out-expo) forwards;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 14px;
  animation: fadeInUp 1.1s var(--ease-out-expo) 0.35s both;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
  line-height: 1;
}

.hero-subtitle {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 6.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 20px;
  animation: fadeInUp 1.1s var(--ease-out-expo) 0.55s both;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-subtitle-secondary {
  display: block;
  margin-top: 6px;
  color: var(--brown-light);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-transform: none;
}

.hero-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 0 auto 20px;
  animation: lineExpand 1.1s var(--ease-out-expo) 0.75s forwards;
}

.hero-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.85;
  animation: fadeInUp 1.1s var(--ease-out-expo) 0.95s both;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  text-wrap: balance;
  font-weight: 400;
}

/* Hero CTA — magnetic ready, with nested icon feel */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 17px 42px;
  border: 1px solid rgba(248, 245, 240, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 0.5s var(--ease-out-expo),
              background 0.5s var(--ease-out-expo),
              border-color 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
  animation: fadeInUp 1.1s var(--ease-out-expo) 1.15s both;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brown-light) 100%);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}

.hero-cta i {
  transition: transform 0.4s var(--ease-out-expo);
}

.hero-cta:hover {
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 169, 97, 0.32);
  text-shadow: none;
}

.hero-cta:hover::before {
  transform: translateY(0);
}

.hero-cta:hover i {
  transform: translateX(4px) scale(1.1);
}

.hero-cta:active {
  transform: translateY(-1px) scale(0.98);
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1.2s var(--ease-out-expo) 1.6s both;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  display: none;
}

.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--brown-light), transparent);
  animation: pulse 2.5s var(--ease-in-out-cubic) infinite;
}

/* Compacted hero for short-height laptops */
@media (min-width: 769px) and (max-height: 950px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 110px 0 50px;
  }
  .hero-logo {
    width: 240px;
    height: 240px;
    margin: 0 auto 18px;
  }
  .hero-desc {
    margin: 0 auto 20px;
  }
  .hero-scroll {
    display: none;
  }
}

/* ============================================
   GALLERY STRIP — Refined edges
   ============================================ */

.gallery-strip {
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 97, 0.08);
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 300px;
  height: 340px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) brightness(0.92);
  transition: filter 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.gallery-item--video {
  min-width: 300px;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.6s var(--ease-out-expo);
  filter: brightness(0.92);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.gallery-item:hover .gallery-video {
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.1));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  pointer-events: none;
}

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

@keyframes slideGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADER — Refined hierarchy
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: var(--white);
  text-wrap: balance;
  line-height: 1.15;
}

.section-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 0 auto;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 620px;
  margin: 22px auto 0;
  line-height: 1.85;
  text-wrap: pretty;
  font-weight: 400;
}

/* ============================================
   ABOUT SECTION — Refined editorial
   ============================================ */

.about {
  padding: 110px 5%;
  background: var(--black);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.95);
  transition: filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  box-shadow: var(--shadow-lg);
}

.about-img-main:hover {
  filter: grayscale(60%) brightness(1);
  transform: translateY(-4px);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 250px;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.95);
  border: 8px solid var(--black);
  transition: filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  box-shadow: var(--shadow-md);
}

.about-img-accent:hover {
  filter: grayscale(50%) brightness(1);
  transform: translateY(-4px);
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-wrap: balance;
  line-height: 1.25;
}

.about-content p {
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 22px;
  font-size: 0.96rem;
  text-wrap: pretty;
  max-width: 65ch;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.stat-item h4 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--brown-light);
  margin-bottom: 6px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-item p {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION — Home preview
   ============================================ */

.services-preview {
  padding: 110px 5%;
  background: var(--black-light);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 169, 97, 0.12);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.service-card:hover .service-card-img {
  filter: grayscale(45%) brightness(1);
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 44px 26px 26px;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.7) 55%, transparent 100%);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-wrap: balance;
  line-height: 1.2;
}

.service-card-price {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown-light);
  letter-spacing: 2px;
  font-weight: 500;
}

/* ============================================
   SERVICES PAGE (Full listing)
   ============================================ */

.services-full {
  padding: 60px 5% 130px;
  background: var(--black);
  min-height: 100vh;
}

.services-list {
  max-width: 1040px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 44px 28px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  border-left: 2px solid var(--brown-light);
  background: linear-gradient(to right, rgba(201, 169, 97, 0.035) 0%, transparent 60%);
  transition: background 0.5s var(--ease-out-expo),
              border-left-color 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo);
}

.service-item:hover {
  background: linear-gradient(to right, rgba(201, 169, 97, 0.07) 0%, rgba(201, 169, 97, 0.02) 60%);
  border-left-color: var(--accent);
  transform: translateX(6px);
}

.service-item-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  border: 1px solid rgba(201, 169, 97, 0.4);
  box-shadow: 0 0 24px rgba(201, 169, 97, 0.15), var(--shadow-md);
}

.service-item:hover .service-item-img {
  filter: grayscale(0%);
  transform: scale(1.03);
  box-shadow: 0 0 32px rgba(201, 169, 97, 0.28), var(--shadow-md);
}

.service-item-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-wrap: balance;
  line-height: 1.2;
}

.service-item-content p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.75;
  text-wrap: pretty;
  max-width: 60ch;
}

.service-item-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown-light);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.service-item-price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gray);
  display: block;
  text-align: right;
  margin-top: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
  padding: 110px 5%;
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1240px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  overflow: visible;
  background: transparent;
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 50px rgba(201, 169, 97, 0.12);
}

.team-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.92);
  transition: filter 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.team-card:hover .team-card-img {
  filter: grayscale(30%) brightness(1);
  transform: scale(1.04);
}

.team-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(5, 5, 5, 0.92) 100%
  );
}

.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 26px;
  z-index: 2;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.98) 60%, transparent 100%);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.15;
}

.team-card-role {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.team-card-bio {
  font-size: 0.86rem;
  color: var(--cream);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s var(--ease-out-expo),
              opacity 0.5s var(--ease-out-expo),
              margin-top 0.5s var(--ease-out-expo);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  text-wrap: pretty;
}

.team-card:hover .team-card-bio {
  max-height: 260px;
  opacity: 1;
  margin-top: 12px;
}

/* Team Page */
.team-full {
  padding: 70px 5% 130px;
  background: var(--black);
  min-height: 100vh;
}

/* ============================================
   CONTACT / INFO SECTION
   ============================================ */

.contact {
  padding: 110px 5%;
  background: var(--black-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 34px;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.2;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 30px;
  transition: transform 0.4s var(--ease-out-expo);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--accent);
  transition: border-color 0.4s var(--ease-out-expo),
              background 0.4s var(--ease-out-expo),
              color 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
}

.contact-item:hover .contact-item-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 0 24px rgba(201, 169, 97, 0.32);
}

.contact-item-content h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-item-content p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.55;
}

.contact-item-content a {
  color: var(--white);
  transition: color 0.35s var(--ease-out-expo);
  position: relative;
}

.contact-item-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.contact-item-content a:hover {
  color: var(--brown-light);
}

.contact-item-content a:hover::after {
  width: 100%;
}

.contact-hours {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--white);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  font-size: 0.92rem;
}

.hours-row span:first-child {
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.hours-row span:last-child {
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

/* Map */
.contact-map-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  filter: grayscale(100%) invert(100%) contrast(0.88);
  transition: filter 0.6s var(--ease-out-expo);
  display: block;
}

.contact-map:hover {
  filter: grayscale(60%) invert(100%) contrast(0.88);
}

/* ============================================
   SOCIAL FLOATING BUTTONS — Premium refinement
   ============================================ */

.social-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-float a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  position: relative;
  box-shadow: var(--shadow-md);
}

.social-float a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-float a.whatsapp {
  background: #25d366;
}

.social-float a:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.social-float a::before {
  content: attr(data-label);
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 7px 15px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out-expo),
              visibility 0.35s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo);
  border: 1px solid rgba(201, 169, 97, 0.25);
  font-weight: 500;
}

.social-float a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ============================================
   FOOTER — Refined premium
   ============================================ */

.footer {
  padding: 80px 5% 34px;
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 97, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  max-width: 1240px;
  margin: 0 auto 60px;
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 340px;
  text-wrap: pretty;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: var(--gray-light);
  font-size: 0.92rem;
  margin-bottom: 14px;
  transition: color 0.35s var(--ease-out-expo),
              padding-left 0.35s var(--ease-out-expo);
}

.footer-links a:hover {
  color: var(--brown-light);
  padding-left: 10px;
}

.footer-contact p {
  color: var(--gray-light);
  font-size: 0.92rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-contact a {
  transition: color 0.35s var(--ease-out-expo);
}

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

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 34px;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social a {
  color: var(--gray-light);
  font-size: 1.15rem;
  transition: color 0.35s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo);
}

.footer-social a:hover {
  color: var(--brown-light);
  transform: translateY(-2px);
}

/* ============================================
   PAGE HEADER (Services & Team pages)
   ============================================ */

.page-header {
  position: relative;
  min-height: 340px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.05);
  animation: heroZoom 10s var(--ease-out-expo) forwards;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 5, 0.5) 80%),
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.5) 0%,
      rgba(5, 5, 5, 0.85) 100%
    );
}

.page-header-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s var(--ease-out-expo);
  padding-top: 90px;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  box-sizing: border-box;
}

.page-header-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: var(--white);
  text-wrap: balance;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.page-header-content p {
  color: var(--gray-light);
  font-size: 1rem;
  letter-spacing: 1.5px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  text-wrap: pretty;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  border: 1px solid rgba(248, 245, 240, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 0.5s var(--ease-out-expo),
              background 0.5s var(--ease-out-expo),
              border-color 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
  font-family: var(--font-body);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brown-light) 100%);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}

.btn-primary i {
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 169, 97, 0.3);
  text-shadow: none;
}

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

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 16px 36px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  background: transparent;
  cursor: pointer;
  transition: color 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  font-family: var(--font-body);
}

.btn-view-all i {
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-view-all:hover {
  border-color: var(--accent);
  color: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.15);
}

.btn-view-all:hover i {
  transform: translateX(4px);
}

/* ============================================
   DIVIDER SECTION
   ============================================ */

.divider {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: var(--black-light);
}

.divider-bg-img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  filter: brightness(0.42) contrast(1.05);
  pointer-events: none;
  display: block;
  z-index: 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.65) 100%);
  z-index: 1;
}

.divider-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.divider-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  color: var(--white);
  text-wrap: balance;
  line-height: 1.2;
}

.divider-content p {
  color: var(--gray-light);
  font-size: 0.98rem;
  max-width: 540px;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  text-wrap: pretty;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-item {
    grid-template-columns: 150px 1fr auto;
    gap: 26px;
    padding: 32px 20px;
  }

  .service-item-img {
    width: 150px;
    height: 150px;
  }

  .about-grid {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  * {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 600px;
    padding-top: 90px;
    align-items: flex-start;
  }

  .hero-content {
    padding-bottom: 140px;
    padding-top: 0;
  }

  .hero-logo {
    width: 170px;
    height: 170px;
  }

  .hero-cta {
    padding: 13px 26px;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .about {
    padding: 80px 5%;
  }

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

  .about-images {
    order: -1;
  }

  .about-img-main {
    max-width: 100%;
  }

  .about-img-accent {
    width: 180px;
    bottom: -20px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-item h4 {
    font-size: 1.9rem;
  }

  .services-preview {
    padding: 80px 5%;
  }

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

  .team {
    padding: 80px 5%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .contact {
    padding: 80px 5%;
  }

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

  .contact-map {
    aspect-ratio: 16/9;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .social-float {
    bottom: 22px;
    right: 22px;
  }

  .social-float a {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 20px;
  }

  .service-item-img {
    width: 100%;
    height: 220px;
  }

  .service-item-price {
    text-align: left;
  }

  .divider {
    height: 260px;
  }

  /* iOS/Safari: static divider parallax fix */
  body.is-ios-safari .divider-bg-img {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }

  .mobile-menu a {
    font-size: 1.7rem;
  }

  .section-header {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 4%;
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .section-title {
    letter-spacing: 1px;
  }

  .btn-book {
    padding: 9px 22px;
    font-size: 0.68rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* Page transition loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo),
              visibility 0.6s var(--ease-out-expo);
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: shimmer 1.6s linear infinite;
  background-size: 200% 100%;
}

/* ============================================
   SERVICES PAGE CUSTOMS
   ============================================ */

.service-category-header {
  margin: 70px 0 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  position: relative;
}

.service-category-header::before,
.service-category-header::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.service-category-header::before { top: -1px; }
.service-category-header::after { bottom: -1px; }

.services-list .service-category-header:first-child {
  margin-top: 0;
}

.service-category-header h2 {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--brown-light);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

/* Premium Service Items */
.service-item-premium {
  background: linear-gradient(to right, rgba(201, 169, 97, 0.06) 0%, rgba(201, 169, 97, 0.02) 100%);
  border-left-width: 3px;
}

.service-item-premium .service-item-content ul {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
}

.service-item-premium .service-item-content ul li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color 0.35s var(--ease-out-expo);
}

.service-item-premium .service-item-content ul li:hover {
  color: var(--cream);
}

.service-item-premium .service-item-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 0.95rem;
}

/* Team Founder centered */
.team-founder {
  max-width: 400px;
  margin: 0 auto 90px;
  display: flex;
  justify-content: center;
}

.team-founder .team-card {
  width: 100%;
}

@media (max-width: 768px) {
  .team-founder {
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 70px;
  }

  .service-category-header h2 {
    font-size: 1.5rem;
    letter-spacing: 2.5px;
  }

  .page-header {
    padding-top: 80px;
  }

  .service-item-premium .service-item-content ul {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TEAM CAROUSEL (Home)
   ============================================ */

.team-carousel {
  padding: 0;
  overflow: hidden;
  background: var(--black);
  margin: 0 auto;
  position: relative;
}

.team-carousel-track {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.team-carousel-track::-webkit-scrollbar {
  display: none;
}

.team-carousel-card {
  min-width: 300px;
  height: auto;
  min-height: 340px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  transition: transform 0.6s var(--ease-out-expo);
}

.team-carousel-card:hover {
  transform: translateY(-4px);
}

.team-carousel-card .team-card-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  flex-shrink: 0;
}

.team-carousel-card .team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(85%) brightness(0.95);
  transition: filter 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.team-carousel-card:hover .team-card-img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.team-carousel-card .team-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(5, 5, 5, 0.95) 100%
  );
  opacity: 1;
}

.team-carousel-card .team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 22px 18px;
  z-index: 2;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.98) 55%, transparent 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.team-carousel-card .team-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.8px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.15;
}

.team-carousel-card .team-card-role {
  font-size: 0.66rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 9px;
  font-weight: 600;
}

.team-carousel-card .team-card-bio {
  font-size: 0.8rem;
  color: var(--cream);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out-expo),
              opacity 0.4s var(--ease-out-expo),
              margin-top 0.4s var(--ease-out-expo);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.team-carousel-card:hover .team-card-bio {
  max-height: 140px;
  opacity: 1;
  margin-top: 10px;
}

@keyframes slideTeamCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .team-carousel-card .team-card-name {
    font-size: 1.08rem;
    font-weight: 600;
  }

  .team-carousel-card .team-card-role {
    font-size: 0.6rem;
    font-weight: 600;
  }

  .team-carousel-card .team-card-bio {
    font-size: 0.7rem;
    color: var(--cream);
    line-height: 1.55;
  }
}

/* ============================================
   CAROUSEL NAV BUTTONS
   ============================================ */

.carousel-nav {
  position: absolute;
  top: 170px;
  transform: translateY(-50%);
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--brown-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  font-size: 1.15rem;
}

.carousel-nav:hover {
  background: rgba(201, 169, 97, 0.9);
  border-color: var(--accent);
  color: var(--black);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-nav-prev { left: 14px; }
.carousel-nav-next { right: 14px; }

/* ============================================
   MOBILE CAROUSEL — Native scroll
   ============================================ */

@media (max-width: 768px) {
  .gallery-strip,
  .team-carousel {
    position: relative;
    overflow: hidden;
  }

  .gallery-track,
  .team-carousel-track {
    animation: none !important;
    transform: none !important;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    gap: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gallery-track::-webkit-scrollbar,
  .team-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    min-width: calc(100vw - 0px);
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .team-carousel-card {
    min-width: calc(100vw - 39px);
    height: auto;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding-bottom: 0;
  }

  .team-carousel-card .team-card-img-wrap {
    height: auto;
    aspect-ratio: 3/4;
    width: 100%;
  }

  .team-carousel-card .team-card-info {
    padding: 18px 20px;
    box-sizing: border-box;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .team-carousel-card .team-card-bio {
    font-size: 0.72rem;
    color: var(--cream);
    line-height: 1.55;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    text-align: justify;
    padding-right: 4px;
  }

  .team-carousel-card.bio-open .team-card-bio {
    max-height: 170px;
    opacity: 1;
    margin-top: 10px;
  }

  .team-carousel-card {
    overflow: visible;
  }

  .team-carousel-card .team-card-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .team-carousel-card .team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    box-sizing: border-box;
    padding: 18px 20px;
  }

  .carousel-nav {
    display: flex;
  }
}

/* Team-full page tighter header spacing */
.team-full .section-header {
  margin-bottom: 46px;
}

/* Team page mobile bio expansion */
@media (max-width: 768px) {
  .team-card {
    overflow: visible;
  }

  .team-card .team-card-img-wrap {
    overflow: hidden;
  }

  .team-card .team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .team-card.bio-open .team-card-bio {
    max-height: 280px;
    opacity: 1;
    margin-top: 12px;
  }

  .team-card .team-card-bio {
    text-align: justify;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ============================================
   TEAM RESERVATION BUTTONS — Premium brass
   ============================================ */

.team-card-btn {
  display: inline-block;
  margin: 20px auto 0;
  padding: 11px 32px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  outline: none;
  cursor: pointer;
  transition: color 0.4s var(--ease-out-expo),
              background 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.team-card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.team-card-btn:hover {
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 97, 0.32);
}

.team-card-btn:hover::before {
  transform: translateY(0);
}

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

.team-card-btn-page {
  display: block;
  width: fit-content;
  margin: 24px auto;
  padding: 12px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  outline: none;
  cursor: pointer;
  transition: color 0.4s var(--ease-out-expo),
              background 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.team-card-btn-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.team-card-btn-page:hover {
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 169, 97, 0.32);
}

.team-card-btn-page:hover::before {
  transform: translateY(0);
}

.team-card-btn-page:active {
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION — Accessibility & preference
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-bg img {
    animation: none !important;
  }
}
