/* ./assets/css/tokens.css */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/manrope-v20-latin/manrope-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/manrope-v20-latin/manrope-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/manrope-v20-latin/manrope-v20-latin-500.woff2') format('woff2');
}

  :root {
    --ivory: #F9F5EE;
    --green: #4F6B58;
    --green-dark: #253b2c;
    --terracotta: #A66E53;
    --slate: #2C2C2C;
    --gold: #C8A97E;
    --obsidian: #1A1A18;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', system-ui, sans-serif;
  }

/* ./assets/css/base.css */

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 169, 126, 0.38) transparent;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(200, 169, 126, 0.38);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(200, 169, 126, 0.72); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--ivory);
    color: var(--slate);
    font-family: var(--sans);
    overflow-x: hidden;
  }

  @media (pointer: fine) {
    body { cursor: none; }
  }

/* ── FOCUS VISIBLE — navegación por teclado ── */
/* Mouse click: sin anillo (no necesario) */
:focus:not(:focus-visible) { outline: none; }

/* Teclado / Tab: anillo gold visible */
:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
  /* Halo suave para visibilidad en fondos claros */
  box-shadow: 0 0 0 4px rgba(200,169,126,0.15);
}

  /* ── SCROLL PROGRESS BAR ── */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3.5px;
    background: linear-gradient(to right, var(--gold), rgba(200,169,126,0.4));
    z-index: 9999;
    width: 0%;
    pointer-events: none;
    transform-origin: left;
  }

/* ── SKELETON LOADERS — shimmer while lazy images load ── */
@keyframes imgShimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}

.img-loading {
  position: relative;
  overflow: hidden;
  background-color: #e8e3d9;
}

.img-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249,245,238,0.65) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: imgShimmer 1.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .img-loading::before { animation: none; }
}

/* ── ANIMATED GRAIN ── */
  .grain-overlay {
    position: fixed;
    inset: -50%;
    width: 200%; height: 200%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.065;
    animation: grainShift 0.12s steps(1) infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
  }

/* ── SCANLINES ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9001;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.022) 3px,
    rgba(0, 0, 0, 0.022) 4px
  );
}

@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

/* En pantallas pequeñas las scanlines se ven como bandas/rayas; el grano se mantiene pero más sutil */
@media (max-width: 768px) {
  body::after { display: none; }
  .grain-overlay { opacity: 0.03; }
}

/* ./assets/css/layout.css */
/* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    transition: background 0.6s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(26,26,24,0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 3rem;
  }

  /* ── Light-section variant ── */
  nav.nav--on-light:not(.scrolled):not(.menu-open) {
    background: rgba(249,245,238,0.82);
    backdrop-filter: blur(14px);
  }
  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-logo {
    color: var(--slate);
  }
  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-logo-seal {
    border-color: rgba(44,44,44,0.2);
  }
  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-links > li > a {
    color: rgba(30,30,30,0.78);
  }
  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-links > li > a:hover {
    color: var(--slate);
  }
  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-reservar {
    color: var(--slate);
    border-color: rgba(30,30,30,0.4);
  }
  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-toggle span {
    background: var(--slate);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--ivory);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.4s;
  }

  .nav-logo-seal {
    flex-shrink: 0;
    display: block;
    width: 56px;
    height: 56px;
    overflow: hidden;
  }
  .nav-logo-seal picture,
  .nav-logo-seal img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
  }
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(249,245,238,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.5s ease;
  }
  .nav-links a:hover { color: var(--ivory); }
  .nav-links a:hover::after { width: 100%; }

  /* ── NAV DROPDOWN ── */
  .nav-item-dropdown {
    position: relative;
    list-style: none;
  }
  /* invisible bridge that covers the gap between trigger and dropdown */
  .nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 1.6rem;
  }
  .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .nav-dropdown-trigger::before {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.5s ease;
  }
  .nav-item-dropdown:hover .nav-dropdown-trigger { color: var(--ivory); }
  .nav-item-dropdown:hover .nav-dropdown-trigger::before { width: 100%; }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 1.4rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    max-height: min(70vh, 560px);
    overflow-y: auto;
    background: rgba(20, 20, 18, 0.97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(200,169,126,0.12);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.32s cubic-bezier(0.16,1,0.3,1),
      transform 0.32s cubic-bezier(0.16,1,0.3,1);
    z-index: 600;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,169,126,0.25) transparent;
  }
  .nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  /* small caret */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px; height: 8px;
    background: rgba(20,20,18,0.97);
    border-left: 1px solid rgba(200,169,126,0.12);
    border-top: 1px solid rgba(200,169,126,0.12);
  }

  .nav-dropdown-inner {
    padding: 0.6rem 0;
  }

  .nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.65rem 1.4rem;
    text-decoration: none;
    position: relative;
    transition: background 0.2s;
  }
  .nav-dropdown-item::after { display: none; }
  .nav-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: rgba(200,169,126,0.18);
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-dropdown-item:hover::before { width: 2px; }

  .nav-dd-name {
    font-family: var(--serif);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(249,245,238,0.7);
    letter-spacing: 0.02em;
    transition: color 0.25s;
  }
  .nav-dropdown-item:hover .nav-dd-name { color: var(--ivory); }

  .nav-dd-meta {
    font-family: var(--sans);
    font-size: 0.48rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(200,169,126,0.4);
    font-weight: 300;
    transition: color 0.25s;
  }
  .nav-dropdown-item:hover .nav-dd-meta { color: rgba(200,169,126,0.7); }

  .nav-dd-floor {
    padding: 0.55rem 1.4rem 0.2rem;
    font-family: var(--sans);
    font-size: 0.44rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(200,169,126,0.45);
    font-weight: 500;
    border-top: 1px solid rgba(249,245,238,0.06);
    margin-top: 0.3rem;
  }
  .nav-dd-floor:first-child {
    border-top: none;
    margin-top: 0;
  }

  .nav-dd-divider {
    height: 1px;
    background: rgba(249,245,238,0.06);
    margin: 0.5rem 1.4rem;
  }

  .nav-links .nav-dd-all {
    display: block;
    padding: 0.55rem 1.4rem;
    font-family: var(--sans);
    font-size: 0.52rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(200,169,126,0.55);
    text-decoration: none;
    transition: color 0.25s;
  }
  .nav-links .nav-dd-all::after { display: none; }
  .nav-links .nav-dd-all:hover { color: var(--gold); }
  /* ── LANGUAGE DROPDOWN ── */
  .nav-lang-dropdown { position: relative; }

  .nav-lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: none;
    padding: 0;
    transition: color 0.3s;
  }
  .nav-lang-arrow {
    width: 7px;
    height: 5px;
    display: block;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-lang-dropdown.open .nav-lang-arrow { transform: rotate(180deg); }

  .nav-lang-menu {
    position: absolute;
    top: calc(100% + 1.2rem);
    right: 0;
    min-width: 68px;
    background: rgba(20,20,18,0.97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(200,169,126,0.12);
    padding: 0.5rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.28s cubic-bezier(0.16,1,0.3,1),
      transform 0.28s cubic-bezier(0.16,1,0.3,1);
    z-index: 600;
  }
  .nav-lang-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 12px;
    transform: rotate(45deg);
    width: 8px; height: 8px;
    background: rgba(20,20,18,0.97);
    border-left: 1px solid rgba(200,169,126,0.12);
    border-top: 1px solid rgba(200,169,126,0.12);
  }
  .nav-lang-dropdown.open .nav-lang-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-lang-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1.4rem;
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    color: rgba(249,245,238,0.4);
    cursor: none;
    transition: color 0.25s;
    position: relative;
  }
  .nav-lang-btn::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: rgba(200,169,126,0.15);
    transition: width 0.25s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-lang-btn:hover::before { width: 2px; }
  .nav-lang-btn:hover { color: rgba(249,245,238,0.8); }
  .nav-lang-btn.active { color: var(--gold); }

  nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-current {
    color: rgba(30,30,30,0.78);
  }


  /* ── FOOTER ── */
  footer {
    background: var(--obsidian);
    padding: 3rem 5rem;
    border-top: 1px solid rgba(249,245,238,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(249,245,238,0.3);
    text-decoration: none;
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    font-family: var(--sans);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(249,245,238,0.2);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: rgba(249,245,238,0.5); }
  .footer-copy {
    font-family: var(--sans);
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    color: rgba(249,245,238,0.15);
    font-weight: 300;
  }

/* ── THRESHOLD TRANSITION ── */
  .threshold {
    position: relative;
    height: 22rem;
    overflow: hidden;
    background: linear-gradient(to bottom,
      #1a1a18 0%,
      #253b2c 20%,
      #2e4a35 36%,
      #4a6b52 50%,
      #7a9880 62%,
      #b4c2b0 73%,
      #dbd6cc 84%,
      var(--ivory) 100%
    );
  }
  .threshold-noise {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  }
  .threshold-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: min(420px, 80vw);
  }
  .threshold-orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,169,126,.45), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  }
  .threshold-orn-line:last-child {
    background: linear-gradient(to left, transparent, rgba(200,169,126,.45), transparent);
    transform-origin: left;
  }
  .threshold.visible .threshold-orn-line { transform: scaleX(1); }

  .threshold-orn-center {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
  }
  .threshold-orn-diamond {
    width: 5px;
    height: 5px;
    background: rgba(200,169,126,.55);
    transform: rotate(45deg) scale(0);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .threshold-orn-diamond:nth-child(3) {
    transition-delay: 0.08s;
  }
  .threshold.visible .threshold-orn-diamond {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }

  .threshold-orn-text {
    font-family: var(--sans);
    font-size: .52rem;
    letter-spacing: .7em;
    text-transform: uppercase;
    color: rgba(200,169,126, 0);
    font-weight: 300;
    white-space: nowrap;
    transition: letter-spacing 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
                color 0.8s ease 0.25s;
  }
  .threshold.visible .threshold-orn-text {
    letter-spacing: .32em;
    color: rgba(200,169,126,.5);
  }

  /* Compact desktop nav for screens that show the full nav but start getting tight */
  @media (max-width: 1400px) {
    .nav-links { gap: 1.8rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .threshold-orn-line,
    .threshold-orn-diamond,
    .threshold-orn-text { transition: none !important; transform: none !important; opacity: 1 !important; color: rgba(200,169,126,.5) !important; letter-spacing: .32em !important; }
  }

/* ./assets/css/components/buttons.css */
/* ── MAGNETIC BUTTON ── */
  .btn-primary, .btn-secondary {
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), color 0.3s, border-color 0.3s;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.5rem;
    border: 1px solid rgba(200,169,126,0.4);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    font-weight: 400;
    cursor: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 140%;
    background: rgba(200,169,126,0.14);
    transform: skewX(-18deg) translateX(-120%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-primary:hover::before {
    transform: skewX(-18deg) translateX(0%);
  }
  .btn-primary:hover {
    border-color: rgba(200,169,126,0.7);
    color: var(--gold);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(249,245,238,0.4);
    text-decoration: none;
    font-weight: 400;
    cursor: none;
    transition: color 0.3s;
  }
  .btn-secondary span:last-child {
    width: 1.5rem; height: 1px;
    background: currentColor;
    transition: width 0.5s ease;
  }
  .btn-secondary:hover { color: rgba(249,245,238,0.8); }
  .btn-secondary:hover span:last-child { width: 2.5rem; }

/* ── FOCUS VISIBLE overrides ── */
.btn-primary:focus-visible {
  outline-offset: 6px;
  box-shadow: 0 0 0 6px rgba(200,169,126,0.1);
  border-color: rgba(200,169,126,0.7);
}

.btn-secondary:focus-visible {
  outline-offset: 6px;
  color: rgba(249,245,238,0.8);
}
.btn-secondary:focus-visible span:last-child { width: 2.5rem; }

/* ./assets/css/components/cursor.css */
/* ── CUSTOM CURSOR — fine pointer (mouse) only ── */
@media (pointer: fine) {
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(200,169,126,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  }

  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 56px; height: 56px;
    border-color: rgba(200,169,126,0.8);
  }

  /* ── ROTATING CURSOR TEXT ── */
  .cursor-text {
    position: fixed;
    width: 120px; height: 120px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .cursor-text svg {
    width: 100%; height: 100%;
    animation: rotateCursor 10s linear infinite;
  }

  .cursor-text text {
    fill: rgba(249,245,238,0.7);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  @media (prefers-reduced-motion: reduce) {
    .cursor-text svg { animation: none; }
    .cursor-ring { transition: none; }
  }
}


/* ./assets/css/components/nav-takeover.css */
/* ── NAV IMAGE TAKEOVER ── */
  .nav-takeover {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-takeover.active { opacity: 1; }
  .nav-takeover img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.5);
    transform: scale(1.04);
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-takeover.active img { transform: scale(1); }
  .nav-takeover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,24,0.6);
  }

/* ./assets/css/components/nav-fullscreen.css */
/* ══════════════════════════════════════
   NAV: TOP BAR ADDITIONS
══════════════════════════════════════ */

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Reservar CTA */
.nav-reservar {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(200,169,126,0.3);
  padding: 0.65rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-reservar span {
  position: relative;
  z-index: 1;
}
.nav-reservar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.nav-reservar:hover::before { transform: scaleX(1); }
.nav-reservar:hover { color: var(--obsidian); }

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
  outline: none;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: rgba(249,245,238,0.7);
  transform-origin: center;
  transition:
    width 0.4s cubic-bezier(0.16,1,0.3,1),
    transform 0.45s cubic-bezier(0.16,1,0.3,1),
    opacity 0.3s,
    background 0.3s;
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 14px; align-self: flex-end; }

/* Active (X) state */
.nav-toggle.active span { background: rgba(249,245,238,0.9); }
.nav-toggle.active span:nth-child(1) {
  width: 20px;
  transform: translateY(3px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  width: 20px;
  transform: translateY(-3px) rotate(-45deg);
  align-self: unset;
}


/* ══════════════════════════════════════
   NAV: FULLSCREEN MENU OVERLAY
══════════════════════════════════════ */

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}
.nav-menu.open {
  visibility: visible;
  pointer-events: all;
}

/* Curtain */
.nav-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--obsidian);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu.open .nav-menu-bg { transform: scaleY(1); }

/* Noise texture inside menu */
.nav-menu-noise {
  position: absolute;
  inset: 0;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

/* Inner two-column layout */
.nav-menu-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 56% 1fr;
  gap: 4rem;
  padding: 0 5rem;
  opacity: 0;
  transition: opacity 0.25s 0.45s;
}
.nav-menu.open .nav-menu-inner { opacity: 1; }

/* ── Left: menu list ── */
.nav-menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem;
}

