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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9e7b2f;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --gray: #8a8a8a;
  --light: #f5f5f0;
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
input,
select,
button {
  font-family: var(--font-body);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background var(--transition),
    backdrop-filter var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--white);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a:hover::after {
  color: var(--white);
  width: 100%;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3px;
  font-weight: 600 !important;
  transition:
    background var(--transition),
    transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: rgba(10, 10, 10, 0.97);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-primary.full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ─── SECTION HEADERS ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.hero-title .gold {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat span:not(.stat-num) {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat p {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

/* ─── TICKER ──────────────────────────────────────────────────── */
.ticker-wrapper {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
}
.ticker-track .dot {
  font-size: 0.5rem;
  color: rgba(0, 0, 0, 0.4);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SERVICES ────────────────────────────────────────────────── */
#services {
  padding: 5.5rem 0;
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-slow);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before {
  width: 100%;
}
.service-card.featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, #1f1b0f 0%, var(--dark2) 100%);
}
.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}
.service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.service-book {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.service-book:hover {
  color: var(--gold);
}

/* ─── ABOUT ───────────────────────────────────────────────────── */
#about {
  padding: 5.5rem 0;
  background: var(--black);
  overflow: hidden;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
  padding: 2rem;
}
.about-img-wrapper {
  position: relative;
}
.about-img-bg {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15) 0%,
    rgba(201, 168, 76, 0.03) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.about-img-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  background: var(--dark2);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}
.about-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
}
.barber-pole {
  width: 60px;
  height: 160px;
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  position: relative;
}
.pole-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    #cc0000 0px,
    #cc0000 12px,
    #ffffff 12px,
    #ffffff 24px,
    #1a3a8c 24px,
    #1a3a8c 36px,
    #ffffff 36px,
    #ffffff 48px
  );
  animation: poleRotate 4s linear infinite;
}
@keyframes poleRotate {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 200px;
  }
}
.scissors-large {
  font-size: 4rem;
  color: var(--gold);
  animation: scissorPulse 3s ease-in-out infinite;
}
@keyframes scissorPulse {
  0%,
  100% {
    transform: rotate(-10deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.05);
  }
}
.img-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.about-accent-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem 2rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4);
}
.accent-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}
.accent-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  margin-top: 0.25rem;
}
.about-text .section-label {
  display: block;
  margin-bottom: 0.75rem;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.about-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feat-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 2px;
}
.about-feat strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.25rem;
}
.about-feat p {
  color: var(--gray);
  font-size: 0.88rem;
  margin: 0;
}

/* ─── GALLERY ─────────────────────────────────────────────────── */
#gallery {
  padding: 5.5rem 0;
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}
.gallery-item.g1 {
  grid-column: 1;
  grid-row: 1;
}
.gallery-item.g2 {
  grid-column: 2;
  grid-row: 1 / 3;
}
.gallery-item.g3 {
  grid-column: 3;
  grid-row: 1;
}
.gallery-item.g4 {
  grid-column: 1;
  grid-row: 2;
}
.gallery-item.g5 {
  grid-column: 3;
  grid-row: 2;
}
.gallery-item.g6 {
  grid-column: 1 / 2;
  grid-row: 2;
  display: none;
}

