/* ================================================================
   MONASTERIO DE LA LUZ · style.css
   Sistema de diseño unificado para todas las páginas
   Paleta: Piedra oscura · Oro envejecido · Pergamino
   Fuentes: Cormorant Garamond (display) + Jost (body)
   ================================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --c-stone: #16120e;
  --c-stone-2: #2a231a;
  --c-stone-3: #3e3326;
  --c-gold: #b8953a;
  --c-gold-lt: #d4b062;
  --c-gold-dim: rgba(184, 149, 58, .18);
  --c-parch: #f6f1e8;
  --c-parch-2: #ede6d5;
  --c-white: #faf8f3;
  --c-muted: #7a6f60;
  --c-border: #ddd6c5;
  --c-border-dk: #2e2720;

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Jost', system-ui, sans-serif;

  --sp-xs: .5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur-f: 180ms;
  --dur-m: 380ms;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow: 0 2px 24px rgba(22, 18, 14, .09);
  --shadow-h: 0 8px 44px rgba(22, 18, 14, .18);

  --nav-h: 70px;
}

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

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

body {
  font-family: var(--ff-b);
  font-weight: 300;
  color: var(--c-stone);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: var(--r-sm)
}

/* ---- TYPE ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-d);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.01em
}

p {
  line-height: 1.8
}

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

.section {
  padding: var(--sp-xl) 0
}

.section--alt {
  background: var(--c-parch)
}

.section--dark {
  background: var(--c-stone);
  color: var(--c-white)
}

.sec-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-lg)
}

.sec-over {
  font-family: var(--ff-b);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .75rem;
  display: block
}

.sec-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: .9rem;
  color: #000;
}

.sec-title.reservation {
  color: white;
}

.sec-desc {
  color: var(--c-muted);
  font-size: .96rem
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.8rem;
  font-family: var(--ff-b);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--dur-f) var(--ease);
  white-space: nowrap
}

.btn-primary {
  background: var(--c-gold);
  color: #fff
}

.btn-primary:hover {
  background: var(--c-gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 149, 58, .4)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .8)
}

.btn-outline {
  background: transparent;
  color: var(--c-stone);
  border: 1px solid var(--c-border)
}

.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold)
}

.btn-gold-outline {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(184, 149, 58, .5)
}

.btn-gold-outline:hover {
  background: var(--c-gold-dim);
  border-color: var(--c-gold)
}

/* ---- NAV (compartido) ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease)
}

.site-header.scrolled {
  background: rgba(22, 18, 14, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07)
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h)
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: opacity var(--dur-f)
}

.nav-logo:hover {
  opacity: .8
}

.logo-l1 {
  font-family: var(--ff-d);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .03em
}

.logo-l2 {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--c-gold)
}

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

.nav-a {
  font-size: .73rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  padding: .45rem .85rem;
  border-radius: var(--r-sm);
  transition: color var(--dur-f), background var(--dur-f)
}

.nav-a:hover,
.nav-a.active {
  color: #fff;
  background: rgba(255, 255, 255, .09)
}

.nav-a.nav-cta {
  color: var(--c-gold);
  border: 1px solid rgba(184, 149, 58, .4)
}

.nav-a.nav-cta:hover {
  background: var(--c-gold-dim);
  border-color: var(--c-gold)
}

.nav-a.nav-active {
  color: var(--c-gold-lt)
}

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

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all var(--dur-f) var(--ease);
  transform-origin: center
}

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

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

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

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--c-stone);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(184, 149, 58, .12) 0%, transparent 65%)
}

.page-hero-over {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .8rem
}

.page-hero-title {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff;
  font-weight: 300
}

.page-hero-sub {
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  margin-top: .75rem;
  font-style: italic;
  font-family: var(--ff-d)
}

.page-hero-line {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 1.5rem auto 0;
  opacity: .6
}

/* ---- FOOTER (compartido) ---- */
.site-footer {
  background: var(--c-stone);
  border-top: 1px solid var(--c-border-dk)
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start
}