.nav-menu-item {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(249,245,238,0.055);
  position: relative;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.16,1,0.3,1),
    transform 0.65s cubic-bezier(0.16,1,0.3,1),
    border-color 0.3s;
}
.nav-menu.open .nav-menu-item { opacity: 1; transform: translateY(0); }

/* Stagger */
.nav-menu.open .nav-menu-item:nth-child(1)  { transition-delay: 0.30s; }
.nav-menu.open .nav-menu-item:nth-child(2)  { transition-delay: 0.34s; }
.nav-menu.open .nav-menu-item:nth-child(3)  { transition-delay: 0.38s; }
.nav-menu.open .nav-menu-item:nth-child(4)  { transition-delay: 0.42s; }
.nav-menu.open .nav-menu-item:nth-child(5)  { transition-delay: 0.46s; }
.nav-menu.open .nav-menu-item:nth-child(6)  { transition-delay: 0.50s; }
.nav-menu.open .nav-menu-item:nth-child(7)  { transition-delay: 0.54s; }
.nav-menu.open .nav-menu-item:nth-child(8)  { transition-delay: 0.58s; }
.nav-menu.open .nav-menu-item:nth-child(9)  { transition-delay: 0.62s; }

/* Gold underline on hover */
.nav-menu-item::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  height: 1px;
  width: 0;
  background: rgba(200,169,126,0.45);
  transition: width 0.55s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu-item:hover::after { width: 100%; }

/* Number */
.nm-num {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  color: rgba(200,169,126,0.38);
  font-weight: 300;
  min-width: 2.2ch;
  transition: color 0.3s;
}
.nav-menu-item:hover .nm-num { color: var(--gold); }

/* Label */
.nm-label {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: rgba(249,245,238,0.6);
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    color 0.35s,
    transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu-item:hover .nm-label {
  color: var(--ivory);
  transform: translateX(7px);
}

/* Italic sub-label for Hotel */
.nm-sub {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(200,169,126,0.4);
  letter-spacing: 0.04em;
  margin-left: 0.2rem;
  align-self: center;
  transition: color 0.3s;
}
.nav-menu-item:hover .nm-sub { color: rgba(200,169,126,0.7); }

/* Arrow */
.nm-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  color: transparent;
  letter-spacing: 0;
  transform: translateX(-10px);
  transition:
    color 0.35s,
    transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu-item:hover .nm-arrow {
  color: var(--gold);
  transform: translateX(0);
}

/* ── Right: preview + meta ── */
.nav-menu-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 8rem 0 5rem;
}

/* Preview image */
.nav-menu-preview {
  flex: 1;
  max-height: 62vh;
  overflow: hidden;
  position: relative;
}
.nav-menu-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,24,0.3) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.nav-menu-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.5);
  transform: scale(1.07);
  opacity: 0;
  transition:
    opacity 0.5s cubic-bezier(0.16,1,0.3,1),
    transform 1s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.nav-menu-preview img.visible {
  opacity: 1;
  transform: scale(1);
}

/* Preview decorative label */
.nav-menu-preview-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.48rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(249,245,238,0.3);
  font-weight: 300;
}

