/* ── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #101013;
  --bg2: #17171b;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.3);
  --gold-glow: rgba(201,168,76,0.08);
  --white: #f0f0f0;
  --muted: #6a6a6a;
  --muted-light: #8a8a8a;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Utility ────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 40px;
  display: inline-block;
}
.gold-line { width: 40px; height: 1px; background: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.6s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}
.site-header.scrolled {
  background: rgba(16,16,19,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
}
.header-logo img { height: 32px; opacity: 0.9; transition: opacity 0.3s; }
.header-logo img:hover { opacity: 1; }
.logo-text { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 1px; }
.logo-detail { font-family: var(--font-head); font-size: 18px; font-weight: 400; letter-spacing: 8px; color: var(--white); opacity: 0.95; }
.logo-barcelona { font-family: var(--font-head); font-size: 10px; font-weight: 300; letter-spacing: 5px; color: var(--gold); opacity: 0.7; }
.header-nav { display: flex; align-items: center; gap: 48px; }
.header-nav a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.4s;
  font-weight: 400;
}
.header-nav a:hover { color: var(--white); }
.header-right { display: flex; align-items: center; justify-self: end; gap: 24px; }
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--muted-light);
  transition: color 0.3s;
  position: relative;
}
.nav-icon:hover { color: var(--white); }
.nav-icon svg { width: 20px; height: 20px; }
.btn-reservar {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  color: var(--gold);
  transition: all 0.4s var(--ease-smooth);
  font-weight: 500;
}
.btn-reservar:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* User dropdown */
.user-menu { position: relative; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}
.user-menu:hover .user-dropdown,
.user-menu:focus-within .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.8rem;
  color: var(--muted-light);
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.5px;
}
.user-dropdown a:hover {
  color: var(--white);
  background: rgba(201,168,76,0.05);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}