.ft-brand-name {
  font-family: var(--ff-d);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: .4rem
}

.ft-brand-sub {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

.ft-brand-addr {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  margin-top: .4rem;
  line-height: 1.6
}

.ft-col-title {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.ft-links a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--dur-f)
}

.ft-links a:hover {
  color: var(--c-gold-lt)
}

.ft-social {
  display: flex;
  gap: .6rem;
  margin-top: .25rem
}

.ft-soc-a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border-dk);
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, .45);
  transition: all var(--dur-f)
}

.ft-soc-a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-dim)
}

.footer-bottom {
  border-top: 1px solid var(--c-border-dk);
  padding: 1.4rem 1.5rem;
  text-align: center;
  font-size: .7rem;
  color: rgba(255, 255, 255, .22);
  letter-spacing: .04em
}

/* ---- BACK TO TOP ---- */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-stone-2);
  color: var(--c-gold);
  border: 1px solid var(--c-border-dk);
  border-radius: var(--r-sm);
  transition: all var(--dur-f);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.btt:hover {
  transform: translateY(-2px);
  background: var(--c-stone-3)
}

/* ---- REVEAL ON SCROLL ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ================================================================
   HOME — index.html
   ================================================================ */

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-stone)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0c0a07 0%, #1e1a12 45%, #251e15 70%, #16120e 100%)
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .55;
  mix-blend-mode: overlay
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 55%, rgba(184, 149, 58, .07) 0%, transparent 60%)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 10, 7, .15) 0%, rgba(12, 10, 7, .55) 100%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 1.5rem 6rem;
  max-width: 820px;
  animation: fadeUp .8s var(--ease) both
}

.hero-over {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s var(--ease) .1s both
}

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.04;
  margin-bottom: .9rem;
  animation: fadeUp .8s var(--ease) .2s both
}

.hero-title em {
  font-style: italic;
  color: var(--c-gold-lt)
}

.hero-sub {
  font-family: var(--ff-d);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2rem;
  animation: fadeUp .8s var(--ease) .3s both
}

.hero-hours {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s var(--ease) .4s both
}

.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.2rem;
  border: 1px solid rgba(184, 149, 58, .3);
  border-radius: 999px;
  font-size: .76rem;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .65);
  background: rgba(184, 149, 58, .07)
}

.hours-pill svg {
  color: var(--c-gold);
  flex-shrink: 0
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .5s both
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2
}

.scroll-bar {
  display: block;
  width: 1px;
  height: 58px;
  background: linear-gradient(to bottom, transparent, rgba(184, 149, 58, .6));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .4;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(.7)
  }
}

/* Franja de datos */
.data-strip {
  background: var(--c-stone);
  border-bottom: 1px solid var(--c-border-dk);
  padding: 1.1rem 0
}

.data-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap
}

.ds-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6)
}

.ds-item svg {
  color: var(--c-gold);
  flex-shrink: 0
}

.ds-item a:hover {
  color: var(--c-gold-lt)
}

.ds-sep {
  width: 1px;
  height: 18px;
  background: var(--c-border-dk)
}

/* Por qué visitar */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem
}

.why-card {
  padding: 2rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  transition: box-shadow var(--dur-m), transform var(--dur-m)
}

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

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--c-gold)
}

.why-card h3 {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  margin-bottom: .6rem
}

.why-card p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.8
}

/* Video section */
.video-section {
  background: var(--c-stone);
  padding: var(--sp-xl) 0
}

.video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--c-border-dk);
  background: var(--c-stone-2)
}

.video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #1a1510 0%, #2a221a 100%);
  cursor: pointer;
  transition: background var(--dur-m)
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #1e1812 0%, #302719 100%)
}

.video-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(184, 149, 58, .15);
  border: 1.5px solid rgba(184, 149, 58, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  transition: all var(--dur-f)
}

.video-placeholder:hover .video-play {
  background: rgba(184, 149, 58, .25);
  transform: scale(1.05)
}