/* Meta section */
.nav-menu-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ── Language toggle visible in top nav ── */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249,245,238,0.32);
  padding: 0.2rem 0;
  transition: color 0.25s;
}
.nav-lang-btn.active         { color: var(--gold); }
.nav-lang-btn:hover:not(.active) { color: rgba(249,245,238,0.65); }
.nav-lang-sep {
  font-size: 0.5rem;
  color: rgba(249,245,238,0.14);
  user-select: none;
  pointer-events: none;
}
/* Light-nav overrides */
nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-btn {
  color: rgba(44,44,44,0.28);
}
nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-btn.active {
  color: var(--slate);
}
nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-sep {
  color: rgba(44,44,44,0.14);
}
/* Dropdown has a dark bg — restore light colors regardless of nav state */
nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-menu .nav-lang-btn {
  color: rgba(249,245,238,0.4);
}
nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-menu .nav-lang-btn.active {
  color: var(--gold);
}
nav.nav--on-light:not(.scrolled):not(.menu-open) .nav-lang-menu .nav-lang-btn:hover {
  color: rgba(249,245,238,0.8);
}

/* Language toggle */
.nav-menu-lang {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nm-lang {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: rgba(249,245,238,0.28);
  cursor: none;
  transition: color 0.3s;
  padding: 0;
}
.nm-lang.active { color: var(--gold); }
.nm-lang:hover:not(.active) { color: rgba(249,245,238,0.6); }
.nav-menu-lang span {
  width: 1px;
  height: 10px;
  background: rgba(249,245,238,0.12);
  display: block;
}

/* Contact details */
.nav-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.nav-menu-contact a,
.nav-menu-contact span {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  color: rgba(249,245,238,0.22);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.nav-menu-contact a:hover { color: rgba(249,245,238,0.5); }

.nm-phone-icon {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  vertical-align: -0.1em;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

/* Coordinates */
.nav-menu-coords {
  font-family: var(--sans);
  font-size: 0.48rem;
  letter-spacing: 0.26em;
  color: rgba(249,245,238,0.1);
  font-weight: 300;
}

/* Bottom decorative line */
.nav-menu-bottom--mobile { display: none; }
.nav-menu-bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  right: 5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu-bottom-line {
  flex: 1;
  height: 1px;
  background: rgba(249,245,238,0.05);
}
.nav-menu-bottom-est {
  font-family: var(--sans);
  font-size: 0.45rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249,245,238,0.1);
  font-weight: 300;
  white-space: nowrap;
}


/* ══════════════════════════════════════
   HABITACIONES SUB-PANEL
══════════════════════════════════════ */

.nav-menu-item.nm-has-sub {
  display: block;
  padding: 0;
}

.nm-trigger {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  text-decoration: none;
  padding: 0.85rem 0;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
.nm-has-sub:hover .nm-trigger .nm-label {
  color: var(--ivory);
  transform: translateX(7px);
}
.nm-has-sub:hover .nm-trigger .nm-num { color: var(--gold); }

.nm-chevron {
  margin-left: auto;
  display: flex;
  align-items: center;
  color: rgba(200,169,126,0.3);
  font-size: inherit;
  transform: none;
  transition:
    transform 0.4s cubic-bezier(0.16,1,0.3,1),
    color 0.35s;
}
.nm-has-sub:hover .nm-chevron { color: var(--gold); }
.nm-has-sub.open .nm-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.nm-sub-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
  padding-left: 3.6rem;
}
.nm-has-sub.open .nm-sub-panel {
  max-height: 60rem;
}

.nm-sub-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0;
  text-decoration: none;
  color: rgba(249,245,238,0.5);
  border-bottom: 1px solid rgba(249,245,238,0.035);
  transition: padding-left 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nm-sub-link:hover { padding-left: 0.5rem; }

.nm-sub-name {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(249,245,238,0.5);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.nm-sub-link:hover .nm-sub-name { color: var(--ivory); }

.nm-sub-meta {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,169,126,0.25);
  font-weight: 300;
  transition: color 0.25s;
}
.nm-sub-link:hover .nm-sub-meta { color: rgba(200,169,126,0.5); }

.nm-sub-floor {
  font-family: var(--sans);
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,169,126,0.4);
  font-weight: 500;
  padding: 0.6rem 0 0.15rem;
  border-top: 1px solid rgba(249,245,238,0.04);
  margin-top: 0.2rem;
}
.nm-sub-floor:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0.2rem;
}

.nm-sub-divider {
  height: 1px;
  background: rgba(249,245,238,0.05);
  margin: 0.3rem 0;
}

.nm-sub-all {
  display: block;
  padding: 0.55rem 0 0.3rem;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.nm-sub-all:hover { opacity: 1; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (min-width: 1201px) {
  .nav-toggle { display: none; }
}

/* Compact top-bar for medium screens (hamburger visible, links hidden) */
@media (max-width: 1200px) {
  .nav-reservar { padding: 0.55rem 1.1rem; }
}

/* Single-column hamburger overlay for small screens */
@media (max-width: 900px) {
  .nav-menu-inner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .nav-menu-side { display: none; }
  .nav-menu-list {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 7rem 2rem 6rem;
    justify-content: flex-start;
  }
  .nm-label { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .nm-sub-panel { padding-left: 2.4rem; }
  .nm-sub-name { font-size: 0.82rem; }
  .nav-menu-bottom:not(.nav-menu-bottom--mobile) { display: none; }
  .nav-menu-bottom--mobile {
    display: flex;
    padding: 2rem 0 1rem;
    pointer-events: none;
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu-bg,
  .nav-menu-inner,
  .nav-menu-item,
  .nav-menu-preview img,
  .nm-label,
  .nm-arrow,
  .nav-toggle span { transition: none !important; }
}


/* ./assets/css/components/preloader.css */
/* ── PRELOADER COMPLETE ── */

#preloader{
  position:fixed;
  inset:0;
  z-index:999999;
  background:#11110f;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:
    opacity 1.2s cubic-bezier(.16,1,.3,1),
    visibility 1.2s ease;
}

#preloader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.pre-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(79,107,88,.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(166,110,83,.12), transparent 40%),
    #11110f;
}

.pre-noise{
  position:absolute;
  inset:-50%;
  width:200%;
  height:200%;
  opacity:.05;
  animation:grainShift .15s steps(1) infinite;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)'/%3E%3C/svg%3E");
}

.pre-content{
  position:relative;
  z-index:3;
  text-align:center;
}

.pre-est{
  font-family:var(--sans);
  font-size:.62rem;
  letter-spacing:.38em;
  text-transform:uppercase;
  color:rgba(249,245,238,.35);
  margin-bottom:2rem;
  opacity:0;
  animation:fadeIn 1s ease .4s forwards;
}

.pre-title{
  overflow:hidden;
}

.pre-title-line{
  display:block;
  font-family:var(--serif);
  font-size:clamp(4rem,11vw,10rem);
  line-height:.85;
  font-weight:300;
  color:var(--ivory);

  transform:translateY(120%);
  animation:preTitleReveal 1.4s cubic-bezier(.16,1,.3,1) forwards;
}

.pre-title-line:nth-child(2){
  animation-delay:.12s;
  font-style:italic;
  color:#d9cfbf;
}

.pre-bar-wrap{
  width:min(280px,60vw);
  height:1px;
  margin:2.5rem auto 1rem;
  background:rgba(249,245,238,.08);
  overflow:hidden;
}

.pre-bar{
  width:0%;
  height:100%;
  background:var(--gold);
}

.pre-counter{
  font-family:var(--sans);
  font-size:.62rem;
  letter-spacing:.32em;
  color:rgba(249,245,238,.45);
}



/* ./assets/css/components/reveal.css */
/* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  

  

  /* ── IMAGE CLIP REVEAL (gallery — horizontal wipe) ── */
  .clip-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s cubic-bezier(0.77,0,0.175,1);
  }
  .gallery-item.reveal.visible .clip-reveal {
    clip-path: inset(0 0% 0 0);
  }

  /* ── REVEAL-IMG (vertical wipe from bottom — general images) ──
     Works standalone (.reveal-img.visible) or triggered by
     an ancestor (.reveal.visible .reveal-img). */
  .reveal-img {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.3s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
  }
  .reveal-img.visible,
  .reveal.visible .reveal-img {
    clip-path: inset(0 0 0% 0);
  }

/* ./assets/css/components/page-transitions.css */
/* ══════════════════════════════════════
   PAGE TRANSITIONS — cinematic curtain wipe
══════════════════════════════════════ */

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.pcp {
  position: absolute;
  inset: 0;
  will-change: transform;
}

/* Default: panels collapsed at bottom, hidden */
.pcp-dark {
  background: #11110f;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.52s cubic-bezier(0.87, 0, 0.13, 1);
}

.pcp-warm {
  background: #1d1810;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.48s cubic-bezier(0.87, 0, 0.13, 1) 0.06s;
}

/* Logo mark — visible only while fully covered (new page load) */
.pcp-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.pcp-logo img {
  width: clamp(52px, 6vw, 80px);
  filter: brightness(0) invert(1);
  opacity: 0.38;
  display: block;
}

/* ── COVERED: both panels full, no transition (instant snap on new page load) ── */
.page-curtain.covered .pcp-dark,
.page-curtain.covered .pcp-warm {
  transform: scaleY(1);
  transform-origin: top center;
  transition: none;
}

/* Logo fades in after panels are fully covering */
.page-curtain.covered .pcp-logo {
  opacity: 1;
  transition: opacity 0.5s ease 0.12s;
}