/* Fullscreen mobile menu */
.fm {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}
.fm.open { pointer-events: auto; visibility: visible; }
.fm-bg {
  position: absolute;
  inset: 0;
  background: rgba(16,16,19,0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.fm.open .fm-bg { opacity: 1; }
.fm-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
}
.fm-link {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3.8rem);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.25;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s, color 0.25s;
  transition-timing-function: var(--ease-out);
}
.fm.open .fm-link { opacity: 1; transform: translateY(0); }
.fm.open .fm-link:nth-child(1) { transition-delay: .08s; }
.fm.open .fm-link:nth-child(2) { transition-delay: .13s; }
.fm.open .fm-link:nth-child(3) { transition-delay: .18s; }
.fm.open .fm-link:nth-child(4) { transition-delay: .23s; }
.fm.open .fm-link:nth-child(5) { transition-delay: .28s; }
.fm-link:hover { color: var(--gold); }
.fm-link::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0;
  vertical-align: middle;
  transition: all 0.3s var(--ease-out);
}
.fm-link:hover::before { width: 8px; height: 8px; margin-right: 16px; }
.fm-bottom {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0; right: 0;
  padding: 24px 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.35s, transform 0.5s 0.35s;
  transition-timing-function: var(--ease-out);
}
.fm.open .fm-bottom { opacity: 1; transform: translateY(0); }
.fm-bottom-cta {
  padding: 12px 28px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.25s;
  text-decoration: none;
}
.fm-bottom-cta:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.fm-bottom-phone {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.fm-bottom-phone:hover { color: var(--white); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.25) saturate(0.6);
  transition: transform 0.1s linear;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,19,0.5) 0%, rgba(16,16,19,0.6) 50%, var(--bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  animation: heroReveal 1.5s var(--ease-out) 0.3s forwards;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: clamp(0.65rem, 1.1vw, 0.82rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.5s var(--ease-out) 0.7s forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  background: #d4b35a;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.2);
}
.btn-outline {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  border: 1px solid rgba(240,240,240,0.2);
  color: var(--white);
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Products Intro ────────────────────────────────────── */
.products-intro {
  padding: 160px 0 120px;
  text-align: center;
}
.products-intro-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.products-intro-desc {
  font-size: 0.95rem;
  color: var(--muted-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── Product Categories ────────────────────────────────── */
.products-section {
  padding: 0 0 180px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.product-card {
  background: rgba(240,240,240,0.02);
  border: 1px solid rgba(240,240,240,0.06);
  padding: 56px 48px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.03);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-icon {
  margin-bottom: 32px;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.4s;
}
.product-card:hover .product-icon { opacity: 1; }
.product-icon svg { width: 40px; height: 40px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0;
  line-height: 1.2;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.8;
}

/* ── Brands Section ────────────────────────────────────── */
.brands-section {
  padding: 160px 0;
  background: var(--bg2);
  text-align: center;
}
.brands-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
.brands-list {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.brand-item {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--muted-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: color 0.4s;
  position: relative;
}
.brand-item:hover { color: var(--gold); }
.brand-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
}

/* ── FAQ Section ───────────────────────────────────────── */
.faq-section {
  padding: 180px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 80px;
}
.faq-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(240,240,240,0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.2px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out);
}
.faq-icon::before {
  width: 16px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px; height: 16px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 32px;
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.9;
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  padding: 200px 0;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold-dim));
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(240,240,240,0.04);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { height: 24px; opacity: 0.5; }
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.footer-links { display: flex; align-items: center; gap: 32px; }
.footer-links a {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* ── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(240,240,240,0.04);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text {
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.5;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept, .cookie-reject {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  border-radius: 50px;
}
.cookie-accept {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.cookie-accept:hover { background: #d4b35a; }
.cookie-reject {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid rgba(240,240,240,0.1);
}
.cookie-reject:hover { border-color: rgba(240,240,240,0.3); color: var(--white); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .btn-reservar { display: none; }
  .site-header { padding: 16px 24px; grid-template-columns: 1fr auto; }
  .site-header.scrolled { padding: 12px 24px; }
  .header-right { gap: 14px; }
  .container, .container-narrow { padding: 0 24px; }
  .products-intro { padding: 100px 0 80px; }
  .products-intro-title { font-size: clamp(1.4rem, 4vw, 2rem); }
  .products-section { padding: 0 0 100px; }
  .products-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .product-card { padding: 40px 32px; text-align: center; }
  .product-icon { margin-left: auto; margin-right: auto; display: flex; justify-content: center; }
  .brands-section { padding: 80px 0; }
  .brands-list { flex-direction: column; gap: 0; }
  .brand-item { padding: 12px 24px; }
  .brand-item:not(:last-child)::after { display: none; }
  .faq-section { padding: 80px 0; }
  .faq-header { margin-bottom: 48px; }
  .cta-section { padding: 100px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-social { justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 24px; gap: 16px; }
  .section-label { text-align: center; display: block; }
  .gold-line { margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .hero { height: 45vh; min-height: 320px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 0.6rem; letter-spacing: 3px; }
  .fm-link { padding: 14px 0; font-size: clamp(1.8rem, 6vw, 3rem); }
  .fm-bottom-cta { padding: 14px 32px; font-size: 0.85rem; min-height: 48px; display: inline-flex; align-items: center; }
  .fm-bottom-phone { font-size: 0.88rem; min-height: 44px; display: inline-flex; align-items: center; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 16px; }
  .products-intro { padding: 60px 0 40px; }
  .products-section { padding: 0 0 60px; }
  .product-card { padding: 32px 24px; }
  .product-name { font-size: 1.3rem; }
  .brands-section { padding: 60px 0; }
  .faq-section { padding: 60px 0; }
  .faq-question { font-size: 0.92rem; padding: 24px 0; }
  .cta-section { padding: 80px 0; }
  .cta-title { font-size: 1.4rem; }
  .hero { height: 40vh; min-height: 280px; }
  .site-header { padding: 12px 16px; }
  .header-logo img { height: 28px; }
  .fm-content { padding: 0 7vw; }
  .fm-bottom { padding: 20px 7vw; }
}