.video-caption {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, .45)
}

/* Tarifas preview */
.rates-preview {
  background: var(--c-parch)
}

.rates-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto var(--sp-md)
}

.rate-preview-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow var(--dur-m), transform var(--dur-m)
}

.rate-preview-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px)
}

.rate-preview-card.featured {
  border-color: var(--c-gold)
}

.rpc-price {
  font-family: var(--ff-d);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--c-stone);
  line-height: 1
}

.rpc-price sup {
  font-size: 1.2rem;
  vertical-align: super
}

.rpc-unit {
  font-size: .75rem;
  color: var(--c-muted);
  margin-top: .2rem
}

.rpc-name {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: .9rem 0 .5rem;
  color: var(--c-stone-3)
}

.rpc-desc {
  font-size: .82rem;
  color: var(--c-muted)
}

.rates-cta {
  text-align: center
}

/* ================================================================
   LA ABADÍA — abadia.html
   ================================================================ */
.abbey-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: var(--sp-xl)
}

.abbey-intro-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem
}

.abbey-intro-text p {
  font-size: .93rem;
  color: var(--c-muted);
  margin-bottom: 1rem;
  line-height: 1.9
}

.abbey-intro-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-stone-2);
  position: relative
}

.abbey-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 149, 58, .08) 0%, transparent 60%)
}

.abbey-space {
  margin-bottom: var(--sp-xl)
}

.abbey-space:last-child {
  margin-bottom: 0
}

.abbey-space-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-border)
}

.abbey-space-num {
  font-family: var(--ff-d);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184, 149, 58, .18);
  line-height: 1;
  flex-shrink: 0
}

.abbey-space-header-text .tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .4rem;
  display: block
}

.abbey-space-header-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem)
}

.abbey-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start
}

.abbey-content-grid.reverse {
  direction: rtl
}

.abbey-content-grid.reverse>* {
  direction: ltr
}

.abbey-text-col p {
  font-size: .93rem;
  color: var(--c-muted);
  line-height: 1.9;
  margin-bottom: 1rem
}

.abbey-text-col p:last-child {
  margin-bottom: 0
}

.abbey-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.abbey-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-stone-2);
  position: relative;
  transition: transform var(--dur-m)
}

.abbey-photo:hover {
  transform: scale(1.02)
}

.abbey-photo-main {
  grid-column: 1/-1;
  aspect-ratio: 16/7
}

.abbey-photo-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-stone) 0%, var(--c-stone-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.abbey-photo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(184, 149, 58, .1) 0%, transparent 70%)
}

.abbey-photo-label {
  font-family: var(--ff-d);
  font-style: italic;
  color: rgba(255, 255, 255, .35);
  font-size: .9rem;
  position: relative;
  z-index: 1
}

.abbey-divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
  margin: var(--sp-xl) 0
}

/* ================================================================
   TARIFAS — tarifas.html
   ================================================================ */
.rates-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto var(--sp-lg);
  width: fit-content;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-white)
}

.rtoggle-btn {
  padding: .6rem 1.8rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: all var(--dur-f)
}

.rtoggle-btn.active {
  background: var(--c-stone);
  color: #fff
}

.rtoggle-btn:hover:not(.active) {
  background: var(--c-parch-2);
  color: var(--c-stone)
}

.rates-group {
  display: none
}

.rates-group.active {
  display: block
}

.rates-table-section {
  margin-bottom: 3rem
}

.rates-table-title {
  font-family: var(--ff-b);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.rates-table-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border)
}

.rates-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem
}

.rate-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: box-shadow var(--dur-m), transform var(--dur-m)
}

.rate-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-3px)
}

.rate-card.featured {
  border-color: var(--c-gold);
  position: relative
}

.rate-card.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--c-gold);
  color: #fff;
  padding: .2rem .7rem;
  border-radius: 999px
}

.rate-card.reduced {
  border-color: var(--c-gold);
  position: relative
}