/* ── ENTERING: panels retract upward, revealing the new page ── */
.page-curtain.entering .pcp-warm {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.74s cubic-bezier(0.87, 0, 0.13, 1) 0.08s;
}
.page-curtain.entering .pcp-dark {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.80s cubic-bezier(0.87, 0, 0.13, 1) 0.15s;
}

/* Logo fades out as panels begin to retract */
.page-curtain.entering .pcp-logo {
  opacity: 0;
  transition: opacity 0.28s ease;
}

/* ── EXITING: panels grow from bottom to cover the page ── */
.page-curtain.exiting .pcp-dark {
  transform: scaleY(1);
  transform-origin: bottom center;
  transition: transform 0.52s cubic-bezier(0.87, 0, 0.13, 1);
}
.page-curtain.exiting .pcp-warm {
  transform: scaleY(1);
  transform-origin: bottom center;
  transition: transform 0.48s cubic-bezier(0.87, 0, 0.13, 1) 0.06s;
}

/* Block interaction while exit plays */
.page-curtain.exiting {
  pointer-events: all;
}

@media (prefers-reduced-motion: reduce) {
  .pcp-dark, .pcp-warm, .pcp-logo { transition: none !important; }
}


/* ./assets/css/typography-effects.css */
 /* ── TEXT SCRAMBLE ── */
  .scramble { display: inline-block; }

/* ── SPLIT TEXT LINE-REVEAL ── */
.split-line-wrap {
  overflow: hidden;
  display: block;
}
.split-line {
  display: block;
  transform: translateY(105%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-line.visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .split-line {
    transform: none !important;
    transition: none !important;
  }
}


/* ./assets/css/sections/marquee.css */
/* ── MARQUEE BIDIRECCIONAL ── */
  .marquee-bi {
    background: var(--ivory);
    overflow: hidden;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(44,44,44,0.06);
    border-bottom: 1px solid rgba(44,44,44,0.06);
  }
  .marquee-bi-row {
    display: flex;
    align-items:center;
    white-space: nowrap;
    width: max-content;
    margin-bottom: 0.5rem;
  }
  .marquee-bi-row:last-child { margin-bottom: 0; }
  .marquee-bi-row.fwd { animation: marqueeFwd 40s linear infinite; }
  .marquee-bi-row.rev { animation: marqueeRev 40s linear infinite; }
  .marquee-bi:hover .marquee-bi-row { animation-play-state: paused; }
  .marquee-bi-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.8vw, 2.4rem);
    font-weight: 300;
    color: rgba(44,44,44,0.1);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .marquee-bi-item.hi { color: rgba(44,44,44,0.55); font-style: italic; }
  .marquee-bi-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(200,169,126,0.5);
    flex-shrink: 0;
  }

  /* ── MARQUEE TICKER ── */
  .marquee-section {
    background: var(--green-dark);
    overflow: hidden;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(200,169,126,0.12);
    border-bottom: 1px solid rgba(200,169,126,0.12);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 38s linear infinite;
    width: max-content;
  }
  .marquee-section:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem;
    font-family: var(--serif);
    font-size: 0.85rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(249,245,238,0.45);
    letter-spacing: 0.05em;
  }
  .marquee-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
  }

/* ./assets/css/animations.css */
/* ── ANIMATIONS ── */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  @keyframes marqueeFwd {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes marqueeRev {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }

  @keyframes grainShift {
    0%   { transform: translate(0px, 0px); }
    10%  { transform: translate(-6px, 4px); }
    20%  { transform: translate(5px, -5px); }
    30%  { transform: translate(-3px, 6px); }
    40%  { transform: translate(6px, 2px); }
    50%  { transform: translate(-5px, -4px); }
    60%  { transform: translate(3px, 6px); }
    70%  { transform: translate(-6px, -2px); }
    80%  { transform: translate(4px, 5px); }
    90%  { transform: translate(-2px, -6px); }
    100% { transform: translate(0px, 0px); }
  }

  @keyframes preTitleReveal{
  to{
    transform:translateY(0);
  }
}

@keyframes grainMove{

  0%{
    background-position:0 0;
  }

  20%{
    background-position:12px -8px;
  }

  40%{
    background-position:-10px 6px;
  }

  60%{
    background-position:8px 14px;
  }

  80%{
    background-position:-6px -10px;
  }

  100%{
    background-position:0 0;
  }

}

 @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @keyframes rotateCursor{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

/* ── CINEMATIC NOISE MOVEMENT ── */

.hero-noise,
.experiences-noise,
.contact-noise,
.threshold-noise{

  animation:grainMove .18s steps(2) infinite;

  will-change:background-position;
}

/* ./assets/css/responsive.css */
/* ── RESPONSIVE ── */
  /* Nav collapses to hamburger at 1200px */
  @media (max-width: 1200px) {
    nav { padding: 1.5rem 2rem; }
    nav.scrolled { padding: 1rem 2rem; }
    .nav-links { display: none; }
    .nav-right { gap: 0.8rem; }
    .nav-lang-current { font-size: 0.55rem; gap: 0.25rem; padding: 0.3rem 0; }
    .nav-lang-arrow { width: 8px; height: 8px; }
  }

  @media (max-width: 900px) {
    .hero-content { padding: 0 2rem 0 2.5rem; }
    .hero-label-left, .hero-coords-right { display: none; }
    #story, #experiences, #contact { padding: 6rem 2.5rem; }
    .experiences-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .exp-card:first-child { grid-row: auto; }
    .exp-card { min-height: 280px; }
    footer { padding: 2rem; flex-direction: column; align-items: flex-start; }
    .contact-actions { gap: 1.25rem; }
    .contact-phones { flex-direction: column; gap: 1rem; }
    .contact-phone-divider { width: 1px; height: 1rem; }
    .contact-phones:has(.btn-secondary:hover) .contact-phone-divider { width: 1px; height: 1.5rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
  }

/* ./assets/css/components/footer.css */
/* ══════════════════════════════════════════════════════════
   SITE FOOTER — FULL
   Prefix: ft-
══════════════════════════════════════════════════════════ */

.site-footer {
  display: block;
  padding: 0;
  border-top: none;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

.ft-top-rule {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 169, 126, 0.22) 20%,
    rgba(200, 169, 126, 0.22) 80%,
    transparent
  );
}


/* ══ MAIN GRID ══════════════════════════════════════════ */

.ft-main {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5.5rem 5rem 5rem;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 7rem;
  align-items: start;
}


/* ══ BRAND ══════════════════════════════════════════════ */

.ft-brand {
  display: flex;
  flex-direction: column;
}

.ft-logo-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  margin-bottom: 2.4rem;
  transition: opacity 0.3s;
}

.ft-logo-link:hover {
  opacity: 0.75;
}

.ft-logo-mark {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.ft-logo-seal {
  flex-shrink: 0;
  display: block;
  width: 84px;
  height: 84px;
  overflow: hidden;
}
.ft-logo-seal picture,
.ft-logo-seal img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.ft-logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ft-logo-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.72);
  line-height: 1;
  display: block;
}

.ft-logo-est {
  font-family: var(--sans);
  font-size: 0.46rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.72);
  display: block;
}

.ft-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(249, 245, 238, 0.38);
  margin: 0 0 2.2rem;
  font-weight: 300;
}

.ft-location {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(249, 245, 238, 0.05);
}

.ft-coords {
  font-family: var(--sans);
  font-size: 0.51rem;
  letter-spacing: 0.26em;
  color: rgba(200, 169, 126, 0.72);
  text-transform: uppercase;
}

.ft-address-short {
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  color: rgba(249, 245, 238, 0.45);
  font-weight: 300;
  line-height: 1.7;
}

.ft-social {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.ft-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(249, 245, 238, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249, 245, 238, 0.45);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.ft-social-link:hover {
  border-color: rgba(200, 169, 126, 0.38);
  color: rgba(200, 169, 126, 0.65);
}

.ft-social-link svg {
  width: 13px;
  height: 13px;
}


/* ══ NAV COLUMNS ════════════════════════════════════════ */

/* Override global `nav { position: fixed }` from layout.css */
.site-footer nav {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  background: none;
  backdrop-filter: none;
  padding: 0;
  transition: none;
}

.ft-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  padding-top: 0.1rem;
  align-items: start;
  justify-content: start;
}

.ft-col-title {
  font-family: var(--sans);
  font-size: 0.47rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.80);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(249, 245, 238, 0.05);
}

.ft-col ul {
  list-style: none;
}

.ft-col li {
  border-bottom: 1px solid rgba(249, 245, 238, 0.04);
}

.ft-col li:last-child {
  border-bottom: none;
}

.ft-col a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.52);
  text-decoration: none;
  display: block;
  padding: 0.52rem 0;
  transition: color 0.25s, padding-left 0.25s;
  line-height: 1.4;
}

.ft-col a:hover {
  color: rgba(249, 245, 238, 0.62);
  padding-left: 0.45rem;
}

/* Contact block inside Contacto column */
.ft-col-contact {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
}

.ft-contact-label {
  font-family: var(--sans);
  font-size: 0.42rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.65);
  margin-top: 0.9rem;
  margin-bottom: 0.18rem;
}

.ft-contact-label:first-child {
  margin-top: 0;
}