.gallery-img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gi1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.gi2 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 50%, #2a1f05 100%);
}
.gi3 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #2a1010 100%);
}
.gi4 {
  background: linear-gradient(135deg, #0a1a0a 0%, #0d2b0d 50%, #0f3d0f 100%);
}
.gi5 {
  background: linear-gradient(135deg, #1a1a0a 0%, #2b2b0d 50%, #3d3d0f 100%);
}

.gallery-img::after {
  content: attr(class);
}

/* Gallery placeholder illustrations */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gallery-item .gallery-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Each gallery cell gets a unique illustrated background */
.gi1 {
  background:
    radial-gradient(
      circle at 40% 60%,
      rgba(201, 168, 76, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #0d0d14 0%, #16213e 100%);
}
.gi1::after {
  content: "✂";
  position: absolute;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.gi2 {
  background:
    radial-gradient(
      circle at 60% 40%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #111008 0%, #2a1f05 100%);
  height: 100%;
}
.gi2::after {
  content: "♦";
  position: absolute;
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gi3 {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(180, 40, 40, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #0a0a0a 0%, #2a0a0a 100%);
}
.gi3::after {
  content: "⚡";
  position: absolute;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gi4 {
  background:
    radial-gradient(
      circle at 30% 70%,
      rgba(50, 150, 50, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #0a0a0a 0%, #0a1a0a 100%);
}
.gi4::after {
  content: "★";
  position: absolute;
  font-size: 4.5rem;
  color: rgba(201, 168, 76, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gi5 {
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #0d0d0a 0%, #252511 100%);
}
.gi5::after {
  content: "◈";
  position: absolute;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ─── TEAM ────────────────────────────────────────────────────── */
#team {
  padding: 5.5rem 0;
  background: var(--black);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 168, 76, 0.25);
}
.team-avatar {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ta1 {
  background: linear-gradient(135deg, #1a1208 0%, #2a1f0a 100%);
}
.ta2 {
  background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
}
.ta3 {
  background: linear-gradient(135deg, #0a1a0a 0%, #0f2a0f 100%);
}
.avatar-icon {
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.5);
}
.team-info {
  padding: 1.75rem;
}
.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
.team-info > p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.team-specialties {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.team-specialties span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials {
  padding: 5.5rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 30rem;
  color: rgba(201, 168, 76, 0.03);
  line-height: 1;
  pointer-events: none;
}
.testimonials-slider {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}
.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.testimonial.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}
.testimonial > p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 2rem;
}
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}
.ca1 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.ca2 {
  background: linear-gradient(135deg, #c47a56, #8b4513);
}
.ca3 {
  background: linear-gradient(135deg, #5b8db8, #2e5c87);
}
.ca4 {
  background: linear-gradient(135deg, #7bae7f, #3d7a42);
}
.client-info strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}
.client-info span {
  color: var(--gray);
  font-size: 0.82rem;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.slider-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.dot-btn.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── BOOKING ─────────────────────────────────────────────────── */
#booking {
  padding: 5.5rem 0;
  background: var(--black);
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.booking-info .section-label {
  display: block;
  margin-bottom: 0.75rem;
}
.booking-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}
.booking-info > p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.contact-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.booking-form {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 2.5rem;
}
#bookingForm {
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 5px;
  font-size: 0.95rem;
  transition:
    border-color var(--transition),
    background var(--transition);
  outline: none;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group select option {
  background: var(--dark2);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.time-slot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.time-slot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 76, 0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 5rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand > p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
}
.footer-contact p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-visual {
    max-width: 460px;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.open {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.g1 {
    grid-column: 1;
    grid-row: 1;
  }
  .gallery-item.g2 {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .gallery-item.g3 {
    grid-column: 1;
    grid-row: 2;
  }
  .gallery-item.g4 {
    grid-column: 1;
    grid-row: 3;
  }
  .gallery-item.g5 {
    grid-column: 2;
    grid-row: 3;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
  }
  .hero-stats .stat-divider {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .about-inner {
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    height: 200px;
  }
  .gallery-item.g2 {
    grid-row: auto !important;
  }
  .booking-form {
    padding: 1.5rem;
  }
}

/* ─── LANGUAGE TOGGLE ──────────────────────────────────────────── */
.lang-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 2px;
  margin-left: 1rem;
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  padding: 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  font-family: Inter, sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: #c9a84c;
  color: #0b0a0a;
}
body.lang-es .lang-btn {
  color: rgba(255, 255, 255, 0.4);
}
body.lang-es .lang-btn.active {
  background: #c9a84c;
  color: #0b0a0a;
}