.rate-card.reduced::before {
  content: 'Reducida';
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--c-gold);
  color: #fff;
  padding: .2rem .7rem;
  border-radius: 999px
}

.rate-price {
  margin-bottom: 1rem
}

.rate-price-num {
  font-family: var(--ff-d);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--c-stone);
  line-height: 1
}

.rate-price-num sup {
  font-size: 1.4rem;
  vertical-align: super
}

.rate-price-unit {
  font-size: .76rem;
  color: var(--c-muted);
  display: block;
  margin-top: .2rem
}

.rate-name {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-stone-3);
  margin-bottom: 1rem
}

.rate-includes {
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem
}

.rate-includes li {
  font-size: .84rem;
  color: var(--c-muted);
  padding-left: .9rem;
  position: relative
}

.rate-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: .7rem
}

.rate-note {
  font-size: .74rem;
  color: var(--c-muted);
  font-style: italic;
  margin-top: .75rem
}

.rates-info-box {
  background: var(--c-parch);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  max-width: 620px
}

.rates-info-box h3 {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  margin-bottom: 1rem
}

.rates-info-box p,
.rates-info-box ul {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: .75rem
}

.rates-info-box ul {
  padding-left: 1.5rem;
  list-style: disc
}

.rates-info-box a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px
}

.rates-info-box .btn {
  margin-top: 1rem
}

.rates-note-bar {
  background: var(--c-parch-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  font-size: .83rem;
  color: var(--c-muted)
}

.rates-note-bar svg {
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px
}

/* ================================================================
   NOTICIAS — noticias.html
   ================================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem
}

.news-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-white);
  transition: box-shadow var(--dur-m), transform var(--dur-m)
}

.news-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-4px)
}

.news-img {
  height: 210px;
  overflow: hidden;
  position: relative
}

.news-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(184, 149, 58, .5);
  position: relative;
  transition: transform var(--dur-m)
}

.news-card:hover .news-img-inner {
  transform: scale(1.04)
}

.news-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(184, 149, 58, .12) 0%, transparent 70%)
}

.n-img-1 {
  background: linear-gradient(135deg, #1a1510 0%, #2e2519 100%)
}

.n-img-2 {
  background: linear-gradient(135deg, #16120e 0%, #241d15 100%)
}

.n-img-3 {
  background: linear-gradient(135deg, #201a12 0%, #2a2218 100%)
}

.news-body {
  padding: 1.5rem
}

.news-tag {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold)
}

.news-title {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: .6rem 0 .7rem;
  color: var(--c-stone)
}

.news-excerpt {
  font-size: .84rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-stone);
  transition: color var(--dur-f), gap var(--dur-f)
}

.news-link:hover {
  color: var(--c-gold);
  gap: .7rem
}

.news-source {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  color: var(--c-muted);
  margin-bottom: 1rem;
  padding: .25rem .7rem;
  background: var(--c-parch);
  border-radius: 999px;
  border: 1px solid var(--c-border)
}

/* ================================================================
   GALERÍA — galeria.html
   ================================================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: var(--sp-lg)
}

.gf-btn {
  padding: .5rem 1.1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-muted);
  transition: all var(--dur-f);
  background: var(--c-white)
}

.gf-btn:hover,
.gf-btn.active {
  background: var(--c-stone);
  color: #fff;
  border-color: var(--c-stone)
}

.gallery-section {
  margin-bottom: var(--sp-lg)
}

.gallery-section:last-child {
  margin-bottom: 0
}

.gallery-section-title {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.gallery-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border)
}

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

.gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--c-stone-2)
}

.gal-item:nth-child(3n+1) {
  grid-column: span 2;
  aspect-ratio: 16/9
}

.gal-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease);
  position: relative
}

.gal-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 18, 14, .7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-m);
  z-index: 1
}

.gal-item:hover .gal-inner {
  transform: scale(1.04)
}

.gal-item:hover .gal-inner::before {
  opacity: 1
}

.gal-symbol {
  font-size: 2rem;
  color: rgba(184, 149, 58, .3);
  position: relative;
  z-index: 0;
  transition: opacity var(--dur-f)
}

.gal-item:hover .gal-symbol {
  opacity: .6
}

.gal-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  opacity: 0;
  transform: scale(.8);
  transition: all var(--dur-f);
  color: #fff;
  background: rgba(184, 149, 58, .7);
  border-radius: var(--r-sm);
  padding: .3rem .5rem;
  font-size: .65rem
}

.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: scale(1)
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 10, 7, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-m)
}

.lightbox.open {
  opacity: 1;
  pointer-events: all
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--r-md);
  object-fit: contain;
  background: var(--c-stone-2)
}

.lightbox-img-placeholder {
  width: min(800px, 80vw);
  height: min(500px, 60vh);
  background: linear-gradient(135deg, #1a1510, #2a221a);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-style: italic;
  color: rgba(255, 255, 255, .3);
  font-size: 1.1rem
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--dur-f);
  font-size: 1.5rem;
  line-height: 1;
  padding: .5rem
}

.lightbox-close:hover {
  color: #fff
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  font-size: 2rem;
  padding: 1rem;
  transition: color var(--dur-f)
}

.lightbox-nav:hover {
  color: var(--c-gold-lt)
}

.lightbox-prev {
  left: 1rem
}

.lightbox-next {
  right: 1rem
}

.lightbox-caption {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-d);
  font-style: italic;
  color: rgba(255, 255, 255, .45);
  font-size: .9rem
}

/* ================================================================
   CONTACTO (en home) — sección
   ================================================================ */
.contact-section {
  background: var(--c-stone)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start
}

.contact-form-side {
  color: #fff
}

.contact-form-side .sec-over {
  color: var(--c-gold)
}

.contact-form-side .sec-title {
  color: #fff
}

.contact-intro {
  font-size: .92rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 2rem;
  line-height: 1.8
}

/* Form */
.cform {
  display: flex;
  flex-direction: column;
  gap: 1.1rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.form-group label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45)
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  font-family: var(--ff-b);
  font-size: .9rem;
  font-weight: 300;
  color: #fff;
  transition: border-color var(--dur-f), background var(--dur-f);
  /* -webkit-appearance: none */
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(184,149,58,.7)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem
}