.ft-contact-line {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.52);
  text-decoration: none;
  line-height: 1.72;
  transition: color 0.25s;
  display: block;
}

a.ft-contact-line:hover {
  color: rgba(249, 245, 238, 0.42);
}

.ft-phone-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ft-phone-icon {
  width: 0.65rem;
  height: 0.65rem;
  flex-shrink: 0;
}


/* ══ BOTTOM BAR ═════════════════════════════════════════ */

.ft-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(249, 245, 238, 0.05);
  max-width: 100%;
  padding: 1.75rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ft-copy {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: rgba(249, 245, 238, 0.42);
  font-weight: 300;
}

.ft-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ft-legal a,
.ft-legal button {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.42);
  text-decoration: none;
  transition: color 0.25s;
  padding: 0 0.9rem;
  border-right: 1px solid rgba(249, 245, 238, 0.07);
}

.ft-legal a:first-child {
  padding-left: 0;
}

.ft-legal a:last-child,
.ft-legal button:last-child {
  border-right: none;
  padding-right: 0;
}

.ft-legal a:hover {
  color: rgba(249, 245, 238, 0.36);
}


/* ══ CREDIT LINE ════════════════════════════════════════ */

.ft-credit {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(249, 245, 238, 0.05);
  padding: 1rem 5rem;
  text-align: center;
}

.ft-credit a {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.42);
  text-decoration: none;
  transition: color 0.25s;
}

.ft-credit a:hover {
  color: rgba(249, 245, 238, 0.5);
}


/* ══ RESPONSIVE ═════════════════════════════════════════ */

@media (max-width: 1100px) {
  .ft-main {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 4.5rem 4rem 4rem;
  }

  .ft-brand {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .ft-main {
    padding: 4rem 2.5rem 3.5rem;
  }

  .ft-nav {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .ft-bottom {
    padding: 1.5rem 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .ft-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .ft-legal a,
  .ft-legal button {
    padding: 0;
    border-right: none;
  }

  .ft-credit {
    padding: 1rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .ft-nav {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ft-location {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}


/* ./assets/css/components/cookie-banner.css */
/* ══════════════════════════════════════
   COOKIE CONSENT — RGPD / LSSI-CE
══════════════════════════════════════ */

/* ── Banner (bottom bar) ─────────────────────── */

#ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--obsidian);
  border-top: 1px solid rgba(200, 169, 126, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.55s ease;
  will-change: transform;
}

#ck-banner.ck-visible {
  transform: translateY(0);
  opacity: 1;
}

.ck-b-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ck-b-text {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.7);
  line-height: 1.65;
  flex: 1;
  letter-spacing: 0.01em;
}

.ck-b-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.ck-b-link:hover { border-bottom-color: var(--gold); }

.ck-b-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

/* ── Shared buttons ───────────────────────────── */

.ck-btn {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  line-height: 1;
}

.ck-primary {
  background: var(--gold);
  color: var(--obsidian);
}

.ck-primary:hover {
  background: var(--ivory);
}

.ck-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(249, 245, 238, 0.3);
}

.ck-outline:hover {
  border-color: rgba(249, 245, 238, 0.7);
  background: rgba(249, 245, 238, 0.04);
}

.ck-ghost {
  background: transparent;
  color: rgba(249, 245, 238, 0.45);
  padding-left: 0;
  padding-right: 0;
}

.ck-ghost:hover { color: var(--ivory); }

/* ── Panel (drawer) ───────────────────────────── */

#ck-panel {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  pointer-events: none;
}

#ck-panel.ck-panel-open {
  pointer-events: all;
}

.ck-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

#ck-panel.ck-panel-open .ck-overlay {
  opacity: 1;
}

.ck-drawer {
  position: relative;
  background: var(--obsidian);
  border-left: 1px solid rgba(200, 169, 126, 0.15);
  width: min(460px, 100vw);
  height: 100%;
  padding: 3.5rem 2.5rem 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
}

#ck-panel.ck-panel-open .ck-drawer {
  transform: translateX(0);
}

.ck-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: rgba(249, 245, 238, 0.4);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.ck-close:hover { color: var(--ivory); }

.ck-drawer-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.02em;
  font-style: italic;
  line-height: 1.2;
}

.ck-drawer-desc {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.55);
  line-height: 1.75;
  margin-top: -0.5rem;
}

/* ── Preference items ─────────────────────────── */

.ck-prefs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(200, 169, 126, 0.12);
}

.ck-pref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(200, 169, 126, 0.12);
}

.ck-pref-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}

.ck-pref-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ck-pref-desc {
  font-family: var(--sans);
  font-size: 0.71rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.45);
  line-height: 1.55;
}

/* ── Toggle switch ────────────────────────────── */

.ck-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.ck-toggle-locked {
  cursor: default;
  opacity: 0.45;
}

.ck-track {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: rgba(249, 245, 238, 0.1);
  border: 1px solid rgba(249, 245, 238, 0.18);
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}

.ck-toggle[aria-checked="true"] .ck-track,
.ck-toggle-locked .ck-track {
  background: rgba(200, 169, 126, 0.25);
  border-color: rgba(200, 169, 126, 0.6);
}

.ck-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(249, 245, 238, 0.35);
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: left 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s;
}

.ck-toggle[aria-checked="true"] .ck-thumb,
.ck-toggle-locked .ck-thumb {
  left: 21px;
  background: var(--gold);
}

/* ── Drawer footer ────────────────────────────── */

.ck-drawer-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.ck-drawer-actions .ck-btn {
  flex: 1;
}

.ck-policy-link {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(249, 245, 238, 0.3);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}

.ck-policy-link:hover { color: var(--gold); }

/* ── Footer "Gestionar cookies" button ─────────── */

.ck-manage-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.ck-manage-btn:hover { color: var(--gold); }

/* ── Responsive ───────────────────────────────── */

@media (max-width: 900px) {
  .ck-b-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .ck-b-actions {
    flex-wrap: wrap;
  }

  .ck-ghost {
    order: 3;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
}

@media (max-width: 600px) {
  .ck-drawer {
    width: 100vw;
    border-left: none;
    border-top: 1px solid rgba(200, 169, 126, 0.15);
    height: auto;
    max-height: 92dvh;
    transform: translateY(100%);
  }

  #ck-panel {
    align-items: flex-end;
  }

  #ck-panel.ck-panel-open .ck-drawer {
    transform: translateY(0);
  }
}


/* ./assets/css/components/floating-contact.css */
/* ══════════════════════════════════════════════════════════
   FLOATING CONTACT — WhatsApp / Llamada directa
   Prefix: fc-
══════════════════════════════════════════════════════════ */

.floating-contact {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9050;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  transition: bottom 0.45s cubic-bezier(0.16,1,0.3,1),
              opacity 0.35s ease,
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ── Toggle (botón principal) ── */
.fc-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--obsidian);
  border: 1px solid rgba(200,169,126,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  box-shadow: 0 14px 36px rgba(0,0,0,0.32);
  transition: border-color 0.35s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}

.fc-toggle::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,126,0.4);
  animation: fc-pulse 3.4s ease-out infinite;
  pointer-events: none;
}

@keyframes fc-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fc-toggle:hover,
.floating-contact.is-open .fc-toggle {
  border-color: rgba(200,169,126,0.8);
  transform: scale(1.05);
}

.fc-toggle-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.fc-toggle-icon svg { width: 100%; height: 100%; display: block; }

.fc-icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.5);
}

.floating-contact.is-open .fc-icon-chat {
  opacity: 0;
  transform: rotate(45deg) scale(0.5);
}

.floating-contact.is-open .fc-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ── Menú de acciones ── */
.fc-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  padding-bottom: 0.85rem;
  pointer-events: none;
}

.floating-contact.is-open .fc-menu,
.floating-contact.is-hover .fc-menu {
  pointer-events: auto;
}

.fc-action {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.3rem 0.55rem 0.55rem;
  background: var(--obsidian);
  border: 1px solid rgba(200,169,126,0.22);
  border-radius: 999px;
  color: rgba(249,245,238,0.85);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.35s ease,
              transform 0.45s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s, color 0.3s;
}

.floating-contact.is-open .fc-action,
.floating-contact.is-hover .fc-action,
.floating-contact:focus-within .fc-action {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* La acción más cercana al botón (WhatsApp) aparece primero */
.fc-action:nth-child(1) { transition-delay: 0.1s; }
.fc-action:nth-child(2) { transition-delay: 0.02s; }

.fc-action:hover {
  border-color: rgba(200,169,126,0.55);
  color: var(--gold);
}

.fc-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(200,169,126,0.18);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.fc-action-icon svg { width: 15px; height: 15px; display: block; }
.fc-whatsapp .fc-action-icon svg { width: 14px; height: 14px; }

.fc-whatsapp .fc-action-icon { color: var(--green); }
.fc-whatsapp:hover .fc-action-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--ivory);
}

/* ── Ocultar mientras el menú a pantalla completa o el panel de cookies están abiertos ── */
body:has(.nav-menu.open) .floating-contact,
body:has(#ck-panel.ck-panel-open) .floating-contact {
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
}

/* ── Desplazar hacia arriba mientras el banner de cookies está visible ── */
body:has(#ck-banner.ck-visible) .floating-contact {
  bottom: 7.5rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .floating-contact { right: 1.1rem; bottom: 1.1rem; }
  .fc-menu { padding-bottom: 0.65rem; }
  .fc-toggle { width: 52px; height: 52px; }
  .fc-toggle-icon { width: 20px; height: 20px; }
  .fc-action { padding: 0.5rem 1.1rem 0.5rem 0.5rem; font-size: 0.58rem; gap: 0.7rem; }
  .fc-action-icon { width: 30px; height: 30px; }

  body:has(#ck-banner.ck-visible) .floating-contact { bottom: 14rem; }
}

/* ── Movimiento reducido ── */
@media (prefers-reduced-motion: reduce) {
  .fc-toggle::before { animation: none; opacity: 0; }
  .fc-toggle-icon, .fc-action { transition: opacity 0.2s ease; }
  .fc-icon-close,
  .floating-contact.is-open .fc-icon-chat,
  .floating-contact.is-open .fc-icon-close {
    transform: none;
  }
}


/* ./assets/css/el-pazo.css */
/* ══════════════════════════════════════════════════════════
   HOTEL — PAGE STYLES
   Prefijo: htl-
══════════════════════════════════════════════════════════ */


/* ══ HERO ════════════════════════════════════════════════ */

.htl-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.htl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.htl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.htl-hero.loaded .htl-hero-bg img {
  transform: scale(1);
}

.htl-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,26,24,0.45) 0%,
      rgba(26,26,24,0.2) 30%,
      rgba(26,26,24,0.55) 70%,
      rgba(26,26,24,0.96) 100%
    );
  z-index: 1;
}

.htl-hero-ghost {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(10rem, 28vw, 32rem);
  color: rgba(200, 169, 126, 0.04);
  letter-spacing: -0.04em;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

.htl-hero-side-left,
.htl-hero-side-right {
  position: absolute;
  font-family: var(--sans);
  font-size: 0.57rem;
  letter-spacing: 0.26em;
  color: rgba(249, 245, 238, 0.28);
  text-transform: uppercase;
  z-index: 2;
  writing-mode: vertical-rl;
}

.htl-hero-side-left {
  left: 2.5rem;
  bottom: 4rem;
  transform: rotate(180deg);
}

.htl-hero-side-right {
  right: 2.5rem;
  bottom: 4rem;
}

.htl-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 0 2rem;
}

.htl-hero-pre {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.htl-hero-pre-line {
  height: 1px;
  width: 3.5rem;
  background: var(--gold);
  opacity: 0.5;
}

.htl-hero-pre span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.88;
  margin: 0 0 2rem;
  letter-spacing: -0.025em;
}

.htl-hero-line1 {
  display: block;
  font-size: clamp(5.5rem, 15vw, 14rem);
  opacity: 0; transform: translateY(36px);
  animation: slideUp 1.2s cubic-bezier(0.16,1,0.3,1) 1.0s forwards;
}

.htl-hero-line2 {
  display: block;
  font-size: clamp(3.8rem, 10vw, 9rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(36px);
  animation: slideUp 1.2s cubic-bezier(0.16,1,0.3,1) 1.25s forwards;
}

.htl-hero-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.3);
  margin: 0;
}

.htl-hero-scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  color: rgba(249, 245, 238, 0.3);
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.htl-hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200, 169, 126, 0.5), transparent);
  animation: htlScrollPulse 2.2s ease infinite;
}

@keyframes htlScrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.92); }
  50%       { opacity: 1;   transform: scaleY(1.08); }
}


/* ══ INTRO EDITORIAL ════════════════════════════════════ */

.htl-intro {
  background: var(--ivory);
  padding: 9rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.htl-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4.5rem;
}

.htl-intro-label {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 4rem;
}

.htl-intro-label-line {
  height: 1px;
  width: 2.5rem;
  background: var(--gold);
}

.htl-intro-label span {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-intro-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--slate);
  margin: 0 0 5rem;
  letter-spacing: -0.025em;
  max-width: 900px;
  border: none;
  padding: 0;
}

.htl-intro-quote em {
  font-style: italic;
  color: var(--terracotta);
}

.htl-intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  padding-top: 3.5rem;
  margin-bottom: 5rem;
}

.htl-intro-col p {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.92;
  color: rgba(44, 44, 44, 0.62);
  margin: 0;
}

.htl-intro-col p + p {
  margin-top: 1.3rem;
}

.htl-intro-datos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  padding: 2.5rem 0;
}

.htl-intro-dato {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(44, 44, 44, 0.07);
  padding: 0 1.5rem;
}

.htl-intro-dato:last-child {
  border-right: none;
}

.htl-intro-dato-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.htl-intro-dato-suffix {
  font-size: 0.45em;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
}

/*.htl-intro-dato-infinity {
  font-style: italic;
  font-size: 1em;
  color: var(--gold);
  display: inline-block;
  transform: scale(2.5);
}*/

.htl-intro-dato-divider {
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 0.9rem;
  opacity: 0.55;
}

.htl-intro-dato-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.38);
}

.htl-intro-ghost {
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  font-family: var(--serif);
  font-size: clamp(9rem, 20vw, 24rem);
  font-weight: 300;
  color: rgba(44, 44, 44, 0.028);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}


/* ══ ORIGEN DEL PAZO ════════════════════════════════════ */

.htl-origen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--obsidian);
  min-height: 80vh;
  position: relative;
}

.htl-origen-img {
  position: relative;
  overflow: hidden;
}

.htl-origen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.18;
  translate: 0 var(--parallax-y, 0px);
  transition: scale 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.75) brightness(0.85);
}

.htl-origen:hover .htl-origen-img img {
  scale: 1.22;
}

.htl-origen-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(26,26,24,0.85) 100%);
}

.htl-origen-content {
  position: relative;
  padding: 7rem 5rem 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.htl-origen-ghost {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 16rem);
  font-weight: 300;
  color: rgba(200, 169, 126, 0.04);
  right: -1rem;
  bottom: -2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.htl-origen-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.htl-origen-label-line {
  width: 2rem;
  height: 1px;
  background: rgba(200, 169, 126, 0.45);
}

.htl-origen-num {
  font-family: var(--sans);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  color: rgba(200, 169, 126, 0.4);
}

.htl-origen-period {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.3);
}

.htl-origen-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 2rem;
  letter-spacing: -0.025em;
}

.htl-origen-title em {
  font-style: italic;
  color: var(--gold);
}

.htl-origen-divider {
  width: 2.5rem;
  height: 1px;
  background: rgba(200, 169, 126, 0.3);
  margin-bottom: 2rem;
}

.htl-origen-text {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.9;
  color: rgba(249, 245, 238, 0.5);
  margin: 0;
}

.htl-origen-text + .htl-origen-text {
  margin-top: 1.2rem;
}

.htl-origen-sensation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 169, 126, 0.1);
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.22);
}

.htl-sensation-dot {
  color: rgba(200, 169, 126, 0.35);
}


/* ══ HABITAR EL LUGAR ═══════════════════════════════════ */

.htl-habitar {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.htl-habitar-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.htl-habitar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.8);
}

.htl-habitar-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(26,26,24,0.92) 0%,
      rgba(26,26,24,0.4) 40%,
      rgba(26,26,24,0.1) 70%,
      transparent 100%
    ),
    linear-gradient(to right, rgba(26,26,24,0.3) 0%, transparent 60%);
  z-index: 1;
}

.htl-habitar-content {
  position: relative;
  z-index: 2;
  padding: 0 4.5rem 5.5rem;
  max-width: 760px;
  color: var(--ivory);
}

.htl-habitar-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.htl-habitar-label-line {
  width: 2rem;
  height: 1px;
  background: rgba(200, 169, 126, 0.5);
}

.htl-habitar-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.7);
}

.htl-habitar-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 1.15;
  margin: 0 0 1.8rem;
  letter-spacing: -0.02em;
}

.htl-habitar-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.htl-habitar-text {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.88;
  color: rgba(249, 245, 238, 0.48);
  margin: 0 0 2.5rem;
  max-width: 600px;
}

.htl-habitar-sensation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.22);
}


/* ══ FINCA Y NATURALEZA ═════════════════════════════════ */

.htl-finca {
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--ivory);
  min-height: 80vh;
}

.htl-finca-content {
  padding: 7rem 4rem 7rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.htl-finca-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.htl-finca-label-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.htl-finca-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-finca-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 1.15;
  color: var(--slate);
  margin: 0 0 2.5rem;
  letter-spacing: -0.025em;
}

.htl-finca-title em {
  display: block;
  font-style: italic;
  color: var(--green);
}

.htl-finca-text {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.6);
  margin: 0;
}

.htl-finca-text + .htl-finca-text {
  margin-top: 1.2rem;
}

.htl-finca-items {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.htl-finca-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.htl-finca-item:first-child {
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.htl-finca-item-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
  opacity: 0.6;
}

.htl-finca-item strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.htl-finca-item p {
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.52);
  margin: 0;
}

.htl-finca-img {
  position: relative;
  overflow: hidden;
}