.form-group select option {
  background: var(--c-stone-2);
  color: #fff
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .25)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184, 149, 58, .5);
  background: rgba(255, 255, 255, .09);
  outline: none
}

.form-group textarea {
  resize: vertical;
  min-height: 100px
}

.form-note {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  font-style: italic
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(184, 149, 58, .12);
  border: 1px solid rgba(184, 149, 58, .3);
  border-radius: var(--r-md);
  color: var(--c-gold-lt);
  font-size: .85rem;
  margin-top: .5rem
}

/* Contact info side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.contact-info-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--c-border-dk);
  border-radius: var(--r-md);
  padding: 2rem
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.contact-datum {
  display: flex;
  gap: 1rem;
  align-items: flex-start
}

.contact-datum svg {
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px
}

.contact-datum strong {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .25rem
}

.contact-datum p,
.contact-datum a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5
}

.contact-datum a:hover {
  color: var(--c-gold-lt)
}

.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--c-border-dk)
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0
}

/* ================================================================
   FAQ (en noticias o home)
   ================================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--c-border)
}

.faq-item:first-child {
  border-top: 1px solid var(--c-border)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.35rem 0;
  font-family: var(--ff-d);
  font-size: 1.08rem;
  color: var(--c-stone);
  text-align: left;
  gap: 1rem;
  transition: color var(--dur-f)
}

.faq-q:hover,
.faq-q[aria-expanded="true"] {
  color: var(--c-gold)
}

.faq-q svg {
  flex-shrink: 0;
  color: var(--c-gold);
  transition: transform var(--dur-f) var(--ease)
}

.faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg)
}

.faq-a {
  padding: 0 0 1.35rem;
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.85
}

.faq-a p {
  margin-bottom: .6rem
}

.faq-a p:last-child {
  margin-bottom: 0
}

.faq-a ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: .6rem
}

.faq-a a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px
}

.faq-a strong {
  color: var(--c-stone-3);
  font-weight: 500
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width:47.99rem) {
  :root {
    --sp-xl: 4rem;
    --sp-lg: 3rem
  }

  /* nav mobile */
  .nav-burger {
    display: flex;
    z-index: 1000;
  }

  .site-header {
    background: rgba(22, 18, 14, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav-list {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(200px, 80vw);
    height: 100vh;
    background: var(--c-stone-2);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform var(--dur-m) var(--ease);
    border-left: 1px solid var(--c-border-dk);
    z-index: 200
  }

  .nav-list.open {
    transform: none
  }

  .nav-a {
    font-size: .88rem;
    padding: .7rem 1rem;
    width: 100%
  }

  /* hero */
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem)
  }

  .hero-btns {
    flex-direction: column;
    align-items: center
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center
  }

  .email-hidden {
    display: none;
  }

  /* grids → 1 col */
  .abbey-intro,
  .abbey-content-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .abbey-content-grid.reverse {
    direction: ltr
  }

  .form-row {
    grid-template-columns: 1fr
  }

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

  .gal-item:nth-child(3n+1) {
    grid-column: span 1;
    aspect-ratio: 4/3
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .contact-map {
    height: 200px
  }
}