.htl-finca-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.18;
  translate: 0 var(--parallax-y, 0px);
  filter: saturate(0.82);
  transition: scale 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.htl-finca:hover .htl-finca-img img {
  scale: 1.22;
}

.htl-finca-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 70%, rgba(249,245,238,0.15) 100%);
  pointer-events: none;
}


/* ══ FILOSOFÍA DEL PAZO ═════════════════════════════════ */

.htl-filosofia {
  background: var(--obsidian);
  padding: 8rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.htl-filosofia-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.026;
  pointer-events: none;
  z-index: 0;
}

.htl-filosofia-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 4rem;
  margin-bottom: 6rem;
}

.htl-filosofia-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.htl-filosofia-label-line {
  height: 1px;
  width: 3rem;
  background: rgba(200, 169, 126, 0.3);
}

.htl-filosofia-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.55);
}

.htl-filosofia-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.12;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.02em;
}

.htl-filosofia-title em {
  font-style: italic;
  color: var(--gold);
}

.htl-filosofia-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4.5rem;
  gap: 0;
}

.htl-filosofia-pillar-sep {
  width: 1px;
  background: rgba(200, 169, 126, 0.1);
  align-self: stretch;
  margin: 0 4rem;
}

.htl-filosofia-pillar {
  padding: 0;
}

.htl-filosofia-pillar-num {
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(200, 169, 126, 0.3);
  margin-bottom: 1.5rem;
}

.htl-filosofia-pillar-rule {
  width: 2rem;
  height: 1px;
  background: rgba(200, 169, 126, 0.25);
  margin-bottom: 1.5rem;
}

.htl-filosofia-pillar-word {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ivory);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.htl-filosofia-pillar-text {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.88;
  color: rgba(249, 245, 238, 0.38);
  margin: 0;
}

.htl-filosofia-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: rgba(249, 245, 238, 0.55);
  text-align: center;
  margin: 7rem auto 0;
  max-width: 860px;
  padding: 4.5rem 4rem;
  border: none;
  border-top: 1px solid rgba(200, 169, 126, 0.1);
  letter-spacing: -0.02em;
}

.htl-filosofia-quote em {
  display: block;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.5rem;
}


/* ══ ARQUITECTURA Y MATERIALES ══════════════════════════ */

.htl-arch {
  background: var(--ivory);
  padding: 8rem 0 0;
  overflow: hidden;
}

.htl-arch-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4.5rem;
  margin-bottom: 5rem;
}

.htl-arch-header-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.htl-arch-label-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.htl-arch-header-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-arch-header-cols {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem;
  align-items: start;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  padding-top: 3.5rem;
}

.htl-arch-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: var(--slate);
  margin: 0;
  letter-spacing: -0.025em;
}

.htl-arch-title em {
  display: block;
  font-style: italic;
  color: var(--terracotta);
}

.htl-arch-intro-text {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.58);
  margin: 0;
}

.htl-arch-intro-text + .htl-arch-intro-text {
  margin-top: 1.2rem;
}

.htl-arch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  margin-top: 5rem;
}

.htl-arch-mat {
  border-right: 1px solid rgba(44, 44, 44, 0.08);
  overflow: hidden;
}

.htl-arch-mat:last-child {
  border-right: none;
}

.htl-arch-mat-img {
  height: 260px;
  overflow: hidden;
}

.htl-arch-mat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.9);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
}

.htl-arch-mat:hover .htl-arch-mat-img img {
  transform: scale(1.06);
  filter: saturate(0.9) brightness(0.95);
}

.htl-arch-mat-body {
  padding: 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.06);
}

.htl-arch-mat-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  color: rgba(200, 169, 126, 0.55);
  margin-bottom: 0.75rem;
}

.htl-arch-mat-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--slate);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.htl-arch-mat-desc {
  font-family: var(--sans);
  font-size: 0.79rem;
  line-height: 1.82;
  color: rgba(44, 44, 44, 0.52);
  margin: 0;
}


/* ══ GALICIA Y EL ENTORNO ═══════════════════════════════ */

.htl-galicia {
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--obsidian);
  min-height: 80vh;
}

.htl-galicia-img {
  position: relative;
  overflow: hidden;
}

.htl-galicia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) brightness(0.8);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.htl-galicia:hover .htl-galicia-img img {
  transform: scale(1.04);
}

.htl-galicia-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(26,26,24,0.7) 0%, transparent 60%);
}

.htl-galicia-content {
  padding: 7rem 5rem 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
}

.htl-galicia-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.htl-galicia-label-line {
  width: 2rem;
  height: 1px;
  background: rgba(200, 169, 126, 0.45);
}

.htl-galicia-label span {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.6);
}

.htl-galicia-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 2rem;
  letter-spacing: -0.025em;
}

.htl-galicia-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.htl-galicia-text {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.9;
  color: rgba(249, 245, 238, 0.45);
  margin: 0;
}

.htl-galicia-text + .htl-galicia-text {
  margin-top: 1.2rem;
}

.htl-galicia-prox {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.htl-galicia-prox-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(200, 169, 126, 0.08);
}

.htl-galicia-prox-sep {
  display: none;
}

.htl-galicia-prox-dist {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.htl-galicia-prox-name {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.35);
}

.htl-galicia-coords {
  margin-top: 2.5rem;
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: rgba(249, 245, 238, 0.18);
  text-transform: uppercase;
}


/* ══ RITMO DEL DÍA ══════════════════════════════════════ */

.htl-ritmo {
  background: var(--ivory);
}

.htl-ritmo-header {
  text-align: center;
  padding: 7rem 4rem 5rem;
}

.htl-ritmo-header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.htl-ritmo-label-line {
  height: 1px;
  width: 3rem;
  background: rgba(44, 44, 44, 0.12);
}

.htl-ritmo-header-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.35);
}

.htl-ritmo-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.15;
  color: var(--slate);
  margin: 0;
  letter-spacing: -0.025em;
}

.htl-ritmo-title em {
  display: block;
  font-style: italic;
  color: var(--terracotta);
}

.htl-ritmo-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 72vh;
  min-height: 520px;
}

.htl-ritmo-panel {
  position: relative;
  overflow: hidden;
}

.htl-ritmo-panel-bg {
  position: absolute;
  inset: 0;
}

.htl-ritmo-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65) brightness(0.75);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
}

.htl-ritmo-panel:hover .htl-ritmo-panel-bg img {
  transform: scale(1.06);
  filter: saturate(0.8) brightness(0.85);
}

.htl-ritmo-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26,26,24,0.9) 0%,
    rgba(26,26,24,0.3) 50%,
    rgba(26,26,24,0.1) 100%
  );
  transition: background 0.5s;
}

.htl-ritmo-panel:hover .htl-ritmo-panel-overlay {
  background: linear-gradient(to top,
    rgba(26,26,24,0.95) 0%,
    rgba(26,26,24,0.5) 50%,
    rgba(26,26,24,0.2) 100%
  );
}

.htl-ritmo-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  color: var(--ivory);
  z-index: 1;
}

.htl-ritmo-panel-time {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.htl-ritmo-panel-rule {
  width: 1.8rem;
  height: 1px;
  background: rgba(200, 169, 126, 0.4);
  margin-bottom: 1rem;
}

.htl-ritmo-panel-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--ivory);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.htl-ritmo-panel-mood {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(200, 169, 126, 0.7);
  margin: 0 0 1.2rem;
  line-height: 1.3;
}

.htl-ritmo-panel-text {
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.82;
  color: rgba(249, 245, 238, 0.42);
  margin: 0;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}

.htl-ritmo-panel:hover .htl-ritmo-panel-text {
  opacity: 1;
  transform: translateY(0);
}


/* ══ CONEXIÓN ═══════════════════════════════════════════ */

.htl-conexion {
  background: var(--obsidian);
}

.htl-conexion-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4.5rem 4rem 3rem;
}

.htl-conexion-label-line {
  height: 1px;
  flex: 1;
  max-width: 5rem;
  background: rgba(200, 169, 126, 0.15);
}

.htl-conexion-label span {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.4);
}

.htl-conexion-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.htl-conexion-panel {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.htl-conexion-panel + .htl-conexion-panel {
  border-left: 1px solid rgba(200, 169, 126, 0.08);
}

.htl-conexion-panel-bg {
  position: absolute;
  inset: 0;
}

.htl-conexion-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.6) brightness(0.65);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
}

.htl-conexion-panel:hover .htl-conexion-panel-bg img {
  transform: scale(1.05);
  filter: saturate(0.75) brightness(0.75);
}

.htl-conexion-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26,26,24,0.9) 0%,
    rgba(26,26,24,0.35) 60%,
    transparent 100%
  );
}

.htl-conexion-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem;
  color: var(--ivory);
  z-index: 1;
}

.htl-conexion-panel-num {
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(200, 169, 126, 0.35);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.htl-conexion-panel-label {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.6);
  margin-bottom: 1.5rem;
}

.htl-conexion-panel-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ivory);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.htl-conexion-panel-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.htl-conexion-panel-text {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.82;
  color: rgba(249, 245, 238, 0.38);
  margin: 0 0 2rem;
  max-width: 400px;
}

.htl-conexion-panel-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.4);
  transition: color 0.3s;
}

.htl-conexion-panel:hover .htl-conexion-panel-link {
  color: var(--gold);
}

.htl-conexion-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
  letter-spacing: 0;
}

.htl-conexion-panel:hover .htl-conexion-arrow {
  transform: translateX(5px);
}


/* ══ EN LOS MEDIOS / PRENSA ═════════════════════════════ */

.htl-prensa {
  background: var(--ivory);
  padding: 8rem 0;
  overflow: hidden;
}

.htl-prensa-header {
  max-width: 760px;
  margin: 0 auto 5rem;
  padding: 0 4.5rem;
  text-align: center;
}

.htl-prensa-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.htl-prensa-label-line {
  height: 1px;
  width: 3rem;
  background: rgba(44, 44, 44, 0.12);
}

.htl-prensa-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-prensa-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.15;
  color: var(--slate);
  margin: 0 0 1.8rem;
  letter-spacing: -0.025em;
}

.htl-prensa-title em {
  font-style: italic;
  color: var(--terracotta);
}

.htl-prensa-sub {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.55);
  margin: 0;
}

.htl-prensa-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4.5rem;
  scroll-padding-right: 4.5rem;
  padding: 0.5rem 4.5rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.htl-prensa-track::-webkit-scrollbar {
  display: none;
}

.htl-prensa-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(44, 44, 44, 0.08);
  padding: 2.2rem;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}

.htl-prensa-card:hover {
  border-color: rgba(200, 169, 126, 0.5);
  transform: translateY(-4px);
}

.htl-prensa-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.htl-prensa-source {
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-prensa-date {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.32);
  white-space: nowrap;
}

.htl-prensa-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.32;
  color: var(--slate);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.htl-prensa-card-text {
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.78;
  color: rgba(44, 44, 44, 0.52);
  margin: 0 0 1.8rem;
  flex-grow: 1;
}

.htl-prensa-card-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.4);
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44, 44, 44, 0.06);
  transition: color 0.3s;
}

.htl-prensa-card:hover .htl-prensa-card-link {
  color: var(--gold);
}

.htl-prensa-arrow {
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: transform 0.3s;
}

.htl-prensa-card:hover .htl-prensa-arrow {
  transform: translateX(5px);
}

.htl-prensa-track:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 2px;
}

.htl-prensa-controls {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 4.5rem;
  margin-top: 0.5rem;
}

.htl-prensa-scrollbar {
  position: relative;
  flex: 1 1 auto;
  height: 14px;
  cursor: pointer;
}

.htl-prensa-scrollbar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(44, 44, 44, 0.1);
  transform: translateY(-50%);
}

.htl-prensa-scrollbar-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  min-width: 36px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: background 0.25s;
}

.htl-prensa-scrollbar:hover .htl-prensa-scrollbar-thumb,
.htl-prensa-scrollbar-thumb.is-dragging {
  background: var(--terracotta);
}

.htl-prensa-nav {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.htl-prensa-nav-btn {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 44, 0.12);
  background: none;
  color: var(--slate);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.htl-prensa-nav-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.htl-prensa-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}


/* ══ RECONOCIMIENTOS ════════════════════════════════════ */

.htl-galardones {
  background: var(--ivory);
  padding: 8rem 4.5rem;
  border-top: 1px solid rgba(44, 44, 44, 0.06);
}

.htl-galardones-header {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}

.htl-galardones-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.htl-galardones-label-line {
  height: 1px;
  width: 3rem;
  background: rgba(44, 44, 44, 0.12);
}

.htl-galardones-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.htl-galardones-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.15;
  color: var(--slate);
  margin: 0 0 1.8rem;
  letter-spacing: -0.025em;
}

.htl-galardones-title em {
  font-style: italic;
  color: var(--terracotta);
}

.htl-galardones-sub {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.55);
  margin: 0;
}

.htl-galardones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.htl-galardones-item {
  text-align: center;
  padding: 0 1rem;
}

.htl-galardones-icon {
  width: 2.6rem;
  height: auto;
  display: block;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.htl-galardones-item-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--slate);
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.htl-galardones-item-text {
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.78;
  color: rgba(44, 44, 44, 0.52);
  margin: 0;
}


/* ══ CTA FINAL ══════════════════════════════════════════ */

.htl-cta {
  background: var(--obsidian);
  padding: 10rem 4rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.htl-cta-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.htl-cta-ghost {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(9rem, 22vw, 26rem);
  color: rgba(200, 169, 126, 0.035);
  letter-spacing: -0.06em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.htl-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.htl-cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.htl-cta-label-line {
  height: 1px;
  width: 3rem;
  background: rgba(200, 169, 126, 0.3);
}

.htl-cta-label span {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.5);
}

.htl-cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 2rem;
  letter-spacing: -0.025em;
}

.htl-cta-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.htl-cta-text {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.88;
  color: rgba(249, 245, 238, 0.38);
  margin: 0 0 3.5rem;
}

.htl-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.htl-cta-coords {
  margin-top: 4rem;
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: rgba(249, 245, 238, 0.14);
  text-transform: uppercase;
}


/* ══ RESPONSIVE ═════════════════════════════════════════ */

@media (max-width: 1100px) {
  .htl-filosofia-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .htl-filosofia-pillar-sep {
    display: none;
  }
  .htl-filosofia-pillar {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.08);
  }
  .htl-filosofia-pillar:last-child {
    border-bottom: none;
  }

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

  .htl-arch-mat {
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  }

  .htl-arch-mat:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .htl-hero-side-left,
  .htl-hero-side-right {
    display: none;
  }

  .htl-intro-cols {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

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

  .htl-intro-dato {
    border-right: none;
    border-bottom: 1px solid rgba(44, 44, 44, 0.07);
    padding: 1.5rem;
  }

  .htl-intro-dato:nth-child(odd) {
    border-right: 1px solid rgba(44, 44, 44, 0.07);
  }

  .htl-intro-dato:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .htl-origen {
    grid-template-columns: 1fr;
  }

  .htl-origen-img {
    height: 55vw;
    min-height: 280px;
  }

  .htl-origen-content {
    padding: 4rem 2.5rem;
  }

  .htl-habitar-content {
    padding: 0 2.5rem 4rem;
  }

  .htl-finca {
    grid-template-columns: 1fr;
  }

  .htl-finca-content {
    padding: 5rem 2.5rem;
  }

  .htl-finca-img {
    height: 55vw;
    min-height: 300px;
  }

  .htl-filosofia {
    padding: 5rem 0;
  }

  .htl-filosofia-header {
    margin-bottom: 3rem;
  }

  .htl-filosofia-pillars {
    padding: 0 2.5rem;
  }

  .htl-filosofia-quote {
    margin: 3rem auto 0;
    padding: 3rem 4rem;
  }

  .htl-arch-grid {
    grid-template-columns: 1fr;
  }

  .htl-arch-mat {
    border-right: none;
  }

  .htl-arch-mat-img {
    height: 220px;
  }

  .htl-galicia {
    grid-template-columns: 1fr;
  }

  .htl-galicia-img {
    height: 55vw;
    min-height: 280px;
  }

  .htl-galicia-content {
    padding: 4rem 2.5rem;
  }

  .htl-ritmo-panels {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .htl-ritmo-panel {
    height: auto;
    min-height: max(72vw, 420px);
  }

  .htl-ritmo-panel-text {
    opacity: 1;
    transform: none;
  }

  .htl-conexion-panels {
    grid-template-columns: 1fr;
  }

  .htl-conexion-panel {
    height: auto;
    min-height: max(65vw, 460px);
  }

  .htl-conexion-panel + .htl-conexion-panel {
    border-left: none;
    border-top: 1px solid rgba(200, 169, 126, 0.08);
  }

  .htl-intro-inner,
  .htl-arch-header {
    padding: 0 2.5rem;
  }

  .htl-ritmo-header {
    padding: 5rem 2.5rem 3.5rem;
  }

  .htl-prensa {
    padding: 5rem 0;
  }

  .htl-prensa-header {
    padding: 0 2.5rem;
  }

  .htl-prensa-track {
    scroll-padding-left: 2.5rem;
    scroll-padding-right: 2.5rem;
    padding: 0.5rem 2.5rem 1rem;
  }

  .htl-prensa-card {
    flex: 0 0 280px;
  }

  .htl-prensa-controls {
    padding: 0 2.5rem;
  }

  .htl-galardones {
    padding: 6rem 2.5rem;
  }

  .htl-galardones-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 380px;
  }

  .htl-cta {
    padding: 7rem 2.5rem 6rem;
  }
}

@media (max-width: 600px) {
  .htl-arch-header-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .htl-galicia-prox {
    gap: 0;
  }

  .htl-conexion-label {
    padding: 3rem 2.5rem 2rem;
  }

  .htl-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .htl-hero-line1,
  .htl-hero-line2 { animation: none !important; opacity: 1 !important; transform: none !important; }
  .htl-origen-img img,
  .htl-finca-img img { scale: 1; translate: none; transition: none; }
  .htl-origen:hover .htl-origen-img img,
  .htl-finca:hover .htl-finca-img img { scale: 1; }
}