@media (min-width:48rem) and (max-width:63.99rem) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

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

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }
}

/* ================================================================
   LANG TOGGLE BUTTON
   ================================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ── Selector de idioma con dropdown ── */
.lang-selector {
  position: relative;
}

.lang-current {
  font-family: var(--ff-b);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--c-gold);
  border: 1px solid rgba(184, 149, 58, .4);
  border-radius: var(--r-sm);
  padding: .3rem .65rem;
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-f);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: .3rem;
  -webkit-tap-highlight-color: transparent;
}

.lang-current::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .6;
  transition: transform var(--dur-f);
}

.lang-selector:hover .lang-current,
.lang-selector:focus-within .lang-current {
  background: var(--c-gold-dim);
  border-color: var(--c-gold);
  color: var(--c-gold-lt);
}

.lang-selector:hover .lang-current::after,
.lang-selector:focus-within .lang-current::after {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + .4rem);
  right: 0;
  list-style: none;
  margin: 0;
  padding: .35rem 0;
  background: #1a1510;
  border: 1px solid rgba(196, 164, 100, .22);
  min-width: 130px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  pointer-events: none;
}

.lang-selector:hover .lang-dropdown,
.lang-selector:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown li {
  margin: 0;
  padding: 0;
}

.lang-opt {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--ff-b);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .55);
  background: transparent;
  border: none;
  padding: .55rem 1rem;
  cursor: pointer;
  transition: color .15s, background .15s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.lang-opt:hover {
  color: var(--c-gold);
  background: rgba(196, 164, 100, .07);
}

.lang-opt[aria-selected="true"] {
  color: var(--c-gold);
}

/* Footer variant — dropdown opens upward */
.lang-selector--footer .lang-current {
  font-size: .62rem;
  color: rgba(255, 255, 255, .45);
  border-color: var(--c-border-dk);
}

.lang-selector--footer:hover .lang-current,
.lang-selector--footer:focus-within .lang-current {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-dim);
}

.lang-selector--footer .lang-dropdown {
  top: auto;
  bottom: calc(100% + .4rem);
}

/* ================================================================
   RATES CTA BLOCK (home preview — sin tarjetas, solo texto + botón)
   ================================================================ */
.rates-cta-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.rates-cta-text {
  font-family: var(--ff-d);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-stone-3);
  letter-spacing: .01em;
}

.rates-cta-text strong {
  color: var(--c-gold);
  font-weight: 600;
}

/* ================================================================
   DATE INPUT styling (matches existing form inputs)
   ================================================================ */
.form-group input[type="date"] {
  color-scheme: dark;
}